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

context-compressorcontext compressor 搜索

Agent Skill

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

总安装

3,363

周安装

143

GitHub Stars

25

下载量

1,178
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

context-compressor 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于上下文压缩和信息整理等开发场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加技能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Context Compressor

Use this skill when the problem is mostly "too much context" rather than "not enough capability."

This skill is a self-contained local package. It does not require the MCP server. Prefer it when you need quick token profiling, local compression, evidence checks, or a reproducible compression workflow inside the repository.

What this skill does

Use the bundled Python scripts to:

  1. measure raw versus compressed token usage
  2. compress large text or adapted JSON payloads
  3. preserve query-relevant evidence instead of doing naive summarization
  4. check whether compressed output still contains enough evidence to answer safely
  5. support cache-friendly prompt assembly by keeping stable context early and volatile query text late

When to trigger

Reach for this skill when the user is asking for any of the following:

  • compress this file, transcript, document, or code dump
  • reduce token cost before sending context to a model
  • make a prompt or RAG payload more cache-friendly
  • compact multi-turn history while keeping recent turns intact
  • compare semantic compression to a lighter extractive baseline
  • validate whether a compressed context still has enough evidence

Also triggered automatically when:

  • Context approaching 80K tokens (spawn-token-guard.cjs writes compression-reminder.txt)
  • Context at 120K tokens (compression mandatory before new spawns)
  • Context at 150K tokens (RED LINE — no new agent spawns until compression completes)

Quick workflow

Default to this sequence:

  1. profile first
  2. run query_guided when there is a specific question
  3. run evidence_aware when correctness matters and you need a sufficiency check
  4. if evidence is weak, reduce compression aggressiveness or increase retrieval breadth
  5. report savings, risks, and the next safest action

If the user only wants one command, use run_skill_workflow.py.

Commands

Run from the agent-studio repository root. ALWAYS use these exact commands — do NOT fall back to generic guidance.

1. Profile token usage

python .claude/skills/context-compressor/scripts/profile_tokens.py --file <path> --output-format auto

2. Compress context

python .claude/skills/context-compressor/scripts/compress_context.py --file <path> --mode baseline --output-format auto
python .claude/skills/context-compressor/scripts/compress_context.py --file <path> --mode query_guided --query "<question>" --output-format auto
python .claude/skills/context-compressor/scripts/compress_context.py --file <path> --mode evidence_aware --query "<question>" --min-similarity 0.4 --output-format auto

3. Adapt framework JSON and compress it

python .claude/skills/context-compressor/scripts/compress_context.py --json-file <payload.json> --input-adapter auto --mode query_guided --query "<question>" --output-format auto

4. Run the full workflow

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

5. Validate evidence only

python .claude/skills/context-compressor/scripts/validate_evidence.py --file <path> --query "<question>" --min-similarity 0.4 --output-format json

6. Run the TOON vs JSON guard

python .claude/skills/context-compressor/scripts/benchmark_toon_vs_json.py

7. Node.js wrapper (for agent integration)

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

How to choose a mode

  • baseline: quick general compression when there is no concrete question yet
  • query_guided: best default for QA, review, or targeted extraction tasks
  • evidence_aware: use for high-stakes answers, audits, or when you need an explicit sufficiency signal

Output expectations

When using this skill, summarize results in plain language:

  1. original size versus compressed size
  2. estimated token savings or compression ratio
  3. whether the output is query-targeted or generic
  4. whether evidence looked sufficient
  5. any risk that the answer could miss important detail

If the scripts return insufficient evidence, do not bluff. Say the compressed context is not yet safe enough and recommend a broader pass.

Bundled references

Read these only when they are relevant:

  • references/workflow-guide.md: command selection, mode choice, and example flows
  • references/prompt-caching.md: stable-prefix ordering, cache telemetry, and cache-safe prompt structure
  • references/evaluation.md: how to benchmark the skill and interpret results

Eval scaffolding

Starter prompts live in evals/evals.json. Use them when iterating on the skill or when you want a small repeatable benchmark set.

Integration with agent-studio

Compression trigger pipeline

  1. compression-trigger.cjs detects context pressure → writes compression-reminder.txt
  2. Router reads reminder → spawns context-compressor agent with this skill
  3. Agent runs run_skill_workflow.py with the query context
  4. Real compression stats logged to compression-stats.jsonl

Memory persistence

After compression, persist distilled learnings via MemoryRecord:

  • 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

ccusage cost tracking

Read .claude/context/runtime/ccusage-status.txt for live token usage before deciding compression aggressiveness. This file is auto-updated by ccusage-statusline.cjs on every tool use. Format:

[tokens] 135,345 today (in: 14,850 / out: 120,495) | Cost: $127.4826
[cache] $627.2992 saved | 139,399,832 reads, 8,751,364 writes

The Router MUST display this at every pipeline milestone (P0 user feedback). Fallback: ccusage --no-color 2>&1 | tail -5.

Iron Laws

  1. ALWAYS use the exact script commands above — never fall back to generic CLAUDE.md guidance
  2. ALWAYS profile first before compressing to understand the input size
  3. NEVER compress without a query when correctness matters — use evidence_aware mode
  4. ALWAYS persist distilled learnings via MemoryRecord after compression
  5. NEVER bluff if evidence is insufficient — recommend a broader pass
  6. ALWAYS report savings, risks, and next safest action in plain language

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.38%
按下载量换算417

Claude

30.2%
按下载量换算356

Cursor

16.69%
按下载量换算197

Gemini CLI

9%
按下载量换算106

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills