token-formatterlisted
Install: claude install-skill hackermanishackerman/claude-skills-vault
# Token Formatter Skill
Convert verbose documentation, markdown, and text files into token-efficient formats while preserving essential information.
## When to Use
Invoke this skill when:
- User wants to reduce token count in documentation
- User needs to compress markdown/text for LLM context
- User asks to optimize content for AI consumption
- Commands: `/token-format`, `/compress`, `/toon`
## Token Reduction Rules
### 1. Remove Redundancy
**Before:**
```markdown
## Introduction
In this document, we will explore and discuss the various different ways
that you can implement authentication in your application. We will cover
multiple approaches and methods that are available to developers.
```
**After:**
```markdown
## Auth Implementation
Methods covered:
- JWT tokens
- Session-based
- OAuth2
```
### 2. Use Symbols & Abbreviations
| Verbose | Compressed |
|---------|------------|
| function | fn |
| return | ret |
| string | str |
| number | num |
| boolean | bool |
| array | arr |
| object | obj |
| parameter | param |
| configuration | config |
| environment | env |
| authentication | auth |
| authorization | authz |
| application | app |
| database | db |
| repository | repo |
| directory | dir |
| reference | ref |
| implementation | impl |
| documentation | docs |
| information | info |
| example | ex |
| required | req |
| optional | opt |
| default | def |
| maximum | max |
| minimum | min |
| a