Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计异常

token-optimizer令牌优化器

Agent Skill

token-optimizer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

285

周安装

12

GitHub Stars

20

下载量

309
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:token-optimizer(令牌优化器)
来源仓库:https://github.com/georgekhananaev/claude-skills-vault
仓库路径:skills/token-optimizer
安装命令:
npx skills add https://github.com/georgekhananaev/claude-skills-vault --skill token-optimizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/georgekhananaev/claude-skills-vault --skill token-optimizer

简介

token-optimizer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 可结合来源仓库和原始 README 核验具体用法,通过 npx 命令安装。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Token Optimizer

Reduce tokens in prompts, docs, and prose while preserving meaning.

When to Use

  • Prompt >1500 tokens or contains redundant phrasing
  • Docs/markdown need compression for LLM context
  • Writing prose for humans (docs, commits, PRs, error messages)
  • Converting JSON/YAML/XML data for LLM input (TOON)

Quick Routing

Input TypeGo To
User prompt / chat messageSection 1: Prompt Compression
Docs / markdown / READMESection 2: Doc Formatting
Commits / PRs / error messagesSection 3: Prose Clarity
JSON / YAML / XML dataSection 4: TOON Format

Compression Levels

LevelReductionUse When
Light20-30%Keep readability, human-facing prose
Medium40-50%Default for LLM context
Heavy60-70%Max compression, symbols over words

1. Prompt Compression

Process

  1. Identify core intent
  2. Extract essential context only
  3. Remove filler phrases
  4. Apply abbreviations & symbols
  5. Output compressed version w/ token savings %

Remove Phrases

RemoveTransform To
"Please help me with"(delete)
"I need you to"(delete)
"Could you please"(delete)
"I would like to"(delete)
"I think", "Maybe", "Perhaps"(delete)
"This might be a dumb question"(delete)
"For your reference"(delete)
"As I mentioned before"(delete)

Transform Patterns

VerboseCompressed
"I want to create a fn that takes X and returns Y"fn(X) -> Y
"The error message says..."Error:...
"In the file located at..."File:...
"I'm trying to..."Goal:...
"Here is my code..."Code:
"The problem is that..."Issue:...

Example

Before (847 tokens):

Hello! I hope you're doing well. I was wondering if you could help me.
I'm trying to build a React app and I need a custom hook that fetches
user data from /api/users. It returns JSON. I'd like loading, error
states, and caching. I think useEffect and useState but not sure...

After (156 tokens):

Goal: React hook for user data fetching
- Endpoint: /api/users -> JSON user obj
- Handle: loading, error states
- Cache response
Stack: React (useEffect, useState)

2. Doc Formatting

Remove Filler Words

Remove when possible: "basically", "essentially", "actually", "really"

VerboseCompressed
"in order to""to"
"due to the fact that""because"
"at this point in time""now"
"in the event that""if"
"has the ability to""can"
"it is important to note that"(remove)

Compress Lists

Before:

The following features are included:
- User authentication with JWT tokens
- Role-based access control for authorization
- Password hashing using bcrypt algorithm

After:

Features:
- JWT auth
- RBAC authz
- bcrypt passwords

Structured Data Over Prose

Before:

The API accepts three parameters. The first is "userId" which is a
required string. The second is "limit", optional number, defaults to 10.

After:

Params:
- userId: str (req) - user ID
- limit: num (opt, def=10)

Heading Compression

Before: # Comprehensive Guide to User Authentication and Authorization After: # Auth Guide

Table Compression

Shorten column headers, use abbreviations in cells:

ParamTypeReqDefDesc
userIdstrY-user ID
limitnumN10max results

Code Block Compression

Remove comments that restate the code. Collapse trivial logic:

Before:

// Check if email is valid
const isEmailValid = emailRegex.test(email);
// Check if password is at least 8 characters
const isPasswordValid = password.length >= 8;
// Return true if both are valid
return isEmailValid && isPasswordValid;

After:

return emailRegex.test(email) && password.length >= 8;

URL & Path Compression

Replace full home paths: /Users/username/Documents/Projects/MyApp/config/settings.json -> ~/Projects/MyApp/config/settings.json

Error Message Compression

Keep error codes and stack traces exact. Compress surrounding prose: Err: Invalid/expired token. Re-authenticate at /auth/login


3. Prose Clarity (Strunk's Rules)

Apply when writing prose for humans (docs, commits, PRs, errors).

Grammar Essentials

  1. Form possessive singular by adding 's
  2. Use comma after each term in series except last
  3. Don't join independent clauses by comma (use semicolon or period)
  4. Participial phrase at beginning refers to grammatical subject

Composition Essentials

  1. One paragraph per topic
  2. Begin paragraph with topic sentence
  3. Express coordinate ideas in similar form
  4. Keep related words together
  5. Place emphatic words at end of sentence

Limited Context Strategy

When context is tight: write draft, dispatch subagent with draft + these rules, have subagent copyedit and return revision.

Core Principles

Omit needless words:

WordyConcise
the question as to whetherwhether
there is no doubt but thatno doubt
he is a man whohe
the reason why is thatbecause

Use active voice:

PassiveActive
The file was deleted by the userThe user deleted the file
Errors are logged by the systemThe system logs errors

Positive form over negative:

NegativePositive
did not rememberforgot
not importanttrifling
not honestdishonest

Specific over vague:

VagueSpecific
A period of unfavorable weather set inIt rained every day for a week
The data was processedThe server parsed 10,000 records

Technical Writing

# Commit: Bad
Made some changes to fix the bug that was causing issues

# Commit: Good
Fix null pointer in user authentication

# Error: Bad
An error occurred while processing your request

# Error: Good
Database connection failed: timeout after 30s

# Doc: Bad
This function is used for the purpose of validating user input

# Doc: Good
Validates user input

Editing Checklist

  • Unnecessary words (especially "that", "very", "really", "just")
  • Passive voice -> convert to active
  • Negative statements -> make positive
  • Vague language -> make specific
  • Long sentences -> break up or simplify

4. TOON Format (Data Serialization)

TOON replaces JSON/YAML/XML data serialization when sending to LLMs. ~40% fewer tokens.

Convert to TOON: JSON, YAML, XML (data objects/arrays only) Keep as-is: Markdown, plain text, code files, CSV

Precedence note: TOON converts the *data format structure* (braces, quotes, colons). The "Never Compress" rules protect *values* inside data (API keys, URLs, version numbers). Both apply: convert structure to TOON, but preserve exact values.

JSON:

{"users":[{"id":1,"name":"John","role":"admin"},{"id":2,"name":"Jane","role":"user"}]}

TOON:

users[2]{id,name,role}:
  1,John,admin
  2,Jane,user

See: .claude/skills/document-skills/toon/SKILL.md


Never Compress

See references/never_compress.md for full list:

  • Auth tokens, API keys, credentials, secrets
  • Error stack traces (keep full)
  • Code blocks, inline code, regex
  • URLs, UUIDs, version numbers
  • SQL queries, shell commands
  • JSON keys, config values, date formats
  • Legal text, mathematical formulas

Abbreviations

fn=function  ret=return  str=string  num=number
bool=boolean arr=array   obj=object  param=parameter
config=configuration     env=environment
auth=authentication      authz=authorization
db=database  repo=repository  dir=directory
req=required opt=optional def=default
max=maximum  min=minimum  ex=example
impl=implementation      docs=documentation
app=application          info=information

Symbols

-> = returns/produces    & = and
|  = or                  w/ = with
w/o = without            ~ = approximately
=> = therefore           bc = because
Y  = yes                 N  = no
-  = none/null

Output Format

## Compressed

[Content]

---
Original: X tokens | Compressed: Y tokens | Saved: Z%

Scripts

# Compress text
python scripts/compress.py input.md > compressed.md
python scripts/compress.py input.md --stats
python scripts/compress.py --level 2 < input.md

# Count tokens
python scripts/count_tokens.py document.md

# Compress prompt
python scripts/compress_prompt.py "your prompt text"
python scripts/compress_prompt.py --file prompt.txt --level heavy

Integration

Called by: brainstorm (Phase 5 docs), any skill producing documentation Pairs with: document-skills/toon (data serialization)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.73%
按下载量换算107

Claude

29.42%
按下载量换算91

Cursor

19.22%
按下载量换算59

Gemini CLI

10.24%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/georgekhananaev/claude-skills-vault --skill token-optimizer 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills