Start orchestrating AI agents in under 5 minutes.
# In your own project root
cd /your/project
# Add tm from release artifact or local install
cp /path/to/task-orchestrator/tm ./tm
chmod +x tm
./tm initgit clone https://github.com/T72/task-orchestrator.git
cd task-orchestrator
chmod +x tm
./tm init- Python 3.8+ (no dependencies!)
- Linux, macOS, or Windows (via WSL)
- 10MB disk space
./tm add "Build authentication system"
# Output: Task created with ID: a1b2c3d4./tm list./tm update a1b2c3d4 --status in_progress
./tm complete a1b2c3d4Create tasks that depend on each other:
# Create parent task
BACKEND=$(./tm add "Build API" | grep -o '[a-f0-9]\{8\}')
# Create dependent task
FRONTEND=$(./tm add "Build UI" --depends-on $BACKEND | grep -o '[a-f0-9]\{8\}')
# View dependency chain
./tm listAssign tasks to specialized agents:
# Assign to backend specialist
./tm add "Create database schema" --assignee backend_agent
# Assign to frontend specialist
./tm add "Design user interface" --assignee frontend_agent
# View agent workload
./tm list --assignee backend_agentUse the WHY/WHAT/DONE pattern for clear communication:
./tm add "Implement auth" --context "WHY: Secure user data
WHAT: Login, 2FA, sessions
DONE: Users can login securely"Watch for task updates:
# In terminal 1: Start monitoring
./tm watch
# In terminal 2: Make changes
./tm complete a1b2c3d4
# Terminal 1 shows: Task a1b2c3d4 completed!- Learn core features: Read the Core Features Guide
- Advanced workflows: See Advanced Usage Guide
- AI integration: Check AI Agent Integration
- Troubleshooting: Visit Troubleshooting Guide
| Command | Description |
|---|---|
./tm init |
Initialize database |
./tm add "task" |
Create task |
./tm list |
View all tasks |
./tm show ID |
View task details |
./tm update ID --status STATUS |
Update status |
./tm complete ID |
Mark complete |
./tm watch |
Monitor changes |
Getting started takes 5 minutes. Master orchestration in 30.