Format paired execution refactor files

This commit is contained in:
ejclaw
2026-04-07 00:45:55 +09:00
parent cbb6bc97c7
commit 48592d97ed
4 changed files with 21 additions and 17 deletions

View File

@@ -17,8 +17,7 @@ export function classifyVerdict(summary: string | null | undefined): Verdict {
if (!cleaned) return 'continue';
const firstLine = cleaned.split('\n')[0].trim();
if (/^\*{0,2}BLOCKED\*{0,2}\b/i.test(firstLine)) return 'blocked';
if (/^\*{0,2}NEEDS_CONTEXT\*{0,2}\b/i.test(firstLine))
return 'needs_context';
if (/^\*{0,2}NEEDS_CONTEXT\*{0,2}\b/i.test(firstLine)) return 'needs_context';
if (/^\*{0,2}DONE_WITH_CONCERNS\*{0,2}\b/i.test(firstLine))
return 'done_with_concerns';
if (/^\*{0,2}DONE\*{0,2}\b/i.test(firstLine)) return 'done';