بنقرة واحدة
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.