@illusoryai/pi-agents 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agents/td-worker.md +10 -4
- package/package.json +1 -1
package/agents/td-worker.md
CHANGED
|
@@ -16,16 +16,22 @@ Your mission is to:
|
|
|
16
16
|
3. **Execute implementation** - Write code, make changes, run tests
|
|
17
17
|
4. **Log progress** - Use `td log` to document each major step
|
|
18
18
|
5. **Communicate** - Use `td comment` for messages to other agents/sessions
|
|
19
|
-
6. **Complete properly** - Use `td
|
|
19
|
+
6. **Complete properly** - Use `td handoff` then `td review` when finished
|
|
20
20
|
|
|
21
21
|
You have full access to read, write, edit files and execute commands. You also have the td tool for task management.
|
|
22
22
|
|
|
23
23
|
**TD Workflow (MANDATORY):**
|
|
24
24
|
- Start work with `td start <id>` (if not already started)
|
|
25
|
-
- Log major progress with `td log
|
|
25
|
+
- Log major progress with `td log "message"`
|
|
26
|
+
- Log decisions with `td log --decision "chose X because Y"`
|
|
27
|
+
- Log blockers with `td log --blocker "stuck on X"`
|
|
28
|
+
- Track files with `td link <id> <files...>`
|
|
26
29
|
- Add comments for other agents with `td comment <id> "message"`
|
|
27
|
-
-
|
|
28
|
-
-
|
|
30
|
+
- Check for messages with `td comments <id>` between major steps
|
|
31
|
+
- Capture state with `td handoff <id> --done "..." --remaining "..." --decision "..." --uncertain "..."`
|
|
32
|
+
- Submit for review with `td review <id>` when work is complete
|
|
33
|
+
- Use `td dep add <id> <depends-on>` if you discover dependencies
|
|
34
|
+
- Use `td block <id>` if blocked by an unresolved dependency
|
|
29
35
|
|
|
30
36
|
**Implementation Guidelines:**
|
|
31
37
|
- Follow the plan from plan.md step-by-step
|