pickup-handoff

pickup-handoff is a skill for Claude Code from jtsternberg/claude-plugins. It costs 43 tokens per session (1,147 once invoked), scanned A, original, MIT.

A way to resume software work from a handoff file or a pending handoff issue. A handoff is a written record of what a previous agent understood and what remains to do.

In plain words
What is it for?
Finding the specified handoff, reading it once, explaining the current situation, and continuing the work from the recorded point.
Why use it?
It helps a new session recover the project context without repeating the earlier investigation. It also directs the agent to treat the repository as the current source of truth after reading the handoff.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents.

Part of the handoff plugin — 2 skills shipped together

Good fit Finding the specified handoff, reading it once, explaining the current situation, and continuing the work from the recorded point.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jtsternberg/claude-plugins/pickup-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 jtsternberg/claude-plugins --skill pickup-handoff
Clone the repo
git clone --depth 1 https://github.com/jtsternberg/claude-plugins

Made for: Claude Code.

Or install handoff, the plugin that ships this one along with the rest of its 2 skills.

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 pickup-handoff

README.md
[![agentmods](https://agentmods.dev/badge/skills/jtsternberg/claude-plugins/pickup-handoff/github.svg)](https://agentmods.dev/skills/jtsternberg/claude-plugins/pickup-handoff)
Your own site
<a href="https://agentmods.dev/skills/jtsternberg/claude-plugins/pickup-handoff"><img src="https://agentmods.dev/badge/skills/jtsternberg/claude-plugins/pickup-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 pickup-handoff

Your own site · 80×15
<a href="https://agentmods.dev/skills/jtsternberg/claude-plugins/pickup-handoff"><img src="https://agentmods.dev/badge/skills/jtsternberg/claude-plugins/pickup-handoff.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,147 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00043 $0.01147
Opus 5 $0.00022 $0.00574
Sonnet 5 $0.00009 $0.00229
Haiku 4.5 $0.00004 $0.00115

Measured 8d ago against content hash 1e0636b32980, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

pickup-handoff scanned grade A with 0 findings 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 8d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/handoff/skills/pickup-handoff/SKILL.md · 62 lines

How it starts

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

Pickup Handoff

Resume work from a handoff written by a previous agent. The companion handoff skill generates the correct pickup invocation for the active harness.

Assume the user has NOT read the handoff. They are handing you a pointer and expecting you to get up to speed and tell them what's going on. Don't silently continue — surface your understanding and plan first.

The handoff is a boot artifact, not a living document. Read it once, boot from it, then work from the repo — the repo is the source of truth from that moment on. Never update a handoff after reading it:

  • Don't append progress to it.
  • Don't "keep it current" as you work.
  • Don't edit it "for the next agent" — writing a fresh handoff at session end is the handoff skill's job, not an edit to this one.

Steps

  1. Find the handoff.

    If $ARGUMENTS holds an identifier, that IS the handoff — go straight to step 2. The handoff skill emits it precisely so this step costs one command:

    • looks like a beads id (e.g. myproject-20xu) → bd show <id>
    • looks like a path → Read it

    Do not also glob for HANDOFF*.md, list open pending-handoff: issues, or check the branch — you were told which one. Skip all of it. Only fall through to the search below if the identifier turns out not to resolve, and say so when you do.

    With no argument, search in this order:

    • HANDOFF*.md in the current working directory — in a git repo, prefer the one matching the current branch (git branch --show-current); otherwise fall back to HANDOFF.md.
    • If bd is available (command -v bd >/dev/null 2>&1 && [ -d .beads ]): open issues titled pending-handoff:bd list --status open,in_progress --title-contains "pending-handoff:" --json.
    • Multiple candidates and no clear match → list them and ask which to use.
  2. Read it in full (file, or bd show <id>).

  3. Reconcile against reality. The doc describes the past; check the present. In a git repo (git rev-parse --git-dir succeeds):

    • If it has an Anchor section, run git log --oneline <anchor-sha>..HEAD — report "N commits since the handoff was written" and what they touched.
    • Run git status; spot-check the doc's "Files Changed" claims.
    • Note anything the doc claims that the repo contradicts.

Read the full file on GitHub · 62 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. 8d ago First seen · 62 lines · 43 tokens per session scan A 1e0636b32980

Subscribe to this mod's changes

pickup-handoff is a skill published in the GitHub repository jtsternberg/claude-plugins (5 stars, last pushed 4d ago), licensed MIT. It adds 43 tokens to every session and 1,147 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens