Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

token-optimizer令牌优化器

Agent Skill

token-optimizer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,536

周安装

66

GitHub Stars

4

下载量

539
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alexismunoz1/token-optimizer --skill token-optimizer

简介

用于降低 AI 调用成本与优化提示词架构,提供批量 API 与缓存机制的实际应用建议。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 用户及直接调用 Anthropic API 的开发者中使用。
  • 使用时需区分 Claude Code 场景与其他 API 调用方式,选择对应的优化章节进行操作。
  • 安装方式:通过 npx skills add 命令从指定 GitHub 仓库添加,支持跨平台部署。
  • 推荐结合实验数据与当前定价模型制定节省策略,重点关注 prompt caching 等高回报项。

SKILL.md

Token Optimizer

A comprehensive toolkit to reduce token consumption and lower AI costs — for both Claude Code users (file organization, CLAUDE.md, context hygiene) and API developers (prompt caching, Batch API, effort tuning, prompt architecture). Recommendations are backed by real experiment data and current Anthropic pricing.

Which sections apply to you:

  • Using Claude Code? → Sections 1-5 and the Quick Wins Checklist.
  • Calling the Anthropic API directly? → Also read references/api-optimization-guide.md. That's where the biggest savings live (prompt caching = 90% off, Batch API = 50% off, stackable).

Installation

npx skills add amunozdev/token-optimizer

Or manually:

cp -r token-optimizer ~/.claude/skills/

Core Features

1. File Organization Optimization

The single highest-impact optimization. Small, focused files reduce token consumption by 18.2% and noise by 92% on focused tasks (the majority of daily development work).

Core rules:

  • Maximum 150 lines per file — split by responsibility if longer
  • Single responsibility — one concern per file
  • Descriptive names in kebab-case — the filename tells the AI exactly what's inside

Real example: Fixing an email validation bug required reading 814 lines in a monolithic file (49,466 tokens) vs only 67 lines in a modular setup (40,447 tokens) — 18.2% savings, 92% less noise.

For naming conventions, avoid/prefer tables, and project structure templates, see references/file-organization-guide.md

2. CLAUDE.md Optimization

A well-structured CLAUDE.md can reduce token consumption by 50-70%. Most projects have bloated CLAUDE.md files that load unnecessary context on every interaction.

Key principles:

  • Keep it under 500 lines — essentials only
  • Be specific — "PostgreSQL with Prisma" not just "database"
  • Include project structure and commands — save the AI from guessing
  • Use triggers, not full docs — reference skills/files for details, don't inline everything
For a ready-to-use optimized template, see references/claude-md-template.md

3. Context Management

Token waste often comes from accumulated irrelevant context, not from individual operations.

Essential commands:

CommandWhen to UseEffect
/clearSwitching tasks, after major correctionsResets context completely
/compactLong conversation (>50 exchanges)Compresses history, keeps essentials
/contextDiagnosing high token useShows what's consuming tokens

Lazy loading: Don't front-load all information. One project achieved 54% reduction in initial tokens (7,584 → 3,434) by keeping only triggers in CLAUDE.md and loading details on demand.

For advanced strategies, subagent patterns, and MCP management, see references/context-management-guide.md

4. Strategic Model Selection

Choosing the right model per task type is one of the easiest cost savings to implement.

Task TypeModelWhy
80% of daily tasksSonnetBest cost/performance ratio
Complex architectureOpusDeeper reasoning needed
Simple/quick tasksHaikuUp to 18x cheaper than Opus

Default to Sonnet. Escalate to Opus only for genuinely complex problems. Use Haiku for simple tasks, tests, and searches.

5. MCP & Subagent Optimization

MCP Management:

  • Keep maximum 10 active MCPs at a time (max 80 total tools)
  • Disable MCPs not needed for the current task
  • Each unused MCP still costs tokens in tool descriptions

Subagents for verbose tasks: Use the Task tool for operations that generate large output (test runs, builds, searches). The verbose output stays in the subagent's context — only the summary returns to your main conversation.

6. Prompt Architecture (Claude Code and API)

How you write prompts has a direct, measurable impact on tokens — in both directions.

  • Be direct, put the ask first, say it once. Repetition doesn't increase compliance, it just bills.
  • Constrain output explicitly. "Under 50 words", "max 3 bullets", "JSON with keys X, Y, Z, no explanation." Open-ended prompts produce open-ended (expensive) responses.
  • Use XML tags (<instructions>, <context>, <output_format>) to reduce ambiguity.
  • Include only relevant context. Don't paste 500 lines when one function is enough.

7. API-Only Optimizations

If you're calling the Anthropic API directly (SDK, custom agents, production apps), these are the highest-impact levers — most are absent when using Claude Code because the harness handles them for you.

TechniqueSavingsNotes
Prompt caching90% on cached readsCache writes cost 1.25x, reads 0.1x. Pays for itself on 2nd call.
Batch API50% on all tokens<24h latency. Stacks with caching → up to 95% total.
effort: lowLarge reductionSkip deep reasoning for classification/extraction.
budget_tokens capProportional8K-16K is plenty for most tasks. Don't use 100K to format a date.
Prefill assistant turnRemoves preamble{"role": "assistant", "content": "{"} skips "Sure! Here's…".
Token-efficient tools~14% output avgDefault in Claude 4. Add token-efficient-tools-2025-02-19 header for 3.7.
Dynamic tool loadingScales with tool countEvery tool schema ships in every request. Only include what the task needs.
Token counting endpointDebuggingGet exact cost before running inference.

Critical cache gotchas:

  • Images break the cache. Adding or removing an image anywhere in the prompt invalidates it. If your flow sometimes sends images, treat it as a separate request pattern.
  • Anything before the cache breakpoint must be stable. Timestamps, session IDs, or the user message placed before the breakpoint defeat caching entirely — you pay the 1.25x write surcharge every time with zero reads.
  • Concurrency pitfall. Cache entries become available only after the first response starts streaming. Fire-and-forget 10 parallel requests → 9 cache misses. Fire one, wait for stream to start, then fan out.
  • Mind the minimum token threshold per breakpoint (2,048 for Sonnet 4.6; 4,096 for Opus 4.6 and Haiku 4.5). Below it, nothing caches and no error is raised. Verify cache_creation_input_tokens in the response.
Full details, pricing math, TTL tradeoffs, and a setup checklist: references/api-optimization-guide.md

Quick Wins Checklist

Apply these in order of impact:

  1. Run /context first → establishes your baseline before any changes
  2. Split large files (>150 lines) into focused modules → saves 18%+ tokens
  3. Optimize your CLAUDE.md → can reduce consumption 50-70%
  4. Use /clear between tasks → eliminates irrelevant context
  5. Use /compact in long conversations → compresses history
  6. Use subagents for verbose tasks → test output, build logs, and search results stay in subagent context instead of polluting your main conversation
  7. Use the right model → default to Sonnet for daily work, Haiku for simple tasks (18x cheaper than Opus), Opus only for genuinely complex architecture decisions
  8. Limit active MCPs to ≤10 → each unused MCP still costs tokens every turn because its tool descriptions are sent in every request
  9. Track cost with /cost → use it to see spend per session; configure the statusline to display it continuously
  10. API users: enable prompt cachingcache_control on system prompt and tools = 90% off on repeated input; see references/api-optimization-guide.md

Expected Savings

Results from our controlled experiment with an 814-line TypeScript e-commerce app:

OptimizationImpact
Modular files (focused tasks)-18.2% tokens
Noise reduction (lines processed)-92%
Optimized CLAUDE.md-50-70% consumption
Lazy loading context-54% initial tokens
Haiku vs Opus (simple tasks)-94% cost

Key insight: Focused tasks (bug fixes, specific changes — ~80% of daily work) benefit enormously from modular code. Cross-cutting tasks show minimal difference at small scale (+1-5%) but modular wins decisively at 5,000+ lines.

Note on scale: These results are from a controlled experiment with an 814-line codebase. At larger scales (5,000+ lines), the savings from modular architecture are even more significant because monolithic files start hitting context window limits while modular files maintain constant size (35-146 lines each).

For the complete experiment methodology and raw data, see references/metrics-report.md

Diagnostic Workflow

When activated, follow this process:

  1. Measure first: Always start by asking the user to run /context. Without a baseline number, you can't prove any optimization worked. This step is not optional.
  2. Read the user's code: Before recommending anything, look at their actual files and project structure. Scan for files >150 lines, check their CLAUDE.md size, and count active MCPs. Recommendations grounded in their real codebase are far more useful than generic advice.
  3. Identify: Determine the biggest source of waste (large files, bloated CLAUDE.md, accumulated context, too many MCPs)
  4. Recommend: Suggest the highest-impact optimization from the Quick Wins Checklist
  5. Verify: After changes, have the user re-run /context to measure improvement

Important guidelines:

  • Always diagnose first — don't dump all optimizations
  • Measure before and after — every optimization should be verified with /context
  • Focus on the user's specific problem — identify the most impactful change first
  • Be transparent about trade-offs — modular files save 18%+ on focused tasks but show minimal difference on cross-cutting tasks at small scale

Usage Examples

"My Claude Code sessions are getting expensive"

  1. Run /context to see current token consumption breakdown
  2. Audit CLAUDE.md size — if over 500 lines, trim to essentials
  3. Check for files >150 lines — identify candidates for splitting
  4. Count active MCPs — disable unused ones
  5. Review model usage — switch routine tasks to Sonnet/Haiku

"Organize my codebase for AI"

  1. Scan the project for files exceeding 150 lines
  2. Identify generic filenames (utils.ts, helpers.ts, index.ts with logic)
  3. Propose file splits by responsibility with new descriptive names
  4. Suggest a project structure following the organization guide

"My context window keeps filling up"

  1. Run /context to identify what's consuming tokens
  2. Check if CLAUDE.md has inline documentation that should be referenced instead
  3. Recommend /clear between tasks and /compact for long sessions
  4. Suggest moving verbose content to referenced files (lazy loading)

Troubleshooting

ProblemCauseSolution
No improvement after optimizationsNo baseline measurement takenRun /context before AND after each change
Don't know how many tokens I'm usingToken consumption not visible by defaultUse /context to see the full breakdown
/compact doesn't reduce enoughCompresses but keeps essentialsUse /clear if prior context is irrelevant
Cross-cutting tasks slower after splittingMultiple reads needed (1-5% more tokens)Expected and marginal — focused tasks (80% of work) still save 18%+
API: cache seems not to work, writes every callContent before breakpoint changes every request (timestamp, session ID, user msg) OR below minimum tokens OR image added/removedCheck cache_creation_input_tokens — move volatile content after the breakpoint and meet per-model minimums
API: parallel requests all miss cacheCache entry only exists after first response streamsFire first request, wait for stream to start, then fan out the rest
API: thinking tokens making requests expensiveDefault budget_tokens can be tens of thousandsCap budget_tokens at 8K-16K, or set effort: low, or disable thinking for formatting/lookup tasks

Reference Materials

  • references/file-organization-guide.md — Naming conventions, project structure templates, and implementation checklist
  • references/context-management-guide.md — Lazy loading, subagents, MCP management, and model selection strategies
  • references/metrics-report.md — Complete experiment data and methodology with raw numbers
  • references/claude-md-template.md — Ready-to-use optimized CLAUDE.md template
  • references/api-optimization-guide.md — Prompt caching, Batch API, effort/thinking budget, prefill, token-efficient tools, and monitoring for direct API users

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.81%
按下载量换算177

Claude

31.17%
按下载量换算168

Cursor

18.38%
按下载量换算99

Gemini CLI

9.6%
按下载量换算52

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills