skills/src/handover/SKILL.md
Creates or refreshes a HANDOVER.md that captures current session state for the next assistant. Use when wrapping up a session, context is getting full, switching operators, or when the user asks for a handoff summary including decisions, pitfalls, lessons learned, next steps, and important files. Also trigger when the user says "save progress", "session summary", or "prepare for next session".
npx skillsauth add shuymn/dotfiles handoverInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate a HANDOVER.md file in the current project folder so the next session can continue without losing context.
HANDOVER.md in the current working project.git statusgit branch --show-currentgit log -n 15git diffHANDOVER.md using the template below.# Session Handover
## 1. Session Snapshot
- Date:
- Project:
- Primary goal:
- Current status:
## 2. Completed Work
- [Completed item with evidence: file/command/commit]
## 3. In-Progress Work
- [Work item]
- Current state:
- Remaining tasks:
## 4. Key Decisions (and Why)
- Decision:
- Why:
- Alternatives considered:
- Impact:
## 5. Problems, Pitfalls, and Fixes
- Problem:
- Symptoms:
- Root cause (if known):
- Fix/workaround:
- Validation:
## 6. Lessons Learned / Gotchas
- [Lesson]
- [Gotcha and prevention]
## 7. Important Files Map
- `path/to/file`: Why this file matters and its current state
- `path/to/file`: Why this file matters and its current state
## 8. Next Steps (Ordered)
1. [Highest-priority action]
2. [Next action]
3. [Follow-up action]
## 9. Open Questions / Risks
- [Question or risk]
- [Required decision or mitigation]
## 10. Useful Commands / References
- `command`: Purpose
- [Reference link or doc path]
development
Simplifies recently changed code by running three parallel reviews (reuse, quality, efficiency) and applying only behavior-preserving fixes. Use when the user asks to simplify, clean up, reduce duplication, improve code reuse, or optimize recently changed code, a staged diff, a branch diff, or explicitly listed files. Also use when the user says things like 'simplify this', 'まとめて整理して', 'コードをスリムにして', or invokes `/simplify`.
tools
Use when the user invokes /workflow. Injects project workflow methodology as context. Accepts argument: plan, exec, review (default: all).
development
Processes AI reviewer feedback and applies only verified fixes. Works in two modes: (1) fetches comments from a PR URL or current branch, (2) processes feedback pasted directly into the conversation. Trigger when the user wants to bulk-process or apply AI review suggestions — from a GitHub PR or pasted text. Do NOT trigger for single questions about what a bot said, or general code review discussion.
testing
Prepares .ralph/ runtime state from an approved and reviewed plan bundle. Syncs plan tasks into prd.json and updates prompt.run.md with project-specific context and quality gates. Use after plan approval, decompose-plan review PASS, and ralph init.