Context
FORGE Phase 1 (manual mode) returned only 1 task (the epic itself) instead of the expected 7 tasks for Block 8. The prompt was 4,975 chars with generic acceptance criteria — clearly wrong.The Bug
Block issue bodies contained task tables with inline numbering (8.1, 8.2, …) instead of GitHub issue references (#71, #72, …). FORGE’s “Parse Block for Tasks” node uses regex #(\d+) to extract task issue numbers. Inline 8.1 patterns don’t match — FORGE falls back to using the epic issue as the sole task.
Before fix (block #30 body):
The Fix
Scripted patch via GitHub API — all 15 open blocks updated in one pass using the task-to-issue mapping fromgh api. The script maps TASK X.Y issue titles to their issue numbers, then regex-replaces | X.Y | with | #num | in each block body.
After fix: FORGE correctly extracted 7 tasks with individual acceptance criteria and file targets. Prompt grew from 4,975 to 11,336 chars.