From will
Use when ending a session with unfinished work, user says "write your will", "hand this off", "I need to switch contexts", or you need to preserve state for a future Claude instance
How this skill is triggered — by the user, by Claude, or both
Slash command
/will:writeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Write a WILL.md file that captures everything a future Claude instance needs to continue the current work. This is your "last will and testament" - make it complete enough that your successor can pick up exactly where you left off.
Write a WILL.md file that captures everything a future Claude instance needs to continue the current work. This is your "last will and testament" - make it complete enough that your successor can pick up exactly where you left off.
If brivlo:send_event is available, use brivlo:send_event will:write as your first step.
Collect from the current session:
Create WILL.md in the project root with this structure:
# Session Handoff
> Written: [timestamp]
> Original request: [brief summary of what user asked for]
## Current Status
[One paragraph describing where we are - what's done, what's in progress]
## What Was Done
- [Completed item 1]
- [Completed item 2]
- ...
## Next Steps
1. [Immediate next action - be specific]
2. [Following action]
3. ...
## Key Files
- `path/to/file.rb` - [why it's relevant]
- `path/to/other.rb` - [why it's relevant]
## Context & Decisions
[Important context the next instance needs to know - architectural decisions, constraints discovered, approaches tried/rejected]
## Open Questions
- [Any unresolved questions for the user]
- [Any blockers that need resolution]
## Prompt to Continue
[A ready-to-use prompt the user can give to the next Claude instance to resume work]
Report: "Will written to WILL.md - ready for handoff"
Optionally show the "Prompt to Continue" section so user can copy it.
If you catch yourself doing these, STOP:
| Phase | Action | Output |
|---|---|---|
| 1. Gather | Review session state | Mental inventory |
| 2. Write | Create WILL.md | File in project root |
| 3. Confirm | Report completion | "Will written to WILL.md" |
npx claudepluginhub mjbellantoni/cc-marketplace --plugin willWrites a CONTINUE_HERE.md file capturing session state so a fresh Claude Code session can pick up where the last one left off. Use when ending a session with unfinished work or handing off context between sessions.
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.
Ends a work session by writing a concise HANDOFF.md snapshot summarizing progress, decisions, and next steps for the next session.