From quiver
Loads the most recent handover note from a previous Claude Code session into context, restoring project state and next steps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/quiver:load-handoverWhen to use
user wants to restore previous session context -- '/load-handover', 'load handover', 'restore session', 'load previous context', 'continue from last session'
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
---
First, use the Glob tool to list .claude/handovers/*.md. Sort results by filename descending (newest first, since filenames are timestamps).
Using the Glob results, determine which branch applies:
If the listing shows an error (e.g., "No such file or directory"), is empty, or contains no .md files:
No handover files found for this project. This is a fresh session — no previous context to load. Stop here.
If there are one or more .md files:
.md file in the listing is the most recent (sorted newest-first).
Read it using the Read tool at path .claude/handovers/{filename}..md file exists, append: "{count} older handover(s) also available."After reading the handover file, present this summary:
Session loaded:
{filename}Date: {date extracted from timestamp in filename} Top Priority: {first item from Next Steps section}
If the handover has no "Next Steps" section or it says "N/A", set Top Priority to "No next steps recorded" and ask the user what they'd like to focus on.
Then:
{placeholder} text remains in your response.Trigger: /load-handover (and /quiver:load-handover should also work)
Setup:
.claude/handovers/ exists in the project root with at least one <timestamp>.md file written by /handover.Expected behavior:
.claude/handovers/*.md, sorts descending, picks the newest filename.No handover files found for this project. and exits.Session loaded, Date, Top Priority).Verification checklist:
/load-handover.Session loaded, Date, Top Priority.{count} older handover(s) also available.{placeholder} text remains in the printed summary.Known gotchas:
YYYY-MM-DD_HH-MM-SS.md filename convention; manually-renamed handovers can break ordering.Next Steps bullet; if the section is missing, the skill must fall back gracefully rather than emit a placeholder.npx claudepluginhub yagizdo/quiver --plugin quiverProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.