npx claudepluginhub mrzhbr/oh_my_openclaude --plugin omo# Handoff — Session Continuation Generate a structured handoff document so the next session can pick up exactly where this one left off. ## Process ### Step 1: Gather State - Read `.claude/omo/boulder.json` for current execution state - Check TodoWrite for any active todo lists - Review recent git changes: `git diff --stat HEAD~5` and `git log --oneline -10` ### Step 2: Extract Context Review the conversation to identify: - What the user originally requested - What has been accomplished - What remains to be done - Key decisions made and their rationale - Blockers or issues discovered - ...
/handoffGenerates a structured markdown handoff document summarizing git status, commits, uncommitted changes, session learnings, progress, and next steps. Saves to ~/.pro-workflow/handoffs/. Supports --full and --compact modes.
/handoffEnds swarm session: summarizes work/blockers, persists state via hivemind_store and git, cleans agents/tasks/reservations, updates hive, generates handoff note.
/handoffGenerates a developer handoff package for the specified screen, feature, or component, including visual specs, interaction specs, QA checklist, assets, and notes.
/handoffSaves session state snapshot as structured JSON to docs/tasks/<branch>/session_logs/<timestamp>_handoff.json, capturing git status, progress summary, tasks, and context for resume.
/handoffCreates a detailed handoff plan summarizing conversation, technical details, code, decisions, and next steps for continuing work in a new session.
/handoffCreates handoff branch from main, scratchpad with analysis/plan/files/testing, PR, roadmap entry, and copy-paste worker prompt for task delegation.
Generate a structured handoff document so the next session can pick up exactly where this one left off.
.claude/omo/boulder.json for current execution stategit diff --stat HEAD~5 and git log --oneline -10Review the conversation to identify:
Write to .claude/omo/handoffs/{timestamp}.md:
# Session Handoff — {date}
## User Request
{Original task/goal}
## What Was Accomplished
- {completed item 1}
- {completed item 2}
## Current State
- boulder.json status: {status}
- Active plan: {plan file or "none"}
- Active todos: {count remaining}
## What Remains
- [ ] {pending item 1}
- [ ] {pending item 2}
## Key Decisions
- {decision}: {rationale}
## Modified Files
- `path/to/file` — {what changed}
## Blockers / Issues
- {blocker or "none"}
## Resume Instructions
{Exactly what the next session should do first}
Show the user a brief summary and the handoff file path.