From cornerman
Full session-restoration skill. Builds on /cornerman where-am-i (#14) with the heavier "what's changed in main since work started", branch-vs-main file-overlap analysis, and rebase recommendations. Use when picking up work after days away, when returning from a context switch, or when the answer to "is my branch still valid?" matters. Pairs with where-am-i (point-in-time snapshot) and retro (cross-issue view).
How this skill is triggered — by the user, by Claude, or both
Slash command
/cornerman:cornerman-resumeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The full session-restoration skill. `where-am-i` (#14) gives you the snapshot; `resume` gives you the reasoning.
The full session-restoration skill. where-am-i (#14) gives you the snapshot; resume gives you the reasoning.
| Flag | Default | What it does |
|---|---|---|
--issue <N> | auto-detect from branch | Target a specific issue |
--branch <name> | current branch | Target a specific branch |
where-am-i doesn't| Question | where-am-i | resume |
|---|---|---|
| What state am I in for this issue? | ✅ | ✅ |
| What contract last passed? | ✅ | ✅ |
| What's the suggested next agent? | ✅ | ✅ |
| What changed in main since I started? | — | ✅ |
| Does my work overlap with those changes? | — | ✅ |
| Should I rebase before continuing? | — | ✅ |
resume invokes where-am-i for the snapshot and then adds the diff-against-main + rebase analysis.
where-am-i)python3 .claude/plugins/cornerman/scripts/resume/report.py \
${ISSUE:+--issue "$ISSUE"} \
${BRANCH:+--branch "$BRANCH"}
Pure-python. No new dependencies beyond what where-am-i already needs.
/cornerman where-am-i (#14) — that's the cheaper snapshot. If you don't care about main-diff, use where-am-igit fetch + git rebasewhere-am-i saw plus the main-diff. Replaying contracts against current state lives in the contract entry point (contracts/check.sh <transition> <N>)/cornerman where-am-i (#14) — the snapshot it builds on/cornerman retro (#13) — cross-issue, time-windowed viewCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub boutlabs/claude-plugins --plugin cornerman