From quiver
Load the most recent handover note from the previous session into context.
npx claudepluginhub yagizdo/quiver --plugin quiverThis skill uses the workspace's default tool permissions.
---
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.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Guides code writing, review, and refactoring with Karpathy-inspired rules to avoid overcomplication, ensure simplicity, surgical changes, and verifiable success criteria.
Share bugs, ideas, or general feedback.
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.