checkpoint

checkpoint is a skill for Claude Code from digital-stoic-org/agent-skills. It costs 0 tokens per session (2,314 once invoked), scanned A, original, MIT.

A session-saving tool that records both a summary and exact important wording from a long coding conversation in a checkpoint file.

In plain words
What is it for?
Use it before clearing a long session or when preserving the precise reasoning and decisions will matter later.
Why use it?
A summary alone can lose constraints, rejected approaches, corrections, and open questions when the conversation is cleared or resumed.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; mentions CLAUDE.md; mentions subagents.

Part of the dstoic plugin — 14 skills shipped together

Good fit Use it before clearing a long session or when preserving the precise reasoning and decisions will matter later.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/digital-stoic-org/agent-skills/checkpoint
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 digital-stoic-org/agent-skills --skill checkpoint
Clone the repo
git clone --depth 1 https://github.com/digital-stoic-org/agent-skills

Made for: Claude Code.

Or install dstoic, the plugin that ships this one along with the rest of its 14 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 checkpoint

README.md
[![agentmods](https://agentmods.dev/badge/skills/digital-stoic-org/agent-skills/checkpoint.svg)](https://agentmods.dev/skills/digital-stoic-org/agent-skills/checkpoint)
Your own site
<a href="https://agentmods.dev/skills/digital-stoic-org/agent-skills/checkpoint"><img src="https://agentmods.dev/badge/skills/digital-stoic-org/agent-skills/checkpoint.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,314 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 6
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
  • medium Excessive Agency · line 114
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00000 $0.02314
Opus 5 $0.00000 $0.01157
Sonnet 5 $0.00000 $0.00463
Haiku 4.5 $0.00000 $0.00231

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

Security

Grade A, and why

checkpoint 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/extract_turns.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

dstoic/skills/checkpoint/SKILL.md · 118 lines

How it starts

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

Checkpoint

Write CHECKPOINT-{stream}-llm.md: a self-contained session snapshot with two layers.

  • Summary — a synthesized, reworded view of state (goal, next steps, decisions, hot files). Cheap to regenerate; good enough for orientation.
  • Meat — the verbatim signal that reconstruction would lose: the exact phrasing of constraints, rejected paths + why, subtle corrections, live reasoning threads, learnings, pivots, open questions. Copied byte-for-byte from the transcript, never reworded.

Core contract (two paths, both keep model text out of the meat):

  1. Author trailers (primary) — each turn self-tags its own signal in an <!-- ckpt … --> comment as it's written; the skill just harvests them (0 LLM, 0 cost, highest fidelity — the author distilled live). Requires the global CLAUDE.md rule; see reference.md § Trailer harvest.
  2. Extractive triage (fallback / user-side) — the LLM DESIGNATES which turns matter (returns ids); a script COPIES their text verbatim. Covers the user's exact words (untaggable) and any session predating the rule. See reference.md § Why.

Meat text NEVER passes through a model in either path — no hallucination, no output cost.

Architecture — fork the pipeline, keep the offer in main

The pipeline (index → harvest → triage → collect → write) is mechanical and noisy: Bash output, a triage round-trip, assembler byte-counts. None of it belongs in the main conversation. So run Phases 1–3 in a fork; keep Phase 4 (report relay + /clear offer) in main.

MAIN (this skill, context: main)
 └─ spawn ONE fork (Agent, subagent_type: "fork" — inherits full session context)
     └─ fork runs Phases 1–3: index, harvest, triage (may spawn its own Task sub-agent),
        collect, synthesize summary, WRITE CHECKPOINT-{stream}-llm.md, clean up $TMP
     └─ fork returns ONLY a compact report string (never the meat, never tool output):
        path · #meat turns · histogram(type+weight) · status(full|lean|parse-failed)
 └─ MAIN receives that string → Phase 4: relay it + AskUserQuestion /clear offer

Read the full file on GitHub · 118 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 118 lines · 0 tokens per session scan A 7a3a7a360e20

Subscribe to this mod's changes

checkpoint is a skill published in the GitHub repository digital-stoic-org/agent-skills (20 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,314 tokens. 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

Cortex

Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…

danielmiessler/LifeOS · 196 tokens

Migrate

Intakes external content, classifies chunks against LifeOS taxonomy, commits with provenance. Sources: .md/.txt, stdin, LifeOS dirs, CLAUDE.md/Cursor/OpenAI Custom Instructions, Obsidian/Notion/Apple Notes exports. MigrateScan classifies → routing table. MigrateApprove with…

danielmiessler/LifeOS · 158 tokens

daily-briefing

Proactive daily briefing that fires on a recurring schedule, pulls recent memory and workspace context, composes a structured summary (action items, progress, radar, next steps), and delivers it to all active channels. Enable with a time like "set up my daily briefing at 9am". Disable, reschedule, or check status at…

vellum-ai/vellum-assistant · 75 tokens

company-brain

Your team's shared, AI-ready knowledge base — people, companies, meetings, SOPs, and decisions structured so Claude can answer questions on your team's behalf. Team-scope sibling to second-brain (which is personal-scope). Seven modes — capture (drop something into the right structured dir), compile (process into wiki…

coreyhaines31/makerskills · 322 tokens

calendar

Manage calendar events via CalDAV (Google/iCloud/Nextcloud) or local ICS files. View, create, and query events.

fuyuxiang/echo-agent · 29 tokens

email-assistant

Read, search, draft, and send emails via Himalaya CLI or Python IMAP/SMTP. Requires email account configuration.

fuyuxiang/echo-agent · 29 tokens