Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

token-saver-context-compression令牌保存程序上下文压缩

Agent Skill

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

总安装

2,117

周安装

90

GitHub Stars

25

下载量

742
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:token-saver-context-compression(令牌保存程序上下文压缩)
来源仓库:https://github.com/oimiragieo/agent-studio
仓库路径:skills/token-saver-context-compression
安装命令:
npx skills add https://github.com/oimiragieo/agent-studio --skill token-saver-context-compression
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oimiragieo/agent-studio --skill token-saver-context-compression

简介

压缩记忆记录和 RAG 条目以减少上下文占用。

  • 按模式、陷阱、问题、决策分类提取关键信息。
  • 适用于 Codex、Claude 等宿主的环境优化。
  • 安装前需确认是否会修改本地文件或调用 Python 引擎。
  • 建议先备份原有记忆库再执行压缩操作。token-saver-context-compression 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Token Saver Context Compression

Use this skill to reduce token usage while preserving grounded evidence. This integrates:

  • pnpm search:code (hybrid retrieval)
  • token-saver Python compression scripts
  • MemoryRecord persistence into framework memory
  • spawn prompt evidence injection ([mem:*] / [rag:*])

Activation

The token-saver skill can be invoked in two ways:

Manual Invocation (always available)

Skill({ skill: 'token-saver-context-compression' });

Use this when context pressure is high, pnpm search:tokens shows a file/directory exceeds 32K tokens, or you need query-targeted compression.

Auto-enforcement via compression-reminder.txt (requires AUTO_COMPRESSION_PHASE_3=1)

Set AUTO_COMPRESSION_PHASE_3=1 in .env to enable the compression-reminder.txt trigger:

# In .env
AUTO_COMPRESSION_PHASE_3=1

When enabled, compression-trigger.cjs writes .claude/context/runtime/compression-reminder.txt whenever a compression event fires. The router reads this file and spawns context-compressor automatically.

Without this env var: compression events are logged to .claude/context/compression-stats.jsonl but no compression-reminder.txt is written, so the router does not auto-spawn compression. The skill must be invoked manually.

Token thresholds enforced by the router (from CLAUDE.md Section 8):

  • 80K tokens — spawn context-compressor proactively
  • 120K tokens — compression mandatory before new spawns
  • 150K tokens — no new agent spawns until compression completes

Note: These thresholds are router behavioral guidelines checked in CLAUDE.md Section 8. The compression-trigger.cjs triggers are separate heuristics (budget >90%, reads >10KB, fetches >5KB, periodic every 10 ops). There is no automated hook enforcing the 80K/120K/150K thresholds — they rely on the router reading compression-reminder.txt.

When to Use

  • pnpm search:tokens shows a file/directory exceeds 32K tokens
  • Context is large or expensive and you need a compressed summary
  • You need query-targeted compression before synthesis
  • You need hard evidence sufficiency gating before persisting memory
  • You're building a prompt and search:code results alone aren't enough context

Iron Law

Do not persist compressed content directly to memory files from a subprocess. Emit MemoryRecord payloads and let framework hooks process sync/indexing.

Workflow

  1. Retrieve candidate context (pnpm search:code "<query>").

Step 0.5: Check Actual Token Usage + Cost (ccusage-adapter)

Before compressing, query actual API token usage and cost for today via ccusage-adapter. This lets you make data-driven compression decisions and report accurate cost savings.

// Attempt to read actual token usage (graceful degradation — never blocks compression)
let usageData = null;
let costs = null;
try {
  const ccusage = require('.claude/lib/utils/ccusage-adapter.cjs');
  usageData = ccusage.getTodayTotals();
  if (usageData) {
    costs = ccusage.calculateCost(usageData, process.env.CCUSAGE_MODEL || 'opus');
  }
} catch (_err) {
  // ccusage not installed or unavailable — fall back to heuristic estimation
}

if (usageData && costs) {
  console.log('[token-saver] Usage today:', {
    total: usageData.inputTokens + usageData.outputTokens,
    cost: `$${costs.actualCost.toFixed(4)}`,
    cacheSaved: `$${costs.cacheSavings.toFixed(4)}`,
  });

  // Use actual counts to decide compression aggressiveness
  const totalTokens = usageData.inputTokens + usageData.outputTokens;
  if (totalTokens > 120_000) {
    console.log('[token-saver] HIGH pressure (>120K tokens) — aggressive compression mode');
  } else if (totalTokens > 80_000) {
    console.log('[token-saver] MODERATE pressure (>80K tokens) — standard compression mode');
  } else {
    console.log('[token-saver] LOW pressure (<80K tokens) — light compression');
  }
} else {
  // ccusage unavailable — fall through to heuristic estimation from compression-trigger.cjs
  console.log('[token-saver] ccusage unavailable — using heuristic token estimation');
}

Fallback behavior: when getTodayTotals() returns null (ccusage not installed, timeout, or CCUSAGE_DISABLED=1), the workflow continues using existing heuristic thresholds from compression-trigger.cjs. The step never blocks compression.

Status file: the ccusage-statusline hook writes a live status to .claude/context/runtime/ccusage-status.txt on every prompt. Read it for a quick human-readable summary without calling the adapter directly.

Pricing Table

Canonical reference — these rates are used by ccusage-adapter.cjs → calculateCost(). When skill-updater refreshes this skill, it must verify these values via Exa search and update both this table and PRICING in .claude/lib/utils/ccusage-adapter.cjs.

Last verified: March 2026 (sources: Silicon Data, IntuitionLabs, DevTk.AI)
ModelInputOutputCache Write (1.25× input)Cache Read (0.10× input)
opus → Claude Opus 4.6$5.00/M$25.00/M$6.25/M$0.50/M
sonnet → Claude Sonnet 4.6$3.00/M$15.00/M$3.75/M$0.30/M
haiku → Claude Haiku 4.5$1.00/M$5.00/M$1.25/M$0.10/M

Cache pricing rules (Anthropic standard):

  • Cache write = 1.25× base input price (25% premium to store the prefix)
  • Cache read = 0.10× base input price (90% discount on repeated context)

Set CCUSAGE_MODEL=sonnet or CCUSAGE_MODEL=haiku to match your active model. Default is opus (conservative — highest rates, largest savings shown).

Cost Tracking Components

The cost tracking pipeline consists of three files:

FileRole
.claude/lib/utils/ccusage-adapter.cjsParses JSONL session logs, sums tokens, calculates cost via PRICING table
.claude/hooks/monitoring/ccusage-statusline.cjsUserPromptSubmit hook — runs adapter each prompt, writes status to runtime file
.claude/context/runtime/ccusage-status.txtLive status file — read by router for pipeline summaries

Status output format (three savings layers):

[tokens]      <N> today (in: <N> / out: <N>) | Cost: $<X>
[cache]       $<X> saved | <N> reads, <N> writes
[compression] <N> events | <X>KB freed (~<N> tokens) | ~$<X> saved
  • [tokens] — actual API spend
  • [cache] — server-side savings (Anthropic prompt caching, 90% discount on cache reads)
  • [compression] — client-side savings (tokens this skill avoided sending entirely)

Maintenance Instructions (for skill-updater)

When skill-updater refreshes this skill, execute this additional step after the standard research protocol:

Pricing Verification Step

  1. Run an Exa search to confirm current Claude API pricing: mcp__Exa__web_search_exa({query: 'Anthropic Claude API pricing per million tokens Opus Sonnet Haiku current', numResults: 4,});
  2. Cross-reference at least two sources (e.g., Anthropic docs, Silicon Data, IntuitionLabs, DevTk.AI).
  3. Compare found rates against the Pricing Table above.
  4. If any rate has changed:

- Update the table in this SKILL.md - Update the PRICING constant in .claude/lib/utils/ccusage-adapter.cjs - Update the Last verified date - Record the change in .claude/context/memory/decisions.md

  1. If no rates changed, update only the Last verified date.
Why this matters: stale pricing shows inflated savings ($86 showing as $258 with old Opus 4.0 rates). Accurate pricing is core to this skill's cost-reporting value.
  1. Compress using token-saver in JSON mode (run_skill_workflow.py --output-format json).
  2. If evidence is insufficient and fail gate is on, stop.
  3. Map distilled insights into MemoryRecord-ready payloads.
  4. Persist through MemoryRecord so .claude/hooks/memory/sync-memory-index.cjs runs.

Mapping Rule (Deterministic)

  • gotchas.json:

- text contains gotcha|pitfall|anti-pattern|risk|warning|failure

  • issues.md:

- text contains issue|bug|error|incident|defect|gap

  • decisions.md:

- text contains decision|tradeoff|choose|selected|rationale

  • patterns.json:

- default fallback for all remaining distilled evidence

Tooling Commands

Preferred wrapper entrypoint:

node .claude/skills/token-saver-context-compression/scripts/main.cjs --query "<question>" --mode evidence_aware --limit 20 --fail-on-insufficient-evidence

Direct Python engine (advanced):

python .claude/skills/token-saver-context-compression/scripts/run_skill_workflow.py --file <path> --mode evidence_aware --query "<question>" --output-format json --fail-on-insufficient-evidence

Output Contract

  • Wrapper emits JSON with:

- search summary - compression summary - memoryRecords grouped by target (patterns, gotchas, issues, decisions) - evidence sufficiency status

Workflow References

  • Skill workflow: .claude/workflows/token-saver-context-compression-skill-workflow.md
  • Companion tool: .claude/tools/token-saver-context-compression/token-saver-context-compression.cjs
  • Command surface: .claude/commands/token-saver-context-compression.md
  • Citation format is unchanged:

- memory entries become [mem:xxxxxxxx] - RAG entries remain [rag:xxxxxxxx]

Integration with search:tokens

Use pnpm search:tokens to decide when to invoke this skill:

# Check if you need compression
pnpm search:tokens .claude/lib/memory
# Output: 60 files, 500KB, ~128K tokens ⚠ OVER CONTEXT

# Then compress with a targeted query
node .claude/skills/token-saver-context-compression/scripts/main.cjs \
  --query "how does memory persistence work" --mode evidence_aware --limit 10

The tool reads actual file content from search results (not just file paths), compresses via the Python engine, and extracts memory records classified by type (patterns, gotchas, issues, decisions).

Adaptive Compression

Adaptive compression (adjusting compression ratio based on corpus size) is automatic and requires no env var configuration. When the input corpus is small, compression is lighter; when it is large, compression is more aggressive. This is controlled internally by the Python engine based on token counts.

Requirements

  • Node.js 18+
  • Python 3.10+

Iron Laws

  1. ALWAYS run hybrid search (pnpm search:code) before compressing to retrieve grounded evidence for the distilled output
  2. NEVER compress context that still has open uncertainties — resolve ambiguities before compressing
  3. ALWAYS persist distilled learnings via MemoryRecord immediately after compression
  4. NEVER discard evidence that contradicts the current working hypothesis during compression
  5. ALWAYS inject [mem:*] and [rag:*] citations in the compressed output for downstream spawn prompt grounding

Anti-Patterns

Anti-PatternWhy It FailsCorrect Approach
Compressing without prior hybrid searchOutput lacks grounded evidence, hallucination riskRun pnpm search:code first, embed citations
Discarding contradicting evidenceCreates false confidence in distilled outputPreserve all conflicting signals in summary
No MemoryRecord after compressionLearnings lost on next context resetPersist key findings immediately via MemoryRecord
Compressing too late (past 80K tokens)Severe accuracy degradation before compressionTrigger compression at 80K tokens, not at limit
Skipping [mem:*] / [rag:*] citationsDownstream agents cannot verify claimsAlways annotate evidence sources in output

Memory Protocol (MANDATORY)

Before work:

cat .claude/context/memory/learnings.md

After work:

  • Add integration learnings to .claude/context/memory/learnings.md
  • Add integration risks to .claude/context/memory/issues.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.02%
按下载量换算260

Claude

30.36%
按下载量换算225

Cursor

19.38%
按下载量换算144

Gemini CLI

9.95%
按下载量换算74

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills