Create a checkpoint in the current TEDS task
Save your current progress in a TEDS task. Create a manual checkpoint to safely pause and resume later, capturing what's done and what's next.
/plugin marketplace add eternnoir/claude-tool/plugin install teds@claude-toolsCreate an immediate checkpoint in the currently active TEDS task.
/teds-checkpoint [optional-task-id]
# Create checkpoint in current task context
/teds-checkpoint
# Create checkpoint for specific task
/teds-checkpoint 20250116-1430-refactor-auth
A checkpoint is a safe pause point that captures:
Think of it as a "save game" point—you can safely stop work and resume from here later.
The agent will:
execution_log.mdexecution_log.md:
### [HH:MM] - CHECKPOINT
- Phase: [current phase]
- Progress: [X%]
- Summary: [accomplishments]
- Next: [what remains]
last_checkpoint in status.yamlThe executor agent automatically creates checkpoints:
Manual checkpoints are useful when:
Good times to checkpoint:
Don't checkpoint:
To see all checkpoints in a task:
# View full execution log
cat workspace/active_tasks/[task-id]/execution_log.md | grep "CHECKPOINT"
Or use:
/teds-status [task-id]
This shows the last checkpoint time.
When you continue a task with /teds-continue, the agent automatically:
No special recovery command needed—it's built into the continue process.
/teds-continue [task-id] - Resume from checkpoint/teds-status - View last checkpoint time/teds-complete [task-id] - Finish task