Continue working on an existing TEDS task
Resume work on an existing TEDS long-term task. The executor agent loads your task documentation, picks up from where you left off, and continues with mandatory logging after every action. Use this after checking `/teds-status` to resume paused or interrupted tasks.
/plugin marketplace add eternnoir/claude-tool/plugin install teds@claude-toolsLaunch the teds-executor agent to resume work on an existing long-term task.
/teds-continue task-id
# Continue specific task
/teds-continue 20250116-1430-refactor-auth
# List available tasks first
/teds-status
# Then continue one
/teds-continue 20250116-1430-migrate-database
The executor agent will:
manifest.yaml - Task infoplan.md - Execution planexecution_log.md - Recent actions (last 20 entries)knowledge_base.md - Accumulated learningsstatus.yaml - Current statenext_action in status.yamlIf you're resuming after a break, the agent will:
Example output:
📋 Resuming Task: refactor-auth (20250116-1430-refactor-auth)
Last session: 2 hours ago
Progress: 45% (Phase 2: Implementation)
Last action: Created new AuthService class
Status: Active (not blocked)
Next: Implement OAuth flow integration
Continue with next action? [y/n]
While working, the executor agent will:
execution_log.mdstatus.yaml on state changesknowledge_base.mdYou don't need to remind the agent to log—it's built into the system.
The agent automatically creates checkpoints:
/teds-checkpointCheckpoints are safe pause points where you can stop and resume later.
If the status shows blocked: true, the agent will:
/teds-status - View all tasks and their status/teds-checkpoint - Create a checkpoint now/teds-complete [task-id] - Finish and archive/teds-start [name] - Start a new task