com um clique
handoff
Resume the most recent agent session for the current working directory
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Resume the most recent agent session for the current working directory
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional 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.