handoff
仓库创建 2026年7月25日最近提交 4 天前SkillHot 收录 3 天前
这个 Skill 做什么
把当前会话的重要信息写到磁盘:记录做了什么、改了什么、做过哪些决定和排除了哪些方向,并写出唯一的下一步,同时给出是否该 /clear 或 /compact 的建议。会话变长、要收尾或要把工作交给别人时用,保证接手方能顺利继续。特点是有意识地写下完整交接,而不是临时的自动摘要,便于后续精确恢复。
▸ 展开 SKILL.md 英文原文
Writes a session handoff to disk before a context reset — what's done, what changed, what was decided, what was ruled out, and the single next step — then tells you whether to /clear or /compact. Use when a session is getting long or slow, before compacting, at the end of a work block, or when handing work to another person or session. Trigger: "write a handoff", "save progress", "save state", "session is getting slow", "before I compact", "wrap up", "I'm stopping here".
0
Stars
0
Forks
13
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/makieali/claude-code-engineer/main/skills/handoff/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/makieali/claude-code-engineer/main/skills/handoff/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Handoff — Write State Down Before You Lose It
Quality degrades as context grows, well before the window is full, and worst for
information in the middle of a long session. The model summarising at the end is already
impaired by the thing you are trying to escape.
So write the handoff **deliberately, while judgment is intact** — not when auto-compact
fires.
**HARD GATE: this skill writes one file. It does not change code, run tests, or commit.**
## The loop
```
/handoff → writes plans/handoffs/<date>-<slug>.md
→ tells you: /clear or /compact
you → run it
/resume-work → reads the newest handoff, you carry on
```
**You run the reset, not this skill.** `/clear` and `/via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有