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.
npx skills add joelbrilliant/agentic-delivery-skills --skill context-continuity-handoffgit clone --depth 1 https://github.com/joelbrilliant/agentic-delivery-skillsWrote 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.
[](https://agentmods.dev/skills/joelbrilliant/agentic-delivery-skills/context-continuity-handoff)<a href="https://agentmods.dev/skills/joelbrilliant/agentic-delivery-skills/context-continuity-handoff"><img src="https://agentmods.dev/badge/skills/joelbrilliant/agentic-delivery-skills/context-continuity-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.
<a href="https://agentmods.dev/skills/joelbrilliant/agentic-delivery-skills/context-continuity-handoff"><img src="https://agentmods.dev/badge/skills/joelbrilliant/agentic-delivery-skills/context-continuity-handoff.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00052 | $0.00546 |
| Opus 5 | $0.00026 | $0.00273 |
| Sonnet 5 | $0.00010 | $0.00109 |
| Haiku 4.5 | $0.00005 | $0.00055 |
Grade A, and why
context-continuity-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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Context Continuity Handoff
Overview
Use this skill when an agent session may be compressed, reset, handed off, or resumed later.
The goal is not to save everything. The goal is to save the minimum state needed to continue without repeating work or losing decisions.
When to Use
- Context compaction is near.
- A different agent will continue the work.
- A long-running task pauses overnight.
- A gateway or CLI session must reset.
- The user asks what was decided or what remains.
- Work spans multiple repos, branches, services, or agents.
Handoff Structure
Use this exact shape:
## Active Task
[Most recent unfulfilled user request]
## Goal
[One paragraph]
## Constraints
[Durable rules and user preferences that matter]
## Completed Actions
[Numbered, evidence-backed actions]
## Active State
[Repo, branch, commit, services, dirty state, running jobs]
## In Progress
[Only current unfinished work]
## Blocked
[Blocker, owner, what would unblock]
## Key Decisions
[Decisions, not every discussion]
## Resolved Questions
[Questions that no longer need asking]
## Pending User Asks
[Direct user asks still unanswered]
## Relevant Files
[Paths and why they matter]
## Remaining Work
[Concrete next steps]
## Critical Context
[Things future agent must not miss]
What to Preserve
Preserve:
- active user request;
- decisions and signoffs;
- constraints and safety rules;
- repo/branch/commit/runtime state;
- exact evidence already gathered;
- blockers and next commands;
- what not to touch.
Do not preserve:
- raw logs unless needed;
- stale todos;
- every tool call;
- secrets;
- temporary speculation;
- solved confusion.
Quality Bar
A good handoff lets a fresh agent answer:
- What is the task?
- What has already been done?
- What is safe to touch?
- What should not be repeated?
- What is the next tool call?
- What evidence exists?
Anti-patterns
- Handoff says "continue work" but not what work.
- Long narrative with no active state.
- Losing branch/commit/service details.
- Preserving old instructions that conflict with current user request.
- Recording secrets or credentials.
- Treating completed task history as future instructions.
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.
- 10d ago First seen · 108 lines · 52 tokens per session scan A a377c573c0df
context-continuity-handoff is a skill published in the GitHub repository joelbrilliant/agentic-delivery-skills (2 stars, last pushed 3mo ago), licensed MIT. It adds 52 tokens to every session and 546 once invoked, about $0.0003 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.
Other skills, from other repositories
immune
Hybrid adaptive memory: Cheatsheet (positive patterns pre-generation) and Immune (negative patterns post-generation) with Hot/Cold tiered auto-learning. Triggers on: "scan for errors", "immune scan", "check output quality", "antibody scan". NOT for PR review (use pr-review) or repo audits (use repo-sentinel).
usage-audit
Audit a Claude Code setup for token waste and context bloat. Checks MCP servers, CLAUDE.md, skills, and settings against bloat filters. Triggers on: "audit my context", "usage audit", "token audit", "context bloat". NOT for codebase audits.
campaign-operations-knowledge-builder
A campaign-operations knowledge base that organizes campaign goals, user journeys, channel responsibilities, materials, timing, risk plans, and review findings.
organization-knowhow-knowledge-builder
A tool for turning team procedures, delivery processes, responsibilities, project reviews, FAQs, decision rules, and escalation steps into an AI-ready knowledge base.
personal-ip-knowledge-builder
A tool for turning interviews, chats, résumés, public content, business materials, case studies, and existing documents into a long-term personal knowledge base for an AI-assisted public profile.
update-agent-context
This skill should be used to keep CLAUDE.md, AGENTS.md, and the skill files themselves compact, current, and internally consistent. It runs in three phases: Phase 1 performs a one-time structural refactor of CLAUDE.md using a Karpathy-inspired behavioral scaffold and derives AGENTS.md from it by stripping Claude…