# Token Efficiency

> Compressed communication using symbols and abbreviations. Use when context is limited or brevity is needed.

- Skill: `nickcrew/token-efficiency` (Agent Skill)
- Install (CLI): `npx skillmds add nickcrew/token-efficiency`
- Raw SKILL.md: https://api.skillmd.com/api/skills/nickcrew/token-efficiency/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: nickcrew (https://skillmd.com/u/nickcrew)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/nickcrew/token-efficiency

---


# Token Efficiency

Compressed communication for limited context windows.

## Symbol System

### Logic & Flow
| Symbol | Meaning |
|--------|---------|
| → | leads to, implies |
| ⇒ | transforms to |
| ← | rollback |
| & | and |
| \| | or |
| » | sequence/then |
| ∴ | therefore |
| ∵ | because |

### Status
| Symbol | Meaning |
|--------|---------|
| ✅ | complete/pass |
| ❌ | failed/error |
| ⚠️ | warning |
| 🔄 | in progress |
| ⏳ | pending |

### Domains
| Symbol | Domain |
|--------|--------|
| ⚡ | performance |
| 🔍 | analysis |
| 🛡️ | security |
| 🏗️ | architecture |

## Abbreviations
- `cfg` config
- `impl` implementation
- `deps` dependencies
- `val` validation
- `perf` performance
- `sec` security
- `err` error

## Examples

**Standard:**
> "The authentication system has a security vulnerability in the user validation function"

**Compressed:**
> `auth.js:45 → 🛡️ sec risk in user val()`

**Standard:**
> "Build completed, now running tests, then deploying"

**Compressed:**
> `build ✅ » test 🔄 » deploy ⏳`

## When to Use
- Context >75% full
- Large codebase analysis
- Complex multi-step workflows
- User requests brevity

