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

optimize-prompt-token-efficiency优化提示令牌效率

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

250

周安装

10

GitHub Stars

11

下载量

81
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/doodledood/claude-code-plugins --skill optimize-prompt-token-efficiency

简介

用于辅助提示词、系统指令和工作流模板的整理,提升可复用性与行为规范性。

  • 适用于规范任务边界、统一输出格式或拆分操作步骤的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 使用时应保留真实业务约束,避免将示例当作硬规则。
  • optimize-prompt-token-efficiency 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Optimize Prompt Token Efficiency

Iteratively optimize prompt token efficiency by maximizing information density through verification loops. Primary goal: reduce token consumption while preserving all semantic content for AI-consumed prompts (CLAUDE.md, skills, agent prompts, specs).

Overview

This skill transforms verbose prompts into token-efficient versions through:

  1. Verification First - prompt-token-efficiency-verifier checks for inefficiencies before any changes
  2. Optimization - Apply targeted compression based on verifier feedback
  3. Re-verification - Verify compression is lossless, iterate if issues remain (max 5 iterations)
  4. Output - Atomic replacement only after verification passes

Loop: Read → Verify → (Exit if efficient) → Optimize based on feedback → Re-verify → (Iterate if issues) → Output

Key principle: Don't try to optimize in one pass. The verifier drives all changes - if it finds no inefficiencies, the prompt is already token-efficient.

Workflow

Phase 0: Create Task List (use task management immediately)

Create todos tracking workflow phases. List reflects areas of work, not fixed steps.

Starter todos:

- [ ] Input validation
- [ ] Initial verification
- [ ] (Expand: optimization iterations on INEFFICIENCIES_FOUND)
- [ ] Output optimized prompt

Phase 1: Input Validation

Mark "Input validation" todo in_progress.

Step 1.1: Parse arguments

Extract file path from $ARGUMENTS. If no path provided, error with usage instructions.

Step 1.2: Validate file

  • Check file exists using Read tool
  • Verify supported type: .md, .txt, .yaml, .json
  • If unsupported, error: "Unsupported file type. Supported:.md,.txt,.yaml,.json"

Step 1.3: Read and measure original

  • Read file content
  • Estimate token count: Math.ceil(content.length / 4) (approximate)
  • Store original content and token count for comparison

Step 1.4: Store metadata

  • original_path: Source file path
  • original_content: Full prompt text
  • original_tokens: Estimated token count
  • working_path: /tmp/optimized-efficiency-{timestamp}.{ext} for iterations

Mark "Input validation" todo completed.

Phase 2: Initial Verification

Mark "Initial verification" todo in_progress.

Step 2.1: Copy to working path

Copy original content to working_path using Write tool (verification needs a file path).

Step 2.2: Run verifier first

Launch prompt-token-efficiency-verifier agent via Task tool BEFORE any optimization:

  • subagent_type: "prompt-engineering:prompt-token-efficiency-verifier"
  • prompt: "Verify prompt token efficiency. File: {working_path}. Check for redundancy, verbose phrasing, filler words, structural inefficiencies, and compression opportunities. Report VERIFIED if already efficient, or INEFFICIENCIES_FOUND with specific details."

Step 2.3: Handle verifier response

  • If "VERIFIED": Mark todo completed, proceed directly to Phase 4 (Output) with message: "Prompt is already token-efficient. No changes needed."
  • If "INEFFICIENCIES_FOUND": Mark todo completed, save the issues list, add "Optimization iteration 1" todo and proceed to Phase 3
  • If verifier fails or returns unexpected format: Retry once with identical parameters. If retry fails, report error: "Verification failed - cannot proceed without verifier."

Step 2.4: Display verifier findings

If inefficiencies found, show user summary and proceed:

Verifier found {count} token efficiency issues. Proceeding with optimization...

Mark "Initial verification" todo completed.

Phase 3: Optimization Loop (Verifier-Driven)

Mark "Optimization iteration 1" todo in_progress.

Key principle: All fixes are driven by verifier feedback. Do NOT analyze the prompt independently - only fix the specific inefficiencies the verifier reported.

For each iteration from 1 to 5:

  1. Apply compressions from verifier feedback: For each inefficiency in the verifier's report, apply the suggested compression. Write optimized version to working_path.

- Only fix inefficiencies the verifier identified - do not add your own improvements

  1. Re-verify: Launch prompt-token-efficiency-verifier agent via Task tool:

- subagent_type: "prompt-engineering:prompt-token-efficiency-verifier" - prompt: "Verify compression is lossless. Original file: {original_path}. Compressed file: {working_path}. Compare semantic content - check for missing facts, altered meaning, lost emphasis, removed nuance. Report VERIFIED if lossless, or ISSUES_FOUND with specific gaps."

  1. Handle response:

- If "VERIFIED": mark todo completed, exit loop, proceed to Phase 4 - If "ISSUES_FOUND" and iteration < 5: mark todo completed, save new issues list, add "Optimization iteration {next}" todo, continue to next iteration - If "ISSUES_FOUND" and iteration = 5: mark todo completed with note about unresolved issues, proceed to Phase 4 with warning - If verifier fails or returns unexpected format: display error to user, retry once with identical parameters. If retry fails, proceed to Phase 4 with warning: "Verification incomplete - manual review recommended."

Compression Techniques

Apply these techniques to fix inefficiencies flagged by the verifier:

TechniqueDescriptionBefore → After
Redundancy removalEliminate repeated concepts"It is important to note that you should always remember to..." → "Always..."
Terse phrasingReplace verbose constructions"In order to accomplish this task, you will need to..." → "To do this:"
Filler eliminationRemove hedging, qualifiers, throat-clearing"Make sure that you do not forget to include..." → "Include:"
Structural optimizationMerge/reorganize sections"First X. After that Y. Then Z." → "Steps: X → Y → Z"
Context-aware abbreviationAbbreviate terms after first mention"Model Context Protocol server" (×10) → "MCP server" (after first)
Dense formattingUse lists, tables, compact notationProse paragraphs → Tables, bullet lists

Transformation Rules:

  1. Preserve ALL semantic information - Every fact, instruction, constraint, and example must be present
  2. Preserve nuance and emphasis - Bold, caps, repetition, ordering that signals priority; intentional hedging (uncertainty was meaningful)
  3. Restructuring allowed - Reorder, merge sections if it increases density WITHOUT losing priority signals
  4. Format preservation - Output must be same format as input (markdown stays markdown)
  5. No reduction target - 10% reduction with nuance preserved > 40% reduction with nuance lost

Avoid creating ambiguity:

  • Don't merge conditions with different triggers ("when A, do X; when B, do Y" ≠ "when A/B, do X/Y")
  • Keep explicit referents (don't reduce "Use Read tool" to "Use the tool" if context is unclear)
  • Don't flatten relationships ("A requires B, C requires D" ≠ "A, C require B, D")
  • Ensure scope is clear (qualifier applies to which items?)

Phase 4: Output

Mark "Output optimized prompt" todo in_progress.

Step 4.1: Calculate metrics

  • Original token count (from Phase 1)
  • Compressed token count: Math.ceil(compressed_content.length / 4)
  • Reduction percentage: ((original - compressed) / original * 100).toFixed(0)

Step 4.2: Apply changes (atomic replacement)

If verification passed:

# Replace original atomically
mv {working_path} {original_path}

Step 4.3: Display results

If verification passed:

Optimized: {path}
Iterations: {count}
Original:  {original_tokens} tokens
Optimized: {compressed_tokens} tokens
Reduction: {percentage}%

Changes applied:
- {summary of compressions}

Status: Token-efficient and lossless

If verification failed after 5 iterations:

Optimized with warnings: {path}
Iterations: 5
Original:  {original_tokens} tokens
Optimized: {compressed_tokens} tokens
Reduction: {percentage}%

Unresolved issues:
- {list from last verification}

Review the changes manually.

Mark "Output optimized prompt" todo completed. Mark all todos complete.

Key Principles

PrincipleRule
Verify firstAlways run verifier before any optimization; maybe prompt is already efficient
Verifier-drivenOnly fix inefficiencies the verifier identifies - no independent analysis or improvements
Track progressUse task management to track phases; expand tasks on iteration
LosslessnessNever sacrifice semantic information for density; every fact must be preserved
Nuance preservationKeep emphasis, intentional hedging, priority signals; 10% with nuance > 40% without
No ambiguityCompressed must be as unambiguous as original
Verification requiredNever output without verifier checking
Atomic outputOriginal untouched until verification passes

Edge Cases

ScenarioHandling
No input providedError: "Usage: /optimize-prompt-token-efficiency "
File not foundError: "File not found: {path}"
Unsupported typeError: "Unsupported file type. Supported:.md,.txt,.yaml,.json"
Already efficientVerifier returns VERIFIED on first check → Report: "Prompt is already token-efficient. No changes needed."
Initial verifier failsRetry once; if still fails, Error: "Verification failed - cannot proceed without verifier."
Re-verification failsDisplay error, retry once; if retry fails, output with warning
YAML/JSON structurePreserve structure validity, compress string values only
Very large file (>50KB)Process as single unit
0-10% reductionSuccess: "Content was already near-optimal density"
Verification fails 5xOutput best attempt with warning

Example Usage

# Optimize a verbose CLAUDE.md
/optimize-prompt-token-efficiency CLAUDE.md

# Optimize a skill file
/optimize-prompt-token-efficiency claude-plugins/my-plugin/skills/my-skill/SKILL.md

# Optimize an agent prompt
/optimize-prompt-token-efficiency agents/code-reviewer.md

Example Output

Optimized: docs/README.md
Iterations: 2
Original:  4,250 tokens
Optimized: 3,612 tokens
Reduction: 15%

Changes applied:
- Removed redundant intro section
- Consolidated overlapping examples
- Tersified verbose instructions
- Preserved emphasis markers and conditional logic

Status: Token-efficient and lossless
Prompt is already token-efficient. No changes needed.
Original: 1,995 tokens

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.66%
按下载量换算31

Claude

30.05%
按下载量换算24

Cursor

19.96%
按下载量换算16

Gemini CLI

9.98%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills