From e37f1ccc75bc3ded5b1f259d9b19eefd4b0b3e17 Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Sat, 7 Mar 2026 03:13:46 +0000 Subject: [PATCH] fix: restore Decision Table broken by inserted Batch Strategies section The 'Batch Strategies for Decomposed Tasks' section (from PR #3000) was inserted in the middle of the Decision Table, splitting two rows ('Cron' and 'Migration') from the rest of the table. This caused those rows to render as plain text instead of table cells. Move the two orphaned rows back into the table and place the Batch Strategies section after the complete table. Closes #3031 --- .agents/tools/ai-assistants/headless-dispatch.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.agents/tools/ai-assistants/headless-dispatch.md b/.agents/tools/ai-assistants/headless-dispatch.md index 7c7fd03951..8b86c23f14 100644 --- a/.agents/tools/ai-assistants/headless-dispatch.md +++ b/.agents/tools/ai-assistants/headless-dispatch.md @@ -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) @@ -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