Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .agents/tools/ai-assistants/headless-dispatch.md
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,8 @@ runner-helper.sh run tester "Write tests for the changes"
| Generate tests for 5 modules | Parallel | Each module is independent |
| Plan → implement → verify | Sequential | Each step depends on previous |
| Decomposed subtasks (same parent) | Batch strategy | Use `batch-strategy-helper.sh` |
| Cron: daily report + weekly digest | Parallel | Independent scheduled tasks |
| Migration: schema → data → verify | Sequential | Each step depends on previous |

### Batch Strategies for Decomposed Tasks (t1408.4)

Expand All @@ -910,8 +912,6 @@ done
```

The helper respects `blocked_by:` dependencies and never includes blocked tasks in a batch. See `scripts/batch-strategy-helper.sh help` for full usage.
| Cron: daily report + weekly digest | Parallel | Independent scheduled tasks |
| Migration: schema → data → verify | Sequential | Each step depends on previous |

### Hybrid Pattern

Expand Down
Loading