Home / mubit-ai / plugins · integrations/claude-code/skills/checkpoint/SKILL.md · GitHub

checkpoint skillA

checkpoint is agent-read markdown (skill) from mubit-ai/plugins: Save a named verbatim snapshot of this run; use when the user is about to do something risky..

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

Run the bundled script with the snapshot on stdin. It posts `POST /v2/control/checkpoint`
under this session's run, and nothing else:

```bash
node ${CLAUDE_PLUGIN_ROOT}/bin/admin.mjs checkpoint --data-dir "${MUBIT_CC_DATA_DIR:-${CLAUDE_PLUGIN_DATA}}" --label "<short name>" <<'SNAPSHOT'
<the snapshot>
SNAPSHOT
```

**`--data-dir "${MUBIT_CC_DATA_DIR:-${CLAUDE_PLUGIN_DATA}}"` is not optional.** A Bash tool
call does not inherit `CLAUDE_PLUGIN_DATA` — it arrives empty — so without the flag the script
has to guess which of several `mubit-memory*` directories the host is using, and either
refuses with `no_run` or acts on a run this session's hooks never touch. The host substitutes
`${CLAUDE_PLUGIN_DATA}` into this file before you read it, and the shell default around it
lets a session that pins `MUBIT_CC_DATA_DIR` keep its pin — the same order every hook resolves
in. Pass the whole expression straight through. Do not turn it into an `ENV=… node …` prefix:
that is no longer a `node` command and will stop for a permission prompt.

`--label` is required: a short name the user can ask for later. The snapshot is whatever is on
…

Read the whole file at its exact version.

How to install

Latest version
mdr add mubit-ai/plugins/checkpoint@git:20260904.252b54c
Exact content
mdr add mubit-ai/plugins/checkpoint@sha256:3b0bad3348b84a0f

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_mxcjtlu7xnegckr2.svg)](https://markdownregistry.com/a/art_mxcjtlu7xnegckr2)

0 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260904.252b54c latest2026-09-04 252b54c 3,815 BA view · diff
git:20260903.008c3052026-09-03 008c305 3,024 BA view · diff
git:20260903.43760e12026-09-03 43760e1 3,202 BA view · diff
git:20260824.f3534e52026-08-24 f3534e5 2,744 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (3815 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

mubit-ai/plugins · 3 stars · license Apache-2.0 · pushed 2026-09-24 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_mxcjtlu7xnegckr2
GET https://markdownregistry.com/api/v1/resolve?ref=mubit-ai/plugins/checkpoint
GET https://markdownregistry.com/api/v1/blob/3b0bad3348b84a0f7f3a30f4cad2da5e9806305e02a0243d6859c4b3584373b9

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from mubit-ai/plugins

activity skill
mubit-ai/plugins · integrations/claude-code/skills/activity/SKILL.md · List or export what this instance holds for a run; use when the user wants the audit record, not an answer.
git:20260903.008c305 · audit A · 3 stars
auth skill
mubit-ai/plugins · integrations/claude-code/skills/auth/SKILL.md · Sign in to Mubit and store an API key; use when the plugin reports auth_failed or a key was rotated.
git:20260903.008c305 · audit A · 3 stars
dashboard skill
mubit-ai/plugins · integrations/claude-code/skills/dashboard/SKILL.md · Open the local Mubit dashboard — turns, what was injected into each, what it earned, and every lesson's record; use…
git:20260909.b8e67cc · audit A · 3 stars
doctor skill
mubit-ai/plugins · integrations/claude-code/skills/doctor/SKILL.md · Diagnose connectivity, memory health and stuck ingest; use when memory looks empty or the status line shows a failure.
git:20260903.008c305 · audit A · 3 stars
forget skill
mubit-ai/plugins · integrations/claude-code/skills/forget/SKILL.md · Delete a lesson, or down-weight one that is merely wrong; use when asked, after saying it cannot be undone.
git:20260904.252b54c · audit A · 3 stars
handoff skill
mubit-ai/plugins · integrations/claude-code/skills/handoff/SKILL.md · Hand work to another agent through Mubit, list the handoffs open in this run, or answer one with a verdict; use when a…
git:20260907.e52fcef · audit A · 3 stars
import skill
mubit-ai/plugins · integrations/claude-code/skills/import/SKILL.md · Backfill Mubit memory from the Claude Code and Codex transcripts already on this machine, so a fresh install knows what…
git:20260908.1e66fe6 · audit F · 3 stars
memory-health skill
mubit-ai/plugins · integrations/claude-code/skills/memory-health/SKILL.md · Report what is actually stored: counts, staleness, contradictions; use when the question is whether anything was ever…
git:20260903.008c305 · audit A · 3 stars
pin skill
mubit-ai/plugins · integrations/claude-code/skills/pin/SKILL.md · Pin a constraint for the rest of this run, shown on every prompt; use when a rule ends with the task, and remember for…
git:20260907.e52fcef · audit A · 3 stars
recall skill
mubit-ai/plugins · integrations/claude-code/skills/recall/SKILL.md · Search Mubit memory for lessons, rules, facts or past work; use when the injected memory is not enough.
git:20260903.008c305 · audit A · 3 stars
reflect skill
mubit-ai/plugins · integrations/claude-code/skills/reflect/SKILL.md · Extract lessons from this session's activity now; use when the user wants them banked before session end or asks what…
git:20260904.252b54c · audit A · 3 stars
remember skill
mubit-ai/plugins · integrations/claude-code/skills/remember/SKILL.md · Save one durable lesson, rule or preference; use when the user states a standing preference or an approach fails in a…
git:20260903.008c305 · audit A · 3 stars

Every file in mubit-ai/plugins

Other files named checkpoint

checkpoint skill
jmagly/aiwg · agentic/code/addons/aiwg-utils/skills/checkpoint/SKILL.md · Create, list, or recover mid-workflow checkpoints so interrupted work resumes from a known-good position
git:20260430.6d8a12e · audit A · 211 stars
checkpoint skill
shweta-mishra-ai/tokenmizer · .claude-plugin/skills/checkpoint/SKILL.md · Save the current session to TokenMizer graph memory. Creates a persistent checkpoint with all tasks, decisions, files…
git:20260911.15f5b03 · audit A · 32 stars
checkpoint skill
derive-to/derive · .claude/skills/checkpoint/SKILL.md
git:20260717.5a980e6 · audit C · 28 stars
checkpoint skill
ymm-oss/fsl · .claude/skills/checkpoint/SKILL.md · Reconcile and save the current FSL task state before compaction, clearing, handoff, or ending substantial work.
git:20260802.de79983 · audit A · 27 stars
checkpoint skill
ymm-oss/fsl · .agents/skills/checkpoint/SKILL.md · Reconcile tasks/active.md with Git, changed files, and observed verification before compaction, clearing, or handoff.
git:20260802.de79983 · audit A · 27 stars
checkpoint skill
chainreactors/ioa · skills/checkpoint/SKILL.md · Human-in-the-loop review protocol. Use when execution reaches an approval boundary that requires human judgment before…
git:20260608.9514d23 · audit A · 24 stars
checkpoint skill
qwerfunch/cladding · plugins/antigravity/skills/checkpoint/SKILL.md · Record a feature checkpoint event pinning the current git HEAD plus a spec digest, so a later rollback can restore the…
git:20260905.d56eea5 · audit B · 16 stars
checkpoint skill
qwerfunch/cladding · plugins/codex/skills/checkpoint/SKILL.md · Record a feature checkpoint event pinning the current git HEAD plus a spec digest, so a later rollback can restore the…
git:20260905.d56eea5 · audit B · 16 stars

Browse by kind, by grade A, or by owner.