Skip to content

Commit cad3d45

Browse files
author
Corellis
committed
Update tutorial with GoalOps, proactive engine, new skills (P2 #20)
1 parent 119513c commit cad3d45

1 file changed

Lines changed: 30 additions & 1 deletion

File tree

docs/tutorial-3-person-team.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,11 +305,40 @@ company-skills/
305305
├── deploy/
306306
│ └── SKILL.md # "Deploy to staging" → run your deploy script
307307
└── onboarding/
308-
└── SKILL.md # "New hire checklist" → step-by-step guide
308+
└── SKILL.md # "New hire checklist" → step-by-step guide
309309
```
310310

311311
Run `./scripts/sync-company-skills.sh` after adding new skills.
312312

313+
The built-in skill templates in `templates/skills/` include goal-participant, proactive-task-engine, task-autopilot, coding-workflow, and more. Copy any you want to `company-skills/` and register in `manifest.json`.
314+
315+
### Try GoalOps
316+
317+
Give your controller a multi-person goal:
318+
319+
```
320+
You: "goal: Build a customer feedback dashboard by Friday"
321+
```
322+
323+
The controller will:
324+
1. Decompose into sub-goals (backend API, frontend UI, data pipeline)
325+
2. Assign to alice, bob, carol based on their capabilities
326+
3. Create task board entries and Slack threads
327+
4. Monitor progress and nudge stuck lobsters
328+
329+
See `templates/controller/goal-ops/SKILL.md` for the full protocol.
330+
331+
### Enable proactive task discovery
332+
333+
Add the daily cron so lobsters proactively find work:
334+
335+
```bash
336+
# Add to crontab (or see crontab.example for all recommended jobs)
337+
0 9 * * * cd $(pwd) && bash scripts/proactive-cron.sh
338+
```
339+
340+
Lobsters will scan their task boards each morning and propose items they can pick up.
341+
313342
### Scale up
314343

315344
Adding more team members? Just tell your controller:

0 commit comments

Comments
 (0)