Fix task card step progress

This commit is contained in:
gsxdsm
2026-04-10 21:46:06 -07:00
parent 3b849c47d1
commit f2b08b6781
6 changed files with 72 additions and 40 deletions

View File

@@ -1215,6 +1215,11 @@ export class TriageProcessor {
triageLog.log(`${task.id} dependencies: ${parsedDeps.join(", ")}`);
}
const parsedSteps = await this.store.parseStepsFromPrompt(task.id);
if (parsedSteps.length > 0) {
taskUpdates.steps = parsedSteps;
}
const sizeMatch = written.match(/^\*\*Size:\*\*\s+(S|M|L)\b/m);
if (sizeMatch) {
taskUpdates.size = sizeMatch[1] as "S" | "M" | "L";