一键导入
handoff
Resume the most recent agent session for the current working directory
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Resume the most recent agent session for the current working directory
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Diagnose mempalace setup (config, palace path, MCP, FTS/index health)
List or inspect people/project entities tracked in the mempalace graph
Mine a project directory into the mempalace corpus (drawers, rooms, wings)
Hybrid search over the mempalace corpus (BM25 + vectors + optional graph)
Show mempalace palace status (drawers, wings, rooms, health)
Trace a file, function, or line back to the agent session that produced its current commit
| name | handoff |
| description | Resume the most recent agent session for the current working directory |
| argument-hint | [optional cwd override] |
| user-invocable | true |
The user wants to resume work. Optional cwd override: $ARGUMENTS
Call memory_sessions, find the most recent session matching the project path, summarize it.
Pick up where the last session left off without re-reading history from scratch.
$ARGUMENTS override or current cwd.memory_sessions, find the most recent session whose cwd matches (directory-boundary check). Prefer completed over abandoned.?), surface it first.memory_recall with session concepts, limit 10.WRONG -- raw string prefix match on cwd:
// session.cwd.startsWith("/repo") matches unrelated "/repo-staging"
RIGHT -- directory-boundary check:
// session.cwd == projectPath OR startsWith(projectPath + path.sep) OR vice versa
WRONG -- ignoring the unanswered question:
// Session ended with "Should we keep the fallback?" but you don't mention it
If MCP tools are unavailable: GET $MEMPALACE_URL/sessions and POST $MEMPALACE_URL/smart_search with Authorization: Bearer $MEMPALACE_SECRET.
See
_shared/TROUBLESHOOTING.mdandEXAMPLES.mdfor more.