handoff

handoff is a skill for Claude Code from Nazzero/ai-handoff. It costs 12 tokens per session (920 once invoked), scanned A, original, MIT.

A skill that creates a structured handoff document from the current conversation. A handoff records the goal, completed work, problems, decisions, and next steps for another developer or agent.

In plain words
What is it for?
Summarising a coding session and saving its current state for someone or something else to continue.
Why use it?
It reduces the information another agent needs to understand before continuing a task.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the ai-handoff plugin — 1 skill shipped together

Good fit Summarising a coding session and saving its current state for someone or something else to continue.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nazzero/ai-handoff/handoff
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Nazzero/ai-handoff --skill handoff
Clone the repo
git clone --depth 1 https://github.com/Nazzero/ai-handoff

Made for: Claude Code.

Or install ai-handoff, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for handoff

README.md
[![agentmods](https://agentmods.dev/badge/skills/nazzero/ai-handoff/handoff/github.svg)](https://agentmods.dev/skills/nazzero/ai-handoff/handoff)
Your own site
<a href="https://agentmods.dev/skills/nazzero/ai-handoff/handoff"><img src="https://agentmods.dev/badge/skills/nazzero/ai-handoff/handoff/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for handoff

Your own site · 80×15
<a href="https://agentmods.dev/skills/nazzero/ai-handoff/handoff"><img src="https://agentmods.dev/badge/skills/nazzero/ai-handoff/handoff.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 12 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 920 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00012 $0.00920
Opus 5 $0.00006 $0.00460
Sonnet 5 $0.00002 $0.00184
Haiku 4.5 $0.00001 $0.00092

Measured 9d ago against content hash 70dc8f3dd517, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

handoff scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Verification: `[command to confirm things work, e.g., npm test, curl localhost:8000/api/health]`
skills/handoff/SKILL.md · 112 lines

How it starts

The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Generate a structured handoff document from the current session's conversation context.

Trigger

/handoff or "make a handoff", "write a handoff", "handoff doc"

Process

  1. Review your conversation context. Identify: goal, completed work, failures, current state, decisions made, and what's next.
  2. Determine metadata:
    • Date: today's date (YYYY-MM-DD)
    • Agent/Dev: your model name (e.g., "Claude Opus 4.6", "GPT-5.4", "Gemini 3.1 Pro")
    • Branch: current git branch (run git branch --show-current if available)
    • Status: In Progress / Blocked / Complete
    • Short task name: 3-5 word slug using hyphens (e.g., arena-model-extraction-fix)
  3. Populate the template below with precise, actionable details from the session.
  4. Write the file to Handoff_Docs/handoff_YYYY-MM-DD_[short_task_name].md in the project root. Create Handoff_Docs/ if it doesn't exist.
  5. Confirm to the user with the file path and a 1-line summary.

Rules

  • Use ONLY the template structure below. Do not add or remove sections.
  • Omit section content (write "N/A" under the header) if nothing applies — do not fabricate.
  • Use exact file paths (absolute when possible).
  • Include exact error messages and line numbers in failure sections.
  • Bullet points only. No prose paragraphs.
  • Prioritize clarity for an AI agent continuing the work.
  • No fluff. Every line must be actionable or informational.
  • Mark completed items with [x], incomplete with [ ].
  • Code Context section: include only signatures, API shapes, or snippets critical for continuity — not full files.

Template

# HANDOFF: [Task Title]

**Date:** [YYYY-MM-DD] | **Agent:** [ID] | **Branch:** [branch] | **Status:** [In Progress/Blocked/Complete]
**Goal:** [1-2 sentences strictly defining what this session was attempting to achieve]

---

## COMPLETED

- [x] **[Task/Module]** -> `[Path]` | [Stable/Tested/Implemented]

## INCOMPLETE

- [ ] **[Task/Module]** -> `[Path]` | Issue: [Exact error/blocker]

## CURRENT STATE

- **Working:** [What functions correctly right now]
- **Broken:** [What's failing + exact error at file:line]

## FAILED APPROACHES (Don't Repeat)

- **[Approach]** -> Failed: [Error/Reason] -> Use `[Alternative]` instead

## KEY DECISIONS

| Decision | Rationale |
|----------|-----------|
| [Choice made] | [Why — constraint, tradeoff, or evidence] |

## RESUME INSTRUCTIONS

Step-by-step for the next agent to continue:

1. **[Action]** -> `[Path]` | Expected: [Outcome]
2. **[Action]** -> `[Path]` | Expected: [Outcome]

**Future (once unblocked):**

- [ ] **[Task]** -> [Brief description]

Verification: `[command to confirm things work, e.g., npm test, curl localhost:8000/api/health]`

## HOW IT WORKS

- **Flow:** [1-line architecture/data flow diagram]
- **State/Storage:** [DB, cache, files, where data lives]

## SETUP REQUIRED

- [Env vars, dependencies, test data, or config needed before resuming]

## CODE CONTEXT

Key signatures, API shapes, or snippets the next agent needs:

[Include only what's essential — function signatures, response shapes, hook interfaces]

## WARNINGS

- `[Path/Thing]` -> [Why not to touch / what breaks / time-sensitive constraints]

## KEY FILES

- `[Path]` -> [Purpose]

Read the full file on GitHub · 112 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 112 lines · 12 tokens per session scan A 70dc8f3dd517

Subscribe to this mod's changes

handoff is a skill published in the GitHub repository Nazzero/ai-handoff (1 stars, last pushed 4mo ago), licensed MIT. It adds 12 tokens to every session and 920 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

chief-strategy-officer

Owns where the business plays and how it wins over a multi-year horizon — portfolio choices, corporate development, strategic partnerships, and planning under uncertainty. Use this for a decision about which markets or businesses to be in, whether to build, buy, or partner, how to allocate capital across business…

cbrock84/headcount · 93 tokens

seo-strategy

Audits and improves organic search performance — technical health, site architecture, internal linking, structured data, and the content decisions that determine what can rank. Use this to run an SEO audit, diagnose why pages are not ranking or were deindexed, plan a site's URL and navigation structure, add structured…

cbrock84/headcount · 74 tokens

youtube-producer

Plans, packages, and scripts long-form video for retention and channel growth — idea selection, titles and thumbnails, script structure, and diagnosing why a video or channel underperforms. Use this for video ideas, packaging, scripting, a retention teardown, or channel strategy — including when someone describes a…

cbrock84/headcount · 86 tokens

chief-revenue-officer

Owns the revenue engine end to end: sales, monetization, pricing, customer success, retention, and partnerships. Use this for pricing and packaging decisions, sales strategy and coverage, forecast and pipeline health, churn and expansion, partner and channel strategy, or when marketing-sourced demand is not…

cbrock84/headcount · 80 tokens

support-operations

Designs and runs the support function — channels, queues, routing, staffing, service levels, quality, and the metrics that show whether it is working. Use this to set up or fix support operations, choose channels, size a team, set or renegotiate service levels, reduce cost per contact, diagnose long queues or poor…

cbrock84/headcount · 77 tokens

ai-ml-governance

Governs models and AI systems in production — intended use, evaluation, monitoring, human oversight, documentation, and the decision to deploy or retire. Use this before deploying a model or AI feature, when defining evaluation criteria, when a model's behavior has drifted, when assessing AI risk or regulatory…

cbrock84/headcount · 83 tokens