.claude/skills/checkpoint-manager/SKILL.md
Session checkpoint management: save, restore, list, clear state snapshots
npx skillsauth add alfredolopez80/multi-agent-ralph-loop checkpoint-managerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
~/.claude/settings.json or CLI/env varsANTHROPIC_DEFAULT_*_MODEL env varsManage session state checkpoints for the Ralph orchestration system.
/checkpoint save "before-refactor"
@cp save "Pre-deployment state"
/checkpoint restore "before-refactor"
@cp restore cp_20260107_143015
/checkpoint list
@cp list
/checkpoint clear "old-checkpoint"
@cp clear --all
Checkpoints are stored in ~/.ralph/checkpoints/ as JSON files.
✅ Checkpoint saved: cp_20260214_143015_before-refactor
📁 Location: ~/.ralph/checkpoints/cp_20260214_143015.json
⏱️ Expires: 24 hours (2026-02-15 14:30:15)
╭───────────────────────────────────────────────────────╮
│ CHECKPOINTS (3) │
├───────────────────────────────────────────────────────┤
│ cp_20260214_143015 │ before-refactor │ 2h ago │
│ cp_20260214_120000 │ pre-deployment │ 5h ago │
│ cp_20260213_180000 │ feature-complete │ 1d ago │
╰───────────────────────────────────────────────────────╯
/checkpoint save "Before risky changes"
↓ (make changes)
/checkpoint restore "Before risky changes" # if needed
↓ (or continue)
/checkpoint clear "Before risky changes" # cleanup
/orchestrator - Full orchestration workflow/iterate - Iterative execution with checkpointing/gates - Quality validation before checkpointsdevelopment
Living knowledge base management. Actions: search (query vault), save (store learning), index (update indices), compile (raw->wiki->rules graduation), init (create vault structure). Follows Karpathy pipeline: ingest->compile->query. Use when: (1) searching accumulated knowledge, (2) saving learnings, (3) compiling raw notes into wiki, (4) initializing a new vault. Triggers: /vault, 'vault search', 'knowledge base', 'save learning'.
testing
Produce a verifiable technical specification before coding. 6 mandatory sections: Interfaces, Behaviors, Invariants (from Aristotle Phase 2), File Plan, Test Plan, Exit Criteria (executable bash commands + expected results). Use when: (1) before implementing features with complexity > 4, (2) as Step 1.5 in orchestrator workflow, (3) when requirements need formalization. Triggers: /spec, 'create spec', 'write specification', 'technical spec'.
testing
Pre-launch shipping checklist orchestrating /gates, /security, /browser-test, /perf. Ensures nothing ships without passing all quality checks. Use when: (1) before deploying, (2) before merging to main, (3) before release. Triggers: /ship, 'ship it', 'ready to deploy', 'pre-launch check'.
development
Performance optimization skill. Core Web Vitals via Lighthouse, bundle size analysis, metrics tracking over time. Use when: (1) optimizing frontend performance, (2) analyzing bundle size, (3) tracking metrics regression. Triggers: /perf, 'performance audit', 'core web vitals', 'bundle size'.