From quiver
Deletes all handover files for the current project to reset session history. Useful for starting fresh or clearing accumulated context.
How this skill is triggered — by the user, by Claude, or both
Slash command
/quiver:delete-all-handoversThe 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 purge.
Stop here.
If there are one or more .md files:
Files to delete ({count}): {bulleted list of all .md filenames}
AskUserQuestion tool with these actions:
["Yes, delete all", "Cancel"]Cancelled — no files were deleted.
rm -f .claude/handovers/*.md
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:
Purged: {count} handover file(s) Files deleted: {comma-separated filenames} Status: Clean slate.
Re-list .claude/handovers/ after deletion to confirm no .md files remain. If the directory is now empty, confirm: "Directory clean — 0 handover files."
Trigger: /delete-all-handovers (and /quiver:delete-all-handovers should also work)
Setup:
.claude/handovers/ exists in the project root with two or more .md files.Expected behavior:
.claude/handovers/*.md and lists every filename with the count (Files to delete (N): …).AskUserQuestion with ["Yes, delete all", "Cancel"].Cancelled — no files were deleted. and exits without touching any files.rm -f .claude/handovers/*.md, then strips lines tagged <!-- handover-sourced --> from MEMORY.md via Edit, reporting how many were removed..md files remain and prints the output template (Purged, Files deleted, Status: Clean slate.).Verification checklist:
/delete-all-handovers.nothing to purge line and writes nothing..md filename before deletion.AskUserQuestion, not plain text.MEMORY.md lines without the <!-- handover-sourced --> marker stay intact.Directory clean — 0 handover files.Known gotchas:
rm -f .claude/handovers/*.md glob is shell-expanded; if the directory is missing entirely, rm -f exits 0, which is desired but means callers must rely on the pre-deletion existence check.AskUserQuestion step, even when running automated tests.Provides 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.
npx claudepluginhub yagizdo/quiver --plugin quiver