@jamesaphoenix/tx-test-utils 0.6.0 → 0.7.0
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/README.md +11 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -207,7 +207,16 @@ read -p "Approve? [y/n] " && "$AGENT_CMD" "Execute plan.md"
|
|
|
207
207
|
tx done $task
|
|
208
208
|
```
|
|
209
209
|
|
|
210
|
-
|
|
210
|
+
```bash
|
|
211
|
+
# File-based: agent reads markdown, no CLI polling needed
|
|
212
|
+
AGENT_CMD=${AGENT_CMD:-claude} # or: codex
|
|
213
|
+
while true; do
|
|
214
|
+
tx md-export # materialize ready tasks to .tx/tasks.md
|
|
215
|
+
"$AGENT_CMD" "Read .tx/tasks.md and complete the highest priority task. When done, run: tx done <id>"
|
|
216
|
+
done
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
**The flow is yours.** Serial, parallel, swarm, human-in-loop, file-based. Your call.
|
|
211
220
|
|
|
212
221
|
---
|
|
213
222
|
|
|
@@ -289,6 +298,7 @@ tx update <id> # Update task fields
|
|
|
289
298
|
tx done <id> # Complete task
|
|
290
299
|
tx reset <id> # Reset to backlog
|
|
291
300
|
tx delete <id> # Delete task
|
|
301
|
+
tx md-export # Export tasks to markdown file (.tx/tasks.md)
|
|
292
302
|
tx block <id> <blocker> # Add dependency
|
|
293
303
|
tx unblock <id> <blocker> # Remove dependency
|
|
294
304
|
tx children <id> # List child tasks
|