Agent Skills
› PrimeIntellect-ai/prime-agent
› compact
compact
GitHub用于管理对话上下文压缩的 Skill。通过 compact.status 检查使用情况,使用 compact.run 触发摘要生成以释放上下文窗口,支持长任务持续进行而不中断。
Trigger Scenarios
上下文窗口即将耗尽
需要继续长时间运行的任务
用户手动请求压缩对话历史
Install
npx skills add PrimeIntellect-ai/prime-agent --skill compact -g -y
SKILL.md
Frontmatter
{
"name": "compact",
"description": "Check context usage and compact the conversation from the Python REPL. Use when context is filling up and substantial work remains, so the session is summarized and you keep working instead of stopping early."
}
Compact
Compaction replaces older conversation history with a dense summary, freeing
context so long-running work can continue. The implementation lives in the
host (the same one behind the user's /compact command); this skill is the
kernel-side interface to it. Call it directly from the Python REPL:
await compact.status()
await compact.run()
await compact.run("keep the failing test names and the migration checklist")
API
await compact.status()— current context usage as a dict:tokens,context_window, andpercent(Noneright after a compaction until the next model response), plusscheduled(whether a requested compaction is already pending).await compact.run(instructions=None)— schedule compaction. Returns{"scheduled": True}, or{"scheduled": False, "reason": ...}when there is nothing to compact yet. Optionalinstructionsfocus the summary on what matters for the remaining work.
Rules
- Compaction never runs mid-cell. A scheduled compaction runs when the current turn ends; the harness then resumes you automatically with the summary plus recent messages, and you continue the task.
- The Python kernel persists through compaction — variables, imports, and helpers you defined all remain available.
- Compact at a natural boundary when context usage is high and substantial
work remains, instead of becoming terse or returning to the user early.
Check
await compact.status()when unsure. - One request per turn is enough; calling
runagain before the turn ends only updates the instructions.
Version History
- bc0fa76 Current 2026-08-27 09:01


