From quiver
Deletes the most recent handover file and cleans up handover-sourced entries from MEMORY.md. Useful for resetting conversational context by removing the last session's trace.
How this skill is triggered — by the user, by Claude, or both
Slash command
/quiver:delete-last-handoverThe 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 — nothing to delete.
Stop here.
If there are one or more .md files:
.md file is the most recent (sorted newest-first). This is the deletion target.Target:
{filename}Remaining after deletion: {count - 1} handover file(s)
AskUserQuestion:
Delete
{filename}? This cannot be undone. Actions: ["Yes, delete it", "Cancel"]
rm .claude/handovers/{filename}
MEMORY.md in your memory directory). Remove only lines that contain the <!-- handover-sourced --> marker from MEMORY.md using the Edit tool. Leave all other entries untouched. Count removed lines as {N}. After cleanup, inform the user:
Also removed {N} handover-sourced references from MEMORY.md. If no matching entries were found, skip this message.
After deletion, output:
Deleted:
{filename}Remaining: {count} handover file(s)
Re-list .claude/handovers/ after deletion to confirm the file is gone and the remaining count is correct.
Trigger: /delete-last-handover (and /quiver:delete-last-handover should also work)
Setup:
.claude/handovers/ directory exists in the project root with one or more .md files (timestamp-named).Expected behavior:
Target: <filename> plus the remaining count.AskUserQuestion with ["Yes, delete it", "Cancel"].MEMORY.md for lines tagged <!-- handover-sourced --> and removes them via Edit, reporting how many were removed.Cancelled — no files were deleted.Verification checklist:
/delete-last-handover..claude/handovers/ is empty or missing (No handover files found — nothing to delete.).rm runs.MEMORY.md lines without the <!-- handover-sourced --> marker remain untouched.Known gotchas:
YYYY-MM-DD_HH-MM-SS.md timestamp format. If filenames ever drift from that format, sort order breaks.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.