Next
Snapshot the current session to ~/.whisper/ and move on. Fast — no project file updates, no inbox triage, no ticket operations. Pure stash.
Steps
Get timestamp:
date +%Y-%m-%danddate +%H:%M.Detect repo and branch:
repo_url=$(git remote get-url origin 2>/dev/null | sed 's|https://||;s|git@||;s|\.git$||') branch=$(git rev-parse --abbrev-ref HEAD) branch_slug=$(echo "$branch" | sed 's|/|--|g') notes_path=~/.whisper/repos/"${repo_url}"/branches/"${branch_slug}"/notes.mdIf
~/.whisper/doesn't exist or the branch slot doesn't exist, run/w checkfirst (which will offer to init). If the user declines, skip and warn.Scan the last portion of the conversation and write a 2–5 bullet snapshot:
- What was worked on (files, topics)
- Key decisions or changes made
- Next: the most logical continuation point
Append the snapshot to
notes.md:### YYYY-MM-DD HH:MM — snap - what was worked on - decisions made - **Next:** continuation pointNo commit, no push, no ticket operations. Just write the file.
Output
✓ Snapped to ~/.whisper/repos/<repo>/branches/<slug>/notes.md
Use `/renew` later to pick this back up.
Rules
- Do NOT ask questions — summarize automatically from conversation context.
- Keep it brief — 2–5 bullets, not paragraphs.
- Do NOT commit or push anything.
- Do NOT update project files, inbox, or tickets.
- Do NOT run
/clear.