Workspace checkpoint tools for Claude Code
npx claudepluginhub syi0808/chkptFast, content-addressable workspace checkpoints. Save and restore workspace snapshots without Git pollution.
Save and restore your entire workspace without touching Git.
chkpt is a fast, content-addressable checkpoint system. One chkpt save before a big refactor, dependency update, or AI agent run, and you can roll back anytime. Unlike git stash or temporary branches, chkpt captures everything (including untracked files), deduplicates content with XXH3-128 hashing, and compresses with LZ4. Snapshots are fast and take up little disk space.
node_modules, .venv, and similar directories.Benchmarked on MacBook Pro (Apple M2 Pro, 16 GB RAM, APFS SSD). Release build, median of 3 runs.
| Project | Files | Size | Cold Save | Incr. Save | Restore | Storage | Ratio | Incr. Storage (new data) |
|---|---|---|---|---|---|---|---|---|
| React | 6,879 | 34.4 MB | 0.26s | 0.05s | 0.03s | 19.5 MB | 1.7x | +2.5 MB (7.4 KB) |
| Rust | 58,760 | 195.9 MB | 2.04s | 0.33s | 0.18s | 96.0 MB | 2.0x | +15.8 MB (2.2 KB) |
| Linux kernel | 92,923 | 1.4 GB | 2.95s | 0.47s | 0.24s | 503.3 MB | 2.9x | +22.9 MB (25 KB) |
Cold Save = first checkpoint with empty store. Incr. Save = re-save after modifying 5 files. Storage = total
.chkptstore size after cold save (LZ4-compressed, content-deduplicated). Ratio = original size / storage size. Incr. Storage = total store growth per incremental save (includes metadata). Parenthesized value = actual new file content stored.
cargo install)npx)cargo install chkpt-cli
npx chkpt
npx @chkpt/mcp
# Add the marketplace
/plugin marketplace add syi0808/chkpt
# Install the plugin
/plugin install chkpt@chkpt-marketplace
This activates 4 MCP tools and the automation skill (/chkpt:chkpt).
# Save current workspace
chkpt save -m "before refactor"
# List checkpoints
chkpt list
# Restore to latest checkpoint
chkpt restore latest
# Preview restore without applying
chkpt restore <id> --dry-run
# Delete a checkpoint
chkpt delete <id>
# Include dependency directories (node_modules, .venv, etc.)
chkpt save --include-deps
| Tool | Description |
|---|---|
checkpoint_save | Save a workspace snapshot |
checkpoint_list | List available checkpoints |
checkpoint_restore | Restore to a checkpoint (dry-run supported) |
checkpoint_delete | Delete a checkpoint |
/chkpt:chkpt)Invoke /chkpt:chkpt in Claude Code to:
Workspace ~/.chkpt/stores/
┌──────────────┐ ┌──────────────────┐
│ src/ │ save → │ trees/ │
│ tests/ │ │ packs/ │
│ Cargo.toml │ ← restore │ catalog.sqlite │
└──────────────┘ │ index.bin │
└──────────────────┘
.chkptignore rulescatalog.sqlitecrates/
├── chkpt-core/ # Core library (scanner, store, index, ops)
├── chkpt-cli/ # CLI binary
├── chkpt-mcp/ # MCP stdio server
├── chkpt-napi/ # Node.js native bindings (NAPI)
├── chkpt-mcp-npm/ # @chkpt/mcp npm package
└── chkpt-plugin/ # Claude Code plugin