npx skills add ...
npx skills add rohitg00/agentmemory --skill handoff
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", "handoff", "pick up where I left off", or starts a session with no fresh context.
npx skills add rohitg00/agentmemory --skill handoff
The user wants to resume work. Optional cwd override: $ARGUMENTS
Pick the most recent session whose cwd matches this project, then:
memory_recall { "query": "<session top concepts>", "limit": 10 }.
Expected output:
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.