@@ -42,21 +42,26 @@ Every task delegation includes THREE elements:
4242## ⚡ Quick Start (60 Seconds)
4343
4444``` bash
45- # 1. Setup
46- git clone https://github.com/T72/task-orchestrator.git
47- cd task-orchestrator
45+ # 1. In YOUR project root
46+ cd /path/to/your-project
47+
48+ # 2. Add tm from a release artifact or local install
49+ cp /path/to/task-orchestrator/tm ./tm
50+ chmod +x ./tm
51+
52+ # 3. Initialize Task Orchestrator in this project
4853./tm init
4954
50- # 2 . Set agent identity (required for coordination)
55+ # 4 . Set agent identity (required for coordination)
5156export TM_AGENT_ID=" orchestrator_agent"
5257
53- # 3 . Create AI Agent Workflow with Commander's Intent
58+ # 5 . Create AI Agent Workflow with Commander's Intent
5459BACKEND=$( ./tm add " Build auth API" --assignee backend_agent \
5560 -d " WHY: Secure foundation, WHAT: OAuth2/JWT/sessions, DONE: Users can login safely" | grep -o ' [a-f0-9]\{8\}' )
5661
5762FRONTEND=$( ./tm add " Create login UI" --assignee frontend_agent --depends-on $BACKEND | grep -o ' [a-f0-9]\{8\}' )
5863
59- # 4 . Watch Real-Time Orchestration
64+ # 6 . Watch Real-Time Orchestration
6065./tm watch # See instant updates as agents work
6166
6267# When backend completes, frontend auto-unblocks!
@@ -118,7 +123,15 @@ python3 docs/examples/multi_agent_workflow.py # Team coordination
118123## 🚀 Installation
119124
120125``` bash
121- # Requirements: Python 3.8+, 10MB disk space
126+ # Use in your own project
127+ cd /path/to/your-project
128+ cp /path/to/task-orchestrator/tm ./tm
129+ chmod +x ./tm
130+ ./tm init
131+ ```
132+
133+ ``` bash
134+ # Contributor path (develop task-orchestrator itself)
122135git clone https://github.com/T72/task-orchestrator.git
123136cd task-orchestrator
124137./tm init
0 commit comments