$npx -y skills add chacosoldier/compabob --skill handoverWrite a handover note before ending a working session so the next session picks up with full context. Use for "/handover", "wrap up", or "write a handover before I stop".
| 1 | # Handover |
| 2 | |
| 3 | Persist session context so the next session starts oriented instead of cold. |
| 4 | |
| 5 | ## Steps |
| 6 | |
| 7 | 1. **Summarize the session**: what was worked on, what was decided, what was finished. |
| 8 | 2. **Capture the open thread**: what is in progress, the exact next step, and any state that matters (a branch name, a file mid-edit, a blocked decision). |
| 9 | 3. **Note anything fragile**: a test that is failing, an assumption not yet verified, a thing that will break if forgotten. |
| 10 | 4. **Write** the note to `.tmp/handover.md`. The `hook-session-start.sh` hook reads this file at the start of the next session and injects it automatically. |
| 11 | |
| 12 | ## Format |
| 13 | |
| 14 | ``` |
| 15 | # Handover — <date> <time> |
| 16 | |
| 17 | ## Done this session |
| 18 | - ... |
| 19 | |
| 20 | ## In progress |
| 21 | - [the open thread, with the exact next step] |
| 22 | |
| 23 | ## Watch out for |
| 24 | - [anything fragile or unverified] |
| 25 | |
| 26 | ## Next step |
| 27 | [one sentence: what to do first next session] |
| 28 | ``` |
| 29 | |
| 30 | After writing, confirm in one line: "Handover saved to .tmp/handover.md." If durable facts surfaced (not session state, but lasting knowledge), also propose memory writes per the constitution. |