feat: add wave-based parallel task execution to Task Loop

This commit is contained in:
2026-03-07 01:02:14 -08:00
committed by Naomi Carrigan
parent 7a07958b65
commit f60e45e486
4 changed files with 439 additions and 117 deletions
+4 -1
View File
@@ -6,6 +6,7 @@ export interface PrdTask {
title: string;
prompt: string;
priority: "high" | "medium" | "low";
dependsOn?: string[];
}
export interface PrdFile {
@@ -31,7 +32,8 @@ Write the file to \`${workingDirectory}/hikari-tasks.json\` containing valid JSO
"id": "task-1",
"title": "<short descriptive title>",
"prompt": "<detailed prompt that Claude Code can execute to complete this task>",
"priority": "<high|medium|low>"
"priority": "<high|medium|low>",
"dependsOn": []
}
]
}
@@ -43,6 +45,7 @@ Guidelines:
- Prompts should be specific and actionable, not vague
- Order tasks logically (dependencies first)
- Assign priority: high for critical path, medium for features, low for polish/cleanup
- Fill in \`dependsOn\` with IDs of tasks that must complete before this one (use \`[]\` if none)
- Write only the JSON file — no explanations needed`;
}