Compress prompts for Claude Code and Cursor CLI. Reduces tokens by removing filler words and abbreviating terms. Self-contained, no external dependencies required.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add Lord1Egypt/awesome-skill-forge --skill llmcom --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Llmcom?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/lord1egypt-llmcom)More formats (shields.io, HTML) on the badges page.
---
name: llmcom
description: Compress prompts for Claude Code and Cursor CLI. Reduces tokens by removing filler words and abbreviating terms. Self-contained, no external dependencies required.
---
# LLMCOM Prompt Compression
Self-contained prompt compression tool. No installation required - just read this skill and apply the compression rules.
## Compression Rules
1. **Remove filler words**: the, a, an, is, are, with, of, to, in, on, at, and, for, that, this
2. **Abbreviate terms**:
- refactor -> refac
- review -> rev
- function -> func
- security -> sec
- performance -> perf
- module -> mod
- component -> comp
- authentication -> auth
- implementation -> impl
3. **Output format for Claude Code**: agent[task]|scope|focus|action|context|constraints
## Example
**Input**: "Refactor the authentication module to improve type security"
**Output**: agent[refac]|mod|sec|review|@src|strict
**Stats**: 11 -> 6 tokens (45% reduction)
## How to Use
Apply these rules manually when writing prompts for Claude Code CLI or Cursor agent.
1. Identify task type: refactor, review, fix, test, audit
2. Remove filler words
3. Abbreviate key terms
4. Format as pipe-separated values
## Quick Reference
| Task | Format |
|------|--------|
| Refactor | agent[refac]|scope|focus|review|@path|constraints |
| Security audit | agent[audit]|scope|sec|report|@path|high |
| Bug fix | agent[fix]|scope|error|debug|@path|fallback |
| Test coverage | agent[test]|scope|cov|jest|@path|edge-cases |
## Integration
Use before sending prompts to:
- Claude Code CLI (gent command)
- Cursor agent
- Any LLM API to reduce token costs
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!