with one click
handoff
Generate conversation handoff document for the next agent session.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Generate conversation handoff document for the next agent session.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Rewrite user's original prompt by integrating their critique of the agent's failed response.
Deconstruct LLM "neuroslop" — machine clichés, puffery, weasel-wording, Markdown abuse, rhythmic monotony. Use when user asks to humanize, dehumanize-AI, очистить от нейрослопа, депорезать, redact AI-generated copy, edit a draft from ChatGPT/Claude/Gemini, or refine corporate/PR/wiki text that "sounds AI".
Discover and merge useful features from sibling forks into the user's fork. Invoke only on explicit user request via /fork-merge with a fork URL.
Git workflow patterns — branching, committing, rebasing, conflict resolution. Use when working with git operations.
Relentlessly interview user to stress-test a plan/design.
Generate a comprehensive CLAUDE.md for the current repository — first runs Anthropic's /init for a baseline, then restructures with an extended standardized template (sections, security flows, anti-patterns, data models, CI/CD, common issues). Use when a repo has no CLAUDE.md or you want to enrich an existing one with extended structure.
| name | handoff |
| description | Generate conversation handoff document for the next agent session. |
| argument-hint | What will the next session be used for? |
| disable-model-invocation | true |
| stage | drafted |
Goal: Summarize current conversation into a handoff document for a new agent.
<project>/tasks/handoffs/NN-handoff.md, where NN is the next zero-padded sequence number (01, 02, 03, …) counted within that project's folder. The folder is anchored to the git repo root (falls back to pwd outside a repo), so the handoff lands in tasks/handoffs/ even when invoked from a subdirectory. Compute it via:
ROOT=$(git rev-parse --show-toplevel 2>/dev/null || pwd)
DIR="$ROOT/tasks/handoffs"; mkdir -p "$DIR"
LAST=$(ls "$DIR" 2>/dev/null | grep -oE '^[0-9]+' | sort -n | tail -1)
printf '%s/%02d-handoff.md\n' "$DIR" "$((${LAST:-0} + 1))"
If the user passed an argument, append a kebab-case slug: NN-handoff-<slug>.md. NEVER write to the global ~/.claude/handoffs/ — mixing unrelated projects there is what made the numbering meaningless.