Resume the most recent agent session for the current working directory, leading with any unanswered question. Use when the user says "where were we", "resume",
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-handoff-751fd5429f24 ,按照其中的说明把「handoff」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
The user wants to resume work. Optional cwd override: $ARGUMENTS
memory_sessions { "limit": 20 }
Pick the most recent session whose cwd matches this project, then:
memory_recall { "query": "<session top concepts>", "limit": 10 }.
Expected output:
Resuming 7f3a9c2 "Auth refresh rework".
Open question: should logout revoke all device tokens or just the current one?
Next step: decide revoke scope, then update auth/logout.ts.
Match the session by directory boundary, not raw prefix, so a sibling repo never gets mistaken for this one. Never invent observations for an empty session.
$ARGUMENTS is given, normalize it to absolute
(path.resolve(process.cwd(), $ARGUMENTS)); else use the cwd.memory_sessions. Pick the most recent session whose normalized cwd
matches by directory boundary: equality, OR cwd.startsWith(projectPath + sep),
OR projectPath.startsWith(cwd + sep). Prefer completed over abandoned.
No match: fall back to the single most recent session overall.summary or recent conversation observations whose narrative
ends in ?.memory_recall on the top concepts, limit 10.WRONG: session.cwd.startsWith(projectPath) matches /repo-a-staging when the
project is /repo-a, resuming the wrong repo's session.
RIGHT: session.cwd === projectPath || session.cwd.startsWith(projectPath + sep),
a directory-boundary check that cannot cross sibling repos.
recap, session-history, recall: same session data, broader views.See ../_shared/TROUBLESHOOTING.md if memory_sessions or memory_recall is not available.