resume-work
仓库创建 2026年7月25日最近提交 4 天前SkillHot 收录 3 天前
这个 Skill 做什么
把上次会话的现场一键恢复:它会读取最近的 handoff 文件和当前的 git 状态,告诉你现在进展到哪儿、有什么未完成的事、下一步该干什么。在开新会、刚做了 /clear 或 /compact 后,或接手别人分支、隔天继续工作时用。特别之处是读磁盘上的完整交接记录而不是压缩的摘要,恢复更准确、更少丢信息。
▸ 展开 SKILL.md 英文原文
Restores working context after a /clear or /compact by reading the most recent session handoff plus current git state, then reports where things stand and what the next step is. Use at the start of a session, after clearing or compacting, when picking up work from a previous day, or when taking over someone else's branch. Trigger: "resume", "pick up where we left off", "what was I doing", "restore context", "continue from the handoff", "catch me up".
0
Stars
0
Forks
13
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/makieali/claude-code-engineer/main/skills/resume-work/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/makieali/claude-code-engineer/main/skills/resume-work/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Resume Work — Reload State From Disk The other half of `/handoff`. Reads the written record rather than a summary of a summary. ## Step 1: Find the handoff ```bash ~/.claude/skills/resume-work/scripts/find-handoff.sh # newest for the current branch ~/.claude/skills/resume-work/scripts/find-handoff.sh --all # every branch, newest first ``` Then read the file it prints. Read it **whole** — the `Ruled out` section is usually near the bottom and it is the most valuable part. No handoff found? Say so plainly and fall back to git: `git log --oneline -15`, `git status`, `git diff --stat`. A reconstruction from history is worth less than a handoff, so say which one you are wor
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有