with one click
handoff
Resume the most recent agent session for the current working directory
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Resume the most recent agent session for the current working directory
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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.