superplan-handoff

A handoff checkpoint for pausing work, changing owners, or protecting progress when an agent may lose context.

In plain words
What is it for?
Use it to write concise continuation notes, including useful commands, files, runtime state, blockers, and assumptions.
Why use it?
It records the current goal, verified facts, risks, and exact next step so another person or agent can resume without rediscovering the situation.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/superplan-md/superplan-plugin/superplan-handoff
Any agent
npx skills add superplan-md/superplan-plugin --skill superplan-handoff
Clone the repo
git clone --depth 1 https://github.com/superplan-md/superplan-plugin

Made for: Claude Code, Codex.

Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 303 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00036 $0.00303
Opus 5 $0.00018 $0.00151
Sonnet 5 $0.00007 $0.00061
Haiku 4.5 $0.00004 $0.00030

Measured 2d ago against content hash 8371acf8a0ee, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

superplan-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 2d 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.

output/skills/superplan-handoff/SKILL.md · 50 lines

What it actually says

Handoff Checkpointing

Overview

Preserve momentum when work changes hands.

Trigger

Use when:

  • an agent is stopping before the work is fully done
  • another agent or human needs to continue safely
  • the task is long-running enough that future context loss is likely

Core Rules

  • capture the current objective and runtime state
  • list what changed, what was verified, and what remains risky
  • include the exact next step, not just a summary
  • include the most useful commands or files to resume from
  • keep the checkpoint concise and scannable

Good Checkpoint Shape

  • current task or change
  • verified evidence
  • open risks or blockers
  • next recommended command or edit
  • assumptions that must not be forgotten

Forbidden Behavior

  • dumping long transcripts
  • omitting what was actually verified
  • writing a handoff that still forces the next agent to rediscover the real next move

Handoff

Typical resume path:

  • superplan status --json
  • superplan run --json
  • use the task returned by superplan run --json
  • superplan task inspect show <task_ref> --json only when the handoff points to a specific task you need to inspect directly
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. 2d ago First seen · 50 lines · 36 tokens per session scan A 8371acf8a0ee

Subscribe to this mod's changes

superplan-handoff is a skill published in the GitHub repository superplan-md/superplan-plugin (72 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 36 tokens to every session and 303 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-30.

Related

Other skills, from other repositories

archon

Autonomous multi-session campaign agent. Decomposes large work into phases, delegates to sub-agents, reviews output, and maintains campaign state across context windows. Use for work that spans multiple sessions and needs persistent state, quality judgment, and strategic decomposition.

SethGammon/Citadel · 54 tokens

evolve

Research-driven multi-cycle improvement director. Forms causal hypotheses about why scores are low, validates them with scout agents before attacking, dispatches axis-parallel fleet attacks, extracts transferable patterns, and runs indefinitely within a budget envelope. Accumulates a persistent belief model and…

SethGammon/Citadel · 60 tokens

improve

Autonomous quality improvement loop. Scores a target against a rubric, selects the highest-leverage axis, attacks it, verifies, documents, and loops. No pre-planning between iterations — each loop re-scores from scratch.

SethGammon/Citadel · 48 tokens

watch

File sentinel that monitors the working directory for changes and marker comments, then auto-triggers appropriate skills. Poll-based via git diff against the last scan commit. Writes intake items for batch processing and routes marker actions through /do. Use for automatic reactions to file changes; do NOT use for…

SethGammon/Citadel · 70 tokens

infra-audit

Reads docker-compose, env files, ORM configs, and connection strings to map current infrastructure. Flags missing layers (cache, queue, analytics) based on observed access patterns. Outputs a structured infrastructure manifest.

SethGammon/Citadel · 44 tokens

pr-watch

Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.

SethGammon/Citadel · 46 tokens