From will
Use when starting a session and user says "read the will", "continue where we left off", "pick up the handoff", or WILL.md exists and user wants to resume previous work
How this skill is triggered — by the user, by Claude, or both
Slash command
/will:readThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Read WILL.md and resume work from where the previous Claude instance left off. You're inheriting a session - honor the handoff by understanding context before acting.
Read WILL.md and resume work from where the previous Claude instance left off. You're inheriting a session - honor the handoff by understanding context before acting.
If brivlo:send_event is available, use brivlo:send_event will:read as your first step.
# Check if WILL.md exists
Use Read tool on WILL.md in project root.
If it doesn't exist, tell the user: "No WILL.md found - nothing to hand off."
Read and internalize:
Check that the codebase matches what the will describes:
If state doesn't match, flag it: "WILL.md mentions X but I see Y - which is current?"
Tell the user:
Then ask: "Ready to continue with [next step]?"
Once confirmed, proceed with the next steps from the will. You now own this work.
If you catch yourself doing these, STOP:
| Phase | Action | Output |
|---|---|---|
| 1. Read | Load WILL.md | Context loaded |
| 2. Understand | Parse all sections | Mental model |
| 3. Verify | Check codebase state | Sync confirmed |
| 4. Summarize | Report to user | User confirms |
| 5. Continue | Resume work | Back on track |
npx claudepluginhub mjbellantoni/cc-marketplace --plugin willReads a CONTINUE_HERE.md continuation file at session start and resumes from where a prior session left off, detecting freshness, parsing structured handoff, and cleaning up after consumption.
Restores session context from a previous Claude Code session after context resets, compaction, or new conversations. Checks for handoff files and project state to resume work.
Restores context, todos, and work state from a previous session that hit the context threshold. Reads handoff files to continue work seamlessly.