From claude-mneme
Create a session briefing for the next session — auto-loaded, then archived. Use when the user is wrapping up a session, says "save this for next time", "hand off", "brief the next session", or wants to ensure continuity before stopping work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-mneme:handoffThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a concise briefing that the next session will automatically receive at startup. Think of it as writing a note to your future self (or the next session's Claude).
Create a concise briefing that the next session will automatically receive at startup. Think of it as writing a note to your future self (or the next session's Claude).
Reflect on the current session and generate a structured briefing with these fields:
Only include fields that have meaningful content. Don't pad with filler.
Pipe JSON to the handoff script via stdin:
echo '{"summary":"...","keyDecisions":["..."],"currentState":"...","nextSteps":["..."],"blockers":["..."],"context":"..."}' | node "${CLAUDE_PLUGIN_ROOT}/scripts/mem-handoff.mjs"
The JSON must have at least a summary field. All other fields are optional.
/handoff, incorporate them into the briefingUser: /handoff
Generate based on session context:
{
"summary": "Implemented the new auth middleware using JWT tokens. Added refresh endpoint and integration tests.",
"keyDecisions": [
"JWT over session tokens — stateless, scales better with the API gateway",
"Refresh tokens stored in httpOnly cookies, not localStorage"
],
"currentState": "Auth middleware is working and tested. Rate limiting endpoint exists but isn't wired up yet.",
"nextSteps": [
"Wire rate limiting into the auth middleware chain",
"Add token revocation endpoint",
"Update API docs with new auth flow"
],
"blockers": [
"CORS preflight issue with the staging API gateway — needs DevOps input"
]
}
User: /handoff remember to check the flaky test in auth.test.mjs before continuing
Include the user's note in the briefing alongside the session summary.
npx claudepluginhub edimuj/claude-mneme --plugin claude-mnemeGenerates a passoff package (session summary, PROGRESS/CLAUDE/memory updates, commit, next-session prompt) for clean handoffs to future-you or a coworker brief mode.
Generates a structured session handoff summary with current status, completed/remaining tasks, decisions, pitfalls, and next steps for context resumption.
Saves session state and writes a handoff note so the next Claude Code session can continue cleanly. Read/writes a remember.md file at the project root.