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

token-optimization代币优化

Agent Skill

token-optimization 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,455

周安装

182

GitHub Stars

12

下载量

1,427
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/claude-dev-suite/claude-dev-suite --skill token-optimization

简介

用于优化 MCP 服务器与外部工具交互中的 token 使用效率。

  • 适合减少 API 调用次数、压缩请求内容和合并工具输出。
  • 使用时需避免用于运行时性能或代码压缩等非 API 场景。
  • 建议结合具体工具文档调整参数以提升整体响应速度。
  • token-optimization 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Token Optimization Best Practices

Deep Knowledge: Use mcp__documentation__fetch_docs with technology: token-optimization for comprehensive documentation.

Guidelines for minimizing token consumption in MCP server and external tool interactions.

When NOT to Use This Skill

This skill focuses on API/tool call optimization. Do NOT use for:

  • Runtime performance - Use performance skill for speed optimization
  • Code minification - Use build tools (Vite, Webpack, etc.)
  • Database query optimization - Use database-specific skills
  • Algorithm efficiency - Use computer science fundamentals
  • Prompt engineering - This is about tool usage, not prompt design

General Principles

PrincipleDescription
Lazy LoadingLoad information only when strictly necessary
Minimal OutputRequest only needed data, use limit and compact parameters
Progressive DetailStart with overview/summary, drill down only if needed
Cache FirstCheck if information is already in context before external calls

Anti-Patterns

Anti-PatternWhy It's BadToken-Efficient Solution
SELECT *Returns unnecessary columnsSpecify exact columns needed
No LIMIT clauseReturns entire datasetAlways add LIMIT (e.g., 100)
Full schema requestsReturns massive specsUse compact=true or format="summary"
Recursive documentation fetchFetches entire doc treeUse search_docs with specific query
Fetching full logsReturns thousands of linesUse tail_logs or find_errors with limit
Copy-paste documentationDuplicates contentSummarize and reference, don't quote verbatim
No paginationReturns all results at onceUse offset/limit for large datasets
Full API schema explorationMulti-MB specificationsGet endpoint list first, details on-demand

Quick Troubleshooting

IssueCheckSolution
Large MCP responseOutput size > 2000 tokensAdd limit parameter, use compact format
Repeated API callsCalling same tool multiple timesCache results in conversation context
Slow context buildupToo many tool callsBatch related queries, use more specific tools
Unnecessary documentation fetchInfo already knownCheck skill files first, fetch docs as last resort
Full table scan resultsDatabase query returns too muchAdd WHERE clause and LIMIT
Verbose error logsFull stack traces repeatedSummarize errors, reference line numbers

MCP Server Patterns

database-query

-- BAD: Query without limits
SELECT * FROM users

-- GOOD: Query with filters and limits
SELECT id, name, email FROM users WHERE active = true LIMIT 100

Tool usage:

  • execute_query: ALWAYS use limit parameter (default: 1000)
  • get_schema(compact=true): For DB structure overview
  • describe_table: Before exploratory queries
  • explain_query: Before complex queries on large tables

api-explorer

-- BAD: Full schema
get_api_schema(format="full")

-- GOOD: Summary only for overview
get_api_schema(format="summary")

-- GOOD: Path list with limit
list_api_paths(limit=50)

-- GOOD: Single endpoint details
get_api_endpoint_details(path="/users/{id}", method="GET")

Tool usage:

  • get_api_schema(format="summary"): For API overview
  • list_api_paths(limit=50): For endpoint list
  • get_api_models(compact=true): For model list without full schema
  • search_api(limit=10): For targeted searches

documentation

-- BAD: Entire document
fetch_docs(topic="react")

-- GOOD: Targeted search
search_docs(query="useEffect cleanup", maxResults=3)

Tool usage:

  • search_docs(maxResults=3): For specific information search
  • fetch_docs: Only for very specific topics
  • Check skill files FIRST before fetching documentation

log-analyzer

-- BAD: All logs
parse_logs(file="/var/log/app.log")

-- GOOD: Recent errors only
find_errors(file="/var/log/app.log", limit=50)

-- GOOD: Tail for live debugging
tail_logs(file="/var/log/app.log", lines=50)

Tool usage:

  • tail_logs(lines=50): For recent logs
  • find_errors(limit=50): For error debugging
  • parse_logs(limit=200): Only if full analysis needed

security-scanner

Tool usage:

  • scan_dependencies: Prefer over scan_all
  • scan_secrets: Faster than full scan
  • scan_all: Only for complete audits

code-quality

Tool usage:

  • analyze_complexity(path="src/specific/file.ts"): Target specific files
  • find_duplicates(minLines=10): Filter significant duplicates only
  • code_metrics: Compact output for overview

Pre-Call MCP Checklist

Before calling an MCP tool, verify:

  • Do I already have this information in context?
  • Can I use a more specific tool instead of a generic one?
  • Have I set an appropriate limit?
  • Have I used compact=true if available?
  • Is the expected output reasonable (< 2000 tokens)?

Output Format Standards

For code analysis

  • Max 5 issues per category
  • Snippets max 10 lines
  • Use tables for lists

For database queries

  • Max 20 rows in direct output
  • For results > 20: "Found N rows. First 20:..."
  • Compact tabular format

For documentation

  • Quote only relevant parts (max 500 characters)
  • Link to complete docs instead of copying content
  • Summarize instead of quoting verbatim

Efficient Response Examples

Database Query - Compact Output

Found 1523 rows. First 20:
| id | name | status |
|----|------|--------|
| 1  | ...  | active |
...
Use offset=20 for next page.

API Exploration - Progressive Detail

API has 45 endpoints. Summary by tag:
- users: 8 endpoints
- auth: 5 endpoints
- products: 12 endpoints
...
Use get_api_endpoint_details for specifics.

Log Analysis - Focused Output

Found 234 errors in last hour. Top 5 by frequency:
1. ConnectionTimeout: 89 occurrences
2. ValidationError: 45 occurrences
...
Use tail_logs or parse_logs with filters for details.

Reference Documentation

Deep Knowledge: Use mcp__documentation__fetch_docs with technology: token-optimization for advanced optimization techniques.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.84%
按下载量换算526

Claude

29.16%
按下载量换算416

Cursor

18.73%
按下载量换算267

Gemini CLI

9.6%
按下载量换算137

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills