Skip to content

Commit c676e91

Browse files
aid-ninjaclaude
andcommitted
fix: use 'initializing' as preflight phase label
'identifying prerequisites' is just initializing — no need for a separate label. Reverts the test regex back to the original set. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 65b895e commit c676e91

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

site/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1564,7 +1564,7 @@
15641564
// Pass 0: Pre-flight prerequisite extraction (~5s)
15651565
// Ask the LLM a simple direct question to surface implicit prerequisites
15661566
// that it cannot identify inside complex research prompts
1567-
setPhase('identifying prerequisites...', 'research');
1567+
setPhase('initializing...', 'research');
15681568
try {
15691569
var preflightSys = 'Extract the key object from this question. Complete this sentence in 1-3 words: "To accomplish the task in this question, the ___ must be present." If no specific physical object is needed, respond with just the word "nothing".';
15701570
var preflightText = await streamPassWithRetry(preflightSys, question, signal);

test/site.e2e.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ test.describe("sprint flow", () => {
154154
const label = page.locator(".sprint-phase-label");
155155
await expect(label).toBeVisible({ timeout: 5000 });
156156
await expect(label).toContainText(
157-
/researching|challenging|synthesizing|compiling|initializing|identifying prerequisites/i,
157+
/researching|challenging|synthesizing|compiling|initializing/i,
158158
);
159159
});
160160

0 commit comments

Comments
 (0)