From checkpoint
Checkpoint management for AI instruction systems, tracking task progress
How this skill is triggered — by the user, by Claude, or both
Slash command
/checkpoint:checkpointThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Language:** Respond in the user's language. If unclear, default to the language of the user's message.
Language: Respond in the user's language. If unclear, default to the language of the user's message.
Runs the AI instruction system checkpoint script and manages task progress.
/checkpoint <command> [arguments]
start <name> <steps> - Start a new task (task ID is auto-generated)progress <task-id> <current> <total> <status> <next> - Report progress (requires: instruction in use)complete <task-id> <result> - Complete a task (requires: all instructions completed)error <task-id> <message> - Report an errorinstruction-start <path> <purpose> [task-id] - Start using an instructioninstruction-complete <path> <result> [task-id] - Complete instruction usagepending - Show list of incomplete taskssummary <task-id> - Show detailed task historyhelp - Show help messageRun checkpoint command
bash scripts/checkpoint.sh $ARGUMENTS
Display results
/checkpoint pending
/checkpoint start "Implement new feature" 5
/checkpoint progress TASK-123456-abc123 2 5 "Design complete" "Start implementation"
/checkpoint instruction-start "instructions/ja/presets/web_api_production.md" "REST API development" TASK-123456-abc123
/checkpoint complete TASK-123456-abc123 "Implemented 3 API endpoints"
pending commandstart commandprogress command can only be run while an instruction is in usenpx claudepluginhub dobachi/claude-skills-marketplace --plugin checkpointSaves and resumes state for multi-phase commands like /debug, /epic, /feature, /implement, and /plan, enabling work to survive session interruptions.
Orchestrates multi-step workflows using Claude Code's native Task system (TaskCreate, TaskUpdate, TaskGet, TaskList) for lifecycle management, parallel execution, crash recovery, and progress visibility. Use for 3+ step workflows with dependencies.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.