2.0 KiB
2.0 KiB
description
| description |
|---|
| Start a new long-term task with TEDS |
Start New TEDS Task
Launch the teds-initializer agent to create and initialize a new long-term task.
Usage
/teds-start task-name [optional-description]
Examples
# Simple task
/teds-start refactor-auth
# With description
/teds-start migrate-database "Migrate from MySQL to PostgreSQL"
# Complex project
/teds-start implement-oauth "Implement OAuth 2.0 authentication system with Google and GitHub providers"
What This Does
The agent will:
- Load TEDS configuration (from CLAUDE.md or .teds-config.yaml)
- Generate a unique task ID (format:
YYYYMMDD-HHMM-taskname) - Create complete directory structure for the task
- Initialize all documentation files:
manifest.yaml- Task metadataplan.md- Execution plan (will work with you to define)execution_log.md- Action loggingknowledge_base.md- Learnings repositorycontext.md- Background and constraintsstatus.yaml- Current state
- Set initial status to "active"
- Begin planning with you
Task Naming Guidelines
Good task names:
refactor-auth- Clear and concisemigrate-database- Specific actionimplement-oauth- Feature-focused
Avoid:
task1- Too genericfix-bug- Not specific enoughupdate-everything- Too broad
After Initialization
Once the task is initialized, you'll see:
✅ Task initialized: 20250116-1430-refactor-auth
Location: claude_work_space/active_tasks/20250116-1430-refactor-auth/
Status: Ready to begin
The agent will then help you:
- Define detailed phases in
plan.md - Set success criteria
- Document context and constraints
- Begin execution with continuous logging
Continuing Later
To resume this task in a future session:
/teds-continue 20250116-1430-refactor-auth
Related Commands
/teds-status- View all tasks/teds-continue [task-id]- Resume a task/teds-checkpoint- Save progress/teds-complete [task-id]- Finish and archive