Skip to content

Commit ebaa2dd

Browse files
sjarmakclaude
andcommitted
fix: add ccb_ prefix variants to aggregate_status suite detection
run_selected_tasks.sh --benchmark creates run dirs like ccb_secure_opus_20260223_210902, but aggregate_status only recognized bare prefix patterns like secure_. Add ccb_{phase}_ prefix variants so these runs are properly detected and categorized. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a611acb commit ebaa2dd

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

scripts/aggregate_status.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,15 @@
5353

5454
DIR_PREFIX_TO_SUITE = {
5555
# SDLC phase suite prefixes (new naming: {phase}_{model}_{timestamp})
56+
# Also accept ccb_{phase}_ prefix from run_selected_tasks.sh --benchmark runs.
57+
"ccb_build_": "ccb_build",
58+
"ccb_debug_": "ccb_debug",
59+
"ccb_design_": "ccb_design",
60+
"ccb_document_": "ccb_document",
61+
"ccb_fix_": "ccb_fix",
62+
"ccb_secure_": "ccb_secure",
63+
"ccb_test_": "ccb_test",
64+
"ccb_understand_": "ccb_understand",
5665
"build_": "ccb_build",
5766
"debug_": "ccb_debug",
5867
"design_": "ccb_design",

0 commit comments

Comments
 (0)