explorbot 0.1.13 → 0.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/ai/pilot.ts CHANGED
@@ -110,7 +110,7 @@ export class Pilot implements Agent {
110
110
  .string()
111
111
  .nullable()
112
112
  .describe(
113
- 'REQUIRED whenever decision is "pass" — provide a specific assertion that proves the scenario goal on the current page (e.g., "New test suite \\"Foo\\" is visible in the suites list"). The system runs it and bakes the resulting assertion into the generated test file; without it the test file has no verifiable expect(). Also use when evidence is insufficient before deciding pass/fail. Leave null for "continue", "fail", or "skipped".'
113
+ 'REQUIRED whenever decision is "pass" — a one-sentence natural-language claim about the current page that, if true, proves the scenario goal (e.g., "New test suite \\"Foo\\" is visible in the suites list"). NOT code: do not write I.*, expect(), .then(), grabTitle, or any JavaScript. Navigator translates the claim into CodeceptJS assertions and runs them; passing assertions are saved to the generated test file. Also use when evidence is insufficient before deciding pass/fail. Leave null for "continue", "fail", or "skipped".'
114
114
  ),
115
115
  });
116
116
 
@@ -133,19 +133,20 @@ export class Pilot implements Agent {
133
133
  ${sessionLog || 'No actions recorded'}
134
134
  </session_log>
135
135
 
136
- Decide:
137
- - "pass" ONLY if the SCENARIO GOAL is fully accomplished (not just milestones)
138
- - "fail" if the scenario was attempted but failed
139
- - "skipped" if the scenario is irrelevant/inapplicable OR systematic execution failures prevented testing (e.g., repeated LLM errors, navigation crashes, tool failures unrelated to the scenario)
140
- - "continue" if tester hasn't completed the scenario goal yet even if milestones were checked
141
- - If evidence is mixed, but final state indicates goal completion, choose "pass"
142
- - If evidence is mixed and final state is unclear, prefer "continue" over "fail"
143
-
144
- When deciding "pass", you MUST also set requestVerification to a CodeceptJS assertion that
145
- proves the scenario goal on the current page. Choose the strongest single evidence (a unique
146
- element/text that exists ONLY because the scenario succeeded). The assertion is executed and
147
- then converted into the spec file's expect() without it the generated test has nothing to
148
- assert and is worthless.
136
+ Decide and commit. "continue" extends the loop and burns iterations — choose it only when
137
+ evidence is genuinely insufficient to call pass/fail, not as a safety hedge.
138
+ - "pass" if final state proves the SCENARIO GOAL is accomplished. Set requestVerification.
139
+ - "fail" if scenario was attempted but goal not achieved.
140
+ - "skipped" if scenario is irrelevant/inapplicable, OR systematic infrastructure failures.
141
+ - "continue" only when a concrete missing piece of evidence (a verify/see) would change your verdict.
142
+ - Mixed evidence + final state shows success → pass. Mixed + final state unclear continue with guidance.
143
+
144
+ When deciding "pass", you MUST also set requestVerification to a one-sentence natural-language
145
+ claim about the current page (e.g., "New test suite Foo is visible in the suites list"). NOT
146
+ code do not write I.*, expect(), .then(), or any JavaScript. Choose the strongest single
147
+ piece of evidence (a unique element/text that exists ONLY because the scenario succeeded).
148
+ Navigator translates the claim into CodeceptJS assertions; without it the generated test has
149
+ nothing to assert and is worthless.
149
150
  `;
150
151
 
151
152
  const messages = [
@@ -171,40 +172,30 @@ export class Pilot implements Agent {
171
172
  if (result.decision === 'pass' && result.requestVerification && navigator) {
172
173
  tag('substep').log(`Pilot requesting verification: ${result.requestVerification}`);
173
174
  const verifyResult = await navigator.verifyState(result.requestVerification, currentState).catch(() => null);
174
- if (verifyResult?.verified) {
175
- if (verifyResult.assertionSteps?.length) {
176
- this.explorer.getPlaywrightRecorder().recordVerification(verifyResult.assertionSteps);
177
- }
178
- } else {
179
- let answer: string | null = null;
180
- if (screenshotState?.screenshot) {
181
- answer = await this.researcher.answerQuestionAboutScreenshot(screenshotState, `Does the screen confirm: "${result.requestVerification}"? Answer YES or NO only.`);
182
- }
183
- if (!(answer || '').trim().toUpperCase().startsWith('YES')) {
184
- task.addNote(`Pilot: verification failed — ${result.requestVerification}`, TestResult.FAILED);
185
- task.finish(TestResult.FAILED);
186
- return false;
187
- }
175
+ if (verifyResult?.verified && verifyResult.assertionSteps?.length) {
176
+ this.explorer.getPlaywrightRecorder().recordVerification(verifyResult.assertionSteps);
188
177
  }
189
178
  }
190
179
 
191
180
  tag('info').log(`Pilot: ${result.decision} — ${result.reason}`);
192
181
  task.summary = result.reason;
193
182
 
183
+ const verdictState = screenshotState || currentState;
184
+
194
185
  if (result.decision === 'pass') {
195
- task.addNote(`Pilot: ${result.reason}`, TestResult.PASSED);
186
+ task.setVerification(`Pilot: ${result.reason}`, TestResult.PASSED, verdictState);
196
187
  task.finish(TestResult.PASSED);
197
188
  return false;
198
189
  }
199
190
 
200
191
  if (result.decision === 'fail') {
201
- task.addNote(`Pilot: ${result.reason}`, TestResult.FAILED);
192
+ task.setVerification(`Pilot: ${result.reason}`, TestResult.FAILED, verdictState);
202
193
  task.finish(TestResult.FAILED);
203
194
  return false;
204
195
  }
205
196
 
206
197
  if (result.decision === 'skipped') {
207
- task.addNote(`Pilot: skipped — ${result.reason}`, TestResult.SKIPPED);
198
+ task.setVerification(`Pilot: skipped — ${result.reason}`, TestResult.SKIPPED, verdictState);
208
199
  task.finish(TestResult.SKIPPED);
209
200
  return false;
210
201
  }
@@ -308,110 +299,91 @@ export class Pilot implements Agent {
308
299
  }
309
300
  }
310
301
 
311
- private buildResetSystemPrompt(task: Test): string {
302
+ private buildSharedEvidenceRules(task: Test): string {
312
303
  return dedent`
313
- You are Pilot — the supervisor that decides whether a reset is legitimate.
314
- Tester wants to reset (navigate back to the start URL and discard progress).
315
-
316
304
  SCENARIO: ${task.scenario}
317
305
 
318
- Reset is DESTRUCTIVE. It abandons all work done in this iteration. In stateful apps, any
319
- side effects (records created, forms submitted) persist on the server — resetting does not
320
- undo them. Unnecessary resets create duplicate data and loop forever.
321
-
322
- LEGITIMATE RESET (decide "allow"):
323
- - The current page is unrelated to the scenario and no path leads back.
324
- - Navigation is stuck in an error state with no recoverable action.
325
- - The tester arrived on a page that cannot host the scenario at all.
326
-
327
- ILLEGITIMATE RESET (decide "continue"):
328
- - The previous action already succeeded (URL changed to a success/detail page, record visible,
329
- confirmation shown) and tester wants to redo it because an assertion did not match.
330
- The work is done verify, record, or finish instead of restarting.
331
- - A single expectation / milestone does not match app reality but the scenario goal may still
332
- have been achieved. Do not redo instruct the tester to verify the actual outcome.
333
- - Tester wants to "try again with different input" after a form was submitted. Submitting
334
- again creates a duplicate; guide toward editing the existing record or accepting the state.
335
-
336
- RESET-LOOP (decide "fail"):
337
- - resetCount >= 2 and the previous resets did not change the underlying situation.
338
- - The same flow has been attempted twice with the same failure mode.
339
- - Repeating the reset cannot produce new information.
340
-
341
- SCENARIO INAPPLICABLE (decide "skipped"):
342
- - The feature the scenario targets does not exist on this app, or prerequisites cannot be met.
343
-
344
- PRIORITY:
345
- 1) Evidence of successful side effects in session_log (URL transition, new record visible).
346
- If present, almost never allow the reset — the work is done.
347
- 2) resetCount. Each prior reset raises the bar for allowing another.
348
- 3) Tester's stated reason. Weigh it against the observed evidence, do not trust it blindly.
306
+ EVIDENCE PRIORITY (strict):
307
+ 1) Final observable state proving the scenario goal
308
+ 2) verify()/see() results in the LAST few actions before stop/finish
309
+ 3) Intermediate action outcomes (diagnostic, not decisive)
310
+ Mixed evidence with a clear final-state success → pass. Mixed with unclear final state → continue.
311
+
312
+ EVIDENCE SOURCES disagree often: verify(), see(), visual_analysis, session_log. No single source
313
+ overrides the others weigh them together. Tester's record() notes are the LEAST reliable; always
314
+ cross-check against actual actions and state. Visual screenshot analysis is strong for UI state
315
+ (active tabs, visible counts, colors).
316
+
317
+ SCENARIO TITLE defines what must happen. Action verbs require persisted evidence:
318
+ - "Create X" X must exist (visible, redirected to its page, or success message). Opening a form is NOT enough.
319
+ - "Delete X" X must be gone. Clicking delete is NOT enough.
320
+ - "Edit X" → updated value must be persisted (visible in list/detail). Opening edit is NOT enough; redirect after save with the new value visible IS enough.
321
+ - Negative tests ("without a name", "invalid", "duplicate", "unauthorized") success means the system PREVENTED the action with validation/error.
322
+
323
+ PROVENANCE for create/edit scenarios: the task prompt instructs the tester to inject the
324
+ session marker "${task.sessionName ?? ''}" into newly created or edited free-text values.
325
+ When that marker COULD be injected, the entity used as proof MUST contain it. A record
326
+ matching the goal by text alone but missing the marker is a stale leftover from a prior
327
+ run it is NOT evidence the current scenario produced anything. Vote \`fail\`, not \`pass\`.
328
+ This does not apply when the field is restricted (numeric only, enum, etc.) or when the
329
+ session_log shows no fillField/type/select actions were attempted at all (in that case
330
+ the scenario clearly didn't run also vote \`fail\`).
331
+
332
+ Expected results are MILESTONES, not the goal. Never fail because a milestone (toast, icon, styling)
333
+ didn't match if the scenario goal IS accomplished.
349
334
 
350
- GUIDANCE FIELD (required when decision is "continue"):
351
- Give a specific next action on the current page: which tool to call, what to verify, or how to
352
- record the outcome. Do not suggest repeating actions that already succeeded.
335
+ ${this.buildDeletionScope(task)}
353
336
 
354
- EXPECTED RESULTS (milestones, not the goal):
337
+ EXPECTED RESULTS (milestones):
355
338
  ${task.expected.map((e) => `- ${e}`).join('\n')}
356
339
  `;
357
340
  }
358
341
 
359
- private buildVerdictSystemPrompt(type: string, task: Test): string {
342
+ private buildResetSystemPrompt(task: Test): string {
360
343
  return dedent`
361
- You are Pilot — the final decision maker for test pass/fail.
362
- Tester has requested to ${type} the test. Review the evidence and decide.
344
+ You are Pilot — decide whether a reset is legitimate. Reset is DESTRUCTIVE: it abandons this
345
+ iteration's work, but server-side side effects (records created, forms submitted) persist.
346
+ Unnecessary resets create duplicate data and infinite loops.
363
347
 
364
- SCENARIO: ${task.scenario}
348
+ ${this.buildSharedEvidenceRules(task)}
365
349
 
366
- The SCENARIO is the primary goal. The test can only pass if the scenario goal is fully accomplished.
367
- PRIORITY ORDER (strict):
368
- 1) Final observable state proving the scenario goal
369
- 2) Verification evidence (if provided)
370
- 3) Intermediate action/step outcomes
371
- If final state evidence proves the scenario goal, PASS even when some intermediate actions failed.
372
- Do not fail only because a specific click failed, no toast appeared, or navigation was different than expected.
373
- Intermediate failures are diagnostic, not decisive, when end state confirms success.
374
- Expected results are helpful milestones but they DO NOT override the scenario goal.
375
- NEVER fail a test because an expected result (milestone) was not met when the scenario goal itself IS accomplished.
376
- The SCENARIO TITLE defines what must happen. If the title says "Create X and verify it appears" and X was created and appears — that's a PASS, even if some milestone about icons/status/styling was not met.
377
- If the scenario says "Create X", then X must be created — opening a form or navigating to /new URL is NOT enough. There must be evidence that the item now exists: visible on page, redirected to the item's page, or a success/confirmation message appeared.
378
- If the scenario says "Delete X", then X must be deleted — clicking delete button is not enough. There must be evidence the item is gone.
379
- If the scenario says "Edit X", then changes must be saved — opening an edit form is NOT enough.
380
- For edit/update/rename scenarios, persisted updated value visible in list/detail view is valid save evidence, even without toast and even if page redirected away from edit view.
381
- DO NOT trust Tester's self-assessment in notes (like "scenario goal achieved"). Verify against actual actions and state.
382
- EVIDENCE SOURCES: verify(), see(), visual_analysis, and action results in session_log are all evidence. They may disagree — analyze all of them together to reach your decision. No single source automatically overrides the others. Visual analysis from screenshots is strong evidence for UI state (active tabs, visible items, counts, colors). Tester's self-assessment in record() notes is the least reliable — always cross-check against actual evidence.
383
- SESSION LOG shows ALL actions grouped by URL. If the scenario requires changing data (edit/create/delete) but all form/click actions FAILED, the test cannot pass — even if a verify() found matching content that existed before the test.
384
-
385
- VERIFICATION RULE: Only the LAST few actions before finish/stop count as verification evidence.
386
- - If verify() or see() is among the last actions → use its result as evidence.
387
- - If no verification was done → prefer "continue" with guidance telling tester what to verify.
388
- - If verify assertion describes a state that was ALREADY TRUE before the test started, the verification proves nothing — reject with "continue".
389
-
390
- requestVerification — pick assertions DOM can actually express. Some content is not assertable via DOM (iframe text, canvas, custom widgets, Monaco/CodeMirror editors). When the scenario goal lives in such a region, target a STABLE LANDMARK (container element, ARIA role, the parent that wraps the widget) rather than literal text inside it. Your "pass" verdict is honored even if the DOM assertion can't be made — pick the strongest landmark you can.
391
-
392
- GUIDANCE FIELD: When decision is "continue", you MUST provide "guidance" — a specific actionable instruction:
393
- - If evidence is insufficient: tell tester to verify with see()/verify(), specify WHAT to check
394
- - If approach was wrong: tell tester to try a different method, suggest which one
395
- - If remaining steps exist: tell tester which steps to complete next
396
- Be concrete. Example: "Use see() to check if the description text appears in the Description tab panel" not "verify the result".
397
- Do NOT tell tester to redo the same actions that already succeeded.
398
-
399
- NEGATIVE TESTS: Some scenarios test that something CANNOT or SHOULD NOT happen.
400
- Patterns: "without a name", "with invalid data", "empty field", "wrong password", "unauthorized", "duplicate".
401
- For negative tests, success means the system PREVENTED the action — error messages, validation, disabled buttons.
402
- Example: "Create X without a name" PASSES if X was NOT created and validation appeared.
403
-
404
- SKIPPED TESTS: Choose "skipped" in two cases:
405
- 1) Scenario is irrelevant: feature doesn't exist on the page, required UI elements are completely absent, scenario prerequisites cannot be met.
406
- 2) Systematic execution failures: repeated LLM/API errors, navigation crashes, tool failures unrelated to the scenario itself. These are infrastructure problems, not test failures.
407
- Do NOT use "skipped" when the feature exists but the test just failed to interact with it — that's "fail" or "continue".
350
+ DECISION:
351
+ - "allow": current page cannot host the scenario, irrecoverable error, or no path back.
352
+ - "continue": prior action already succeeded (URL changed, record visible, confirmation shown) verify/finish instead. Or scenario goal may already be met; instruct tester to verify the actual outcome rather than redo. Provide guidance.
353
+ - "fail": resetCount >= 2 and underlying situation hasn't changed; same flow tried twice with same failure mode.
354
+ - "skipped": feature doesn't exist on this app or prerequisites can't be met.
408
355
 
409
- ${this.buildDeletionScope(task)}
356
+ PRIORITY:
357
+ 1) Successful side effects in session_log → almost never allow reset.
358
+ 2) resetCount — each prior reset raises the bar.
359
+ 3) Tester's stated reason — weigh against evidence, don't trust blindly.
410
360
 
411
- REASON FORMAT: The "reason" field goes into the test report. Do NOT start with "The scenario goal was/was not achieved" or similar status phrases the decision field already conveys that. Instead, state what happened: what was verified, what failed, or what evidence was found.
361
+ GUIDANCE (required for "continue"): a specific next action on the current pagewhich tool, what
362
+ to verify, how to record. Do not suggest repeating actions that already succeeded.
363
+ `;
364
+ }
412
365
 
413
- EXPECTED RESULTS (milestones, not the goal):
414
- ${task.expected.map((e) => `- ${e}`).join('\n')}
366
+ private buildVerdictSystemPrompt(type: string, task: Test): string {
367
+ return dedent`
368
+ You are Pilot — final decision maker for test pass/fail. Tester requested ${type}. Review the
369
+ evidence and commit to a verdict; "continue" only when evidence is genuinely insufficient.
370
+
371
+ ${this.buildSharedEvidenceRules(task)}
372
+
373
+ DECISION:
374
+ - "pass": scenario goal is fully accomplished. Set requestVerification to a one-sentence claim about
375
+ the current page that proves it (a unique element/text that exists ONLY because the scenario succeeded).
376
+ Pick assertions DOM can express; for non-DOM regions (iframes, canvas, Monaco/CodeMirror), target a
377
+ stable landmark (container, ARIA role) instead of literal inner text. Your "pass" stands even if the
378
+ DOM assertion can't be made.
379
+ - "fail": scenario was attempted but the goal was not achieved.
380
+ - "skipped": scenario is irrelevant to the app, OR systematic infrastructure failures (LLM errors,
381
+ crashes) prevented testing. NOT for "test failed to interact" — that's "fail" or "continue".
382
+ - "continue": tester hasn't completed the goal; provide concrete guidance (which tool, what to check).
383
+ If a verify() asserted a state that was ALREADY TRUE before the test, it proves nothing — reject.
384
+
385
+ reason field: do NOT restate the decision ("scenario goal achieved/not achieved"). State what happened —
386
+ what was verified, what failed, what evidence was found.
415
387
  `;
416
388
  }
417
389
 
@@ -423,7 +395,9 @@ export class Pilot implements Agent {
423
395
  allowNewResearch: false,
424
396
  });
425
397
  const agenticModel = this.provider.getAgenticModel('pilot');
426
- this.conversation = this.provider.startConversation(this.getSystemPrompt(task, currentState, pageSummary), 'pilot', agenticModel);
398
+ this.conversation = this.provider.startConversation(this.getSystemPrompt(task, currentState), 'pilot', agenticModel);
399
+ this.conversation.markLastMessageCacheable();
400
+ this.conversation.protectPrefix(1);
427
401
 
428
402
  const stateContext = this.buildStateContext(currentState);
429
403
 
@@ -519,11 +493,9 @@ export class Pilot implements Agent {
519
493
  tag('substep').log('Pilot analyzing progress...');
520
494
 
521
495
  if (!this.conversation) {
522
- const pageSummary = await this.researcher.summary(currentState, {
523
- allowNewResearch: false,
524
- });
525
496
  const agenticModel = this.provider.getAgenticModel('pilot');
526
- this.conversation = this.provider.startConversation(this.getSystemPrompt(task, currentState, pageSummary), 'pilot', agenticModel);
497
+ this.conversation = this.provider.startConversation(this.getSystemPrompt(task, currentState), 'pilot', agenticModel);
498
+ this.conversation.markLastMessageCacheable();
527
499
  }
528
500
 
529
501
  const toolCalls = testerConversation.getToolExecutions().slice(-this.stepsToReview);
@@ -592,6 +564,7 @@ export class Pilot implements Agent {
592
564
  const result = await this.provider.invokeConversation(this.conversation!, tools, {
593
565
  maxToolRoundtrips: opts.maxToolRoundtrips ?? 0,
594
566
  agentName: 'pilot',
567
+ stopWhen: opts.task ? () => opts.task!.hasFinished : undefined,
595
568
  experimental_telemetry: { functionId },
596
569
  });
597
570
  const text = result?.response?.text || '';
@@ -644,6 +617,8 @@ export class Pilot implements Agent {
644
617
  debugLog(`precondition: ${description}, fisherman: ${this.fisherman?.isAvailable() ? 'available' : 'none'}`);
645
618
 
646
619
  if (!this.fisherman || !this.fisherman.isAvailable()) {
620
+ const skipReason = await this.checkDataAvailability(task, description, 'Fisherman not available');
621
+ if (skipReason) return { noted: true, prepared: false, skipped: true, reason: skipReason };
647
622
  return { noted: true, prepared: false, reason: 'Fisherman not available' };
648
623
  }
649
624
 
@@ -651,6 +626,8 @@ export class Pilot implements Agent {
651
626
 
652
627
  if (!result.success || result.created.length === 0) {
653
628
  if (result.summary) tag('warning').log(`Precondition failed: ${result.summary}`);
629
+ const skipReason = await this.checkDataAvailability(task, description, result.summary);
630
+ if (skipReason) return { noted: true, prepared: false, skipped: true, reason: skipReason };
654
631
  return { noted: true, prepared: false, reason: result.summary };
655
632
  }
656
633
 
@@ -670,6 +647,38 @@ export class Pilot implements Agent {
670
647
  };
671
648
  }
672
649
 
650
+ private async checkDataAvailability(task: Test, requestedData: string, fishermanReason: string | undefined): Promise<string | null> {
651
+ if (!this.provider.hasVision()) return null;
652
+
653
+ const action = this.explorer.createAction();
654
+ const screenshotState = await action.caputrePageWithScreenshot().catch(() => null);
655
+ if (!screenshotState?.screenshot) return null;
656
+
657
+ const question = dedent`
658
+ Test scenario: "${task.scenario}"
659
+ Data we tried to create automatically (and failed): ${requestedData}
660
+ Failure reason: ${fishermanReason || 'unknown'}
661
+
662
+ Looking at the current page only, can this scenario still be carried out?
663
+ - YES if the page already shows the items the scenario will act on, OR if the page exposes a UI control that creates such items (an "Add", "New", "+" button, an empty-state CTA, etc.).
664
+ - NO if the scenario needs items that aren't visible AND there is no way to create them from this page (e.g. a filter/search/select scenario over an empty list with no creation affordance).
665
+
666
+ Reply with YES or NO on the first line, then a one-sentence reason on the second line.
667
+ `;
668
+
669
+ const answer = await this.researcher.answerQuestionAboutScreenshot(screenshotState, question);
670
+ if (!answer) return null;
671
+
672
+ const firstLine = answer.split('\n')[0]?.trim().toUpperCase() ?? '';
673
+ if (!firstLine.startsWith('NO')) return null;
674
+
675
+ const reason = answer.split('\n').slice(1).join(' ').trim() || 'Required data is absent and cannot be created from this page';
676
+ task.setVerification(`Pilot: skipped — ${reason}`, TestResult.SKIPPED, screenshotState);
677
+ task.finish(TestResult.SKIPPED);
678
+ tag('info').log(`Pilot: precondition failed and page lacks required data — skipping test (${reason})`);
679
+ return reason;
680
+ }
681
+
673
682
  private buildStateContext(state: ActionResult): string {
674
683
  const lines: string[] = [];
675
684
 
@@ -839,7 +848,7 @@ export class Pilot implements Agent {
839
848
  }
840
849
 
841
850
  const analysisText = exec.output?.analysis;
842
- const resultMessage = analysisText ? (analysisText.length > 500 ? `${analysisText.slice(0, 500)}...` : analysisText) : exec.output?.message || exec.output?.result;
851
+ const resultMessage = analysisText ? (analysisText.length > 300 ? `${analysisText.slice(0, 300)}...` : analysisText) : exec.output?.message || exec.output?.result;
843
852
  if (resultMessage && (CHECK_TOOLS.includes(exec.toolName) || !exec.wasSuccessful)) {
844
853
  line += `\n result: ${resultMessage}`;
845
854
  }
@@ -847,6 +856,7 @@ export class Pilot implements Agent {
847
856
  groups.get(currentUrl)!.lines.push(line);
848
857
  }
849
858
 
859
+ const PER_GROUP_CAP = 25;
850
860
  const parts: string[] = [];
851
861
  for (const [url, group] of groups) {
852
862
  const header = [url];
@@ -854,7 +864,10 @@ export class Pilot implements Agent {
854
864
  if (group.h1) header.push(` h1: ${group.h1}`);
855
865
  if (group.h3) header.push(` h3: ${group.h3}`);
856
866
  header.push('');
857
- const lines = group.lines.map((l) => ` ${l}`);
867
+ const omitted = Math.max(0, group.lines.length - PER_GROUP_CAP);
868
+ const visibleLines = omitted > 0 ? group.lines.slice(-PER_GROUP_CAP) : group.lines;
869
+ const lines = visibleLines.map((l) => ` ${l}`);
870
+ if (omitted > 0) lines.unshift(` [...${omitted} earlier action(s) omitted...]`);
858
871
  parts.push([...header, ...lines].join('\n'));
859
872
  }
860
873
 
@@ -919,12 +932,12 @@ export class Pilot implements Agent {
919
932
  return '';
920
933
  }
921
934
 
922
- private getSystemPrompt(task: Test, initialState: ActionResult, pageSummary: string): string {
935
+ private getSystemPrompt(task: Test, initialState: ActionResult): string {
923
936
  const interactive = isInteractive();
924
937
  const stepsText = task.plannedSteps.length > 0 ? task.plannedSteps.map((s, i) => `${i + 1}. ${s}`).join('\n') : 'No planned steps';
925
938
 
926
939
  return dedent`
927
- You are Pilot - a supervisor that detects problems and intervenes only when needed.
940
+ You are Pilot a supervisor that detects problems and intervenes only when needed.
928
941
 
929
942
  SCENARIO: ${task.scenario}
930
943
  START URL: ${initialState.url}
@@ -936,136 +949,63 @@ export class Pilot implements Agent {
936
949
  PLANNED STEPS:
937
950
  ${stepsText}
938
951
 
939
- ${pageSummary ? `PAGE SUMMARY:\n${pageSummary}` : ''}
940
-
941
- Your job:
942
- 1. Plan test execution by reviewing page elements and scenario requirements
943
- 2. When Tester navigates to a new page, review available elements and plan next steps
944
- 3. Detect when Tester is stuck: repeated failures, loops, or wrong direction
945
- 4. Track which expectations have been checked and which remain
946
- 5. When problems are detected, suggest concrete alternative approaches
947
- 6. When everything is going well, give brief encouragement and let Tester continue
948
- 7. Before suggesting navigation to another page, assume the current page may already have what the scenario needs. The page summary is incomplete — not every element is listed. Prefer exploring the current page first.
949
-
950
- Already-achieved state detection:
951
- - When planning or reviewing, check if the scenario goal is ALREADY met in the current state (page_summary, ariaDiff, or state context).
952
- - If the goal appears already achieved at start: adapt the scenario suggest different input values or data to make the test meaningful.
953
- - If the goal was achieved by a previous action (SUCCESS in recent_actions with confirming ariaDiff): instruct Tester to verify() the result and finish(). Do NOT repeat the same action.
954
- - If Tester keeps re-opening the same panel and re-submitting the same data — STOP. The action was already completed.
955
-
956
- Action-goal alignmentclassify every recent successful action:
957
- - GOAL-ADVANCING: creates, edits, removes, submits, or verifies the scenario's subject data (the object the scenario actually changes).
958
- - VIEW-ONLY: toggles layout, filters, tabs, segment controls, sort orders, collapse/expand changes which data is shown without modifying it.
959
- - A single VIEW-ONLY action is legitimate when needed to reveal a target element for the next GOAL-ADVANCING action.
960
- - A run of two or more consecutive successful VIEW-ONLY actions with no interleaved GOAL-ADVANCING action is thrashing — Tester is exploring UI instead of executing the scenario. Redirect Tester to the specific mutation or verification the scenario requires.
961
- - VIEW-ONLY actions also tend to produce large page diffs with many htmlParts; if you see that pattern repeatedly in recent_actions, treat it as evidence of thrashing.
962
-
963
- Navigation awareness always compare current page url to START URL:
964
- - subpage navigation (deeper path from START URL) OK, scenario may need sub-pages
965
- - outer-page navigation (parent/sibling path from START URL) SUSPICIOUS. The scenario target is on the START page. Do NOT rationalize leaving it. Instruct Tester to back() or reset().
966
- - outer-site navigation (different domain) WRONG. Instruct Tester to reset() immediately.
967
-
968
- IMPORTANT Tool usage policy:
969
- - DO NOT use tools (see, context) when Tester is making progress and no failures are recorded
970
- - Tester already has full ARIA and HTML context do not duplicate that work
971
- - ONLY use see/context tools when Tester has failed 2+ times on the same element or action
972
- - Use xpathCheck proactively when Tester fails to find an element even ONCE (element not found error)
973
- - If Tester's ARIA locator used wrong role (e.g. "textbox" instead of "combobox"), use xpathCheck to identify the correct element
974
- - After finding the element via xpathCheck, include the discovered locator in your NEXT instruction
975
- ${interactive ? '- Use askUser() only as last resort when automated recovery has failed' : ''}
976
-
977
- Diagnosing failures — use <state> context:
978
- - Button click failed AND that button is in "disabled buttons" → button is disabled, not missing. Check "active form" for unfilled [required] fields. Instruct Tester to fill required fields first.
979
- - Form submit failed → check "active form" for fields that may need values. Instruct Tester to fill them before retrying submit.
980
- - "modal: none" but Tester tries to interact with a modal → modal was closed or never opened. Instruct Tester to re-trigger the modal.
981
- - Actions succeed but ariaDiff is empty → action may have worked without visible DOM changes. Check result message before assuming failure.
982
- - Multiple elements matched (MultipleElementsFound) → use xpathCheck() to inspect the matched elements and determine which one is correct. Then instruct Tester with a precise locator or suggest visualClick() to click the right element by visual appearance.
983
- - Tester navigated to a page unrelated to the scenario (e.g., settings instead of feature page) use getVisitedStates() to check which pages were visited, then suggest back() to return to a relevant page, or reset() if multiple wrong navigations occurred. Do NOT try navigating back via breadcrumbs or links — SPA frameworks make manual back-navigation unreliable.
984
- - If diagnosis is unclear, ariaDiff is empty, and your previous advice didn't help → suggest Tester use see() to visually inspect the page. But ONLY as a last resort after other diagnostics failed.
985
- - Click succeeded but ariaDiff shows elements unrelated to tester's intention (e.g., clicked "Edit" but dropdown appeared) → wrong button or unexpected behavior. Instruct Tester to Escape and try a different approach.
986
- - form(I.type()) succeeded I.type() sends keys to whatever is focused, no guarantee it's the right field. Instruct Tester to verify with see() that text appeared in the correct field. If targetedHtml shows a button/link, text went to wrong element — click the correct field first and retry.
987
- - ariaDiff shows 5+ elements removed/added after clicking content → page entered a different mode (editor, panel, modal). Instruct Tester to call context() to see current state before guessing selectors.
988
- - Dropdown/select opened but contains NO options, or a list/table is empty when items were expected → data doesn't exist yet. Call precondition() to create the missing items (labels, categories, etc.), then instruct Tester to retry.
989
- - Tester tries to select/filter/assign something but the option list is empty or expected value is not present → missing auxiliary data. Call precondition() to create it.
990
-
991
- Detecting logically wrong successes review "executed", "element", and "skipped" fields:
992
- - Click SUCCESS but "executed" command differs from "explanation" intent → wrong element was clicked. The intended element wasn't found and a different one was clicked instead.
993
- - Click SUCCESS with "skipped" commands listed → earlier attempts failed, fell through to a different locator. Check if the successful locator actually targets the intended element.
994
- - form(I.type()) SUCCESS but "element" shows a button/link instead of input → text went to wrong element. Instruct Tester to click the correct input first.
995
- - Action SUCCESS but ariaDiff shows changes unrelated to the stated goal → action hit the wrong target. Instruct Tester to undo (Escape/back) and retry with precise locator.
996
- - If Tester's explanation mentions TWO distinct actions in ONE tool call → flag this. Each distinct action should be a separate tool call. Instruct Tester to split into individual steps.
997
-
998
- Complex component patterns — when Tester fails to interact with dropdowns/selects:
999
- - Search-and-select dropdowns require a SEQUENCE: click/focus the trigger input, type to filter, then click an option from the dropdown list. Instruct Tester to split this into separate tool calls.
1000
- - If Tester clicks a generic dropdown trigger and ariaDiff shows unrelated options → wrong dropdown was triggered. Instruct Tester to use a more specific selector with container context.
1001
- - If Tester types into an input but no dropdown appears → they may need to click the trigger element first. Suggest using context() to check the current DOM state.
1002
-
1003
- Tester ignoring visible elements:
1004
- - If <state> shows "active form" fields but Tester is clicking elements not found in ARIA, or trying buttons that don't exist → Tester is ignoring interactive elements that are actually on the page. Instruct Tester to focus on the elements listed in "active form" — these are the real interactive controls on the current page. The UI map may be outdated.
1005
-
1006
- When Tester IS stuck finding an element, use xpathCheck() with COMBINED XPaths:
1007
- - NEVER guess one exact text. UI labels differ from scenario wording.
1008
- - Combine multiple guesses into ONE XPath using "or" operator.
1009
- - Include: synonyms, partial text, aria-label, title, role, icon classes.
1010
- - Example: looking for a "create project" button:
1011
- //*[(contains(., "Create project") or contains(., "New project") or contains(., "Add project") or contains(@aria-label, "project")) or (contains(., "project") and (contains(@class, "add") or contains(@class, "plus") or contains(@class, "create") or .//*[contains(@class, "plus") or contains(@class, "add") or contains(@class, "icon-add")]))][@role="button" or @role="link" or self::button or self::a]
1012
- - Key: combine text synonyms + icon classes on children (.//*[contains(@class,...)]) + aria attributes
1013
- - If no results, broaden: drop the role filter, or search by role only, then check results for relevant text.
1014
- - After finding candidates, narrow down and include discovered XPath in NEXT instruction.
1015
-
1016
- If you need more page context, mention ATTACH_HTML, ATTACH_ARIA, or ATTACH_UI_MAP — but only when recent actions show failures.
1017
-
1018
-
1019
- Available Tester tools:
1020
- - click(locator) — click elements
1021
- - pressKey(key) — keyboard keys
1022
- - form(code) — execute multiple commands (fillField, type, selectOption, attachFile)
1023
- - see(request) — visual screenshot analysis
1024
- - verify(assertion) — AI-powered DOM assertion (uses I.see, I.seeElement, I.seeInField, I.dontSee)
1025
- - context() — fresh HTML/ARIA snapshot
1026
- - research() — get UI map
1027
- - xpathCheck(xpath) — find elements by XPath
1028
- - visualClick(element) — coordinate-based click
1029
- - back() — return to previous page
1030
- - getVisitedStates() — list all visited pages (deduped by URL)
1031
- - reset() — return to initial page
1032
- - stop(reason) — abort test
1033
- - finish(verify) — complete test successfully
1034
- - record(notes) — document findings
1035
-
1036
- YOUR tools (Pilot-only):
1037
- - precondition(description) — create FRESH test data via API that the test will act on. Do NOT request users.
1038
-
1039
- PRECONDITIONS — when and what to create:
1040
- Preconditions create NEW disposable items that the test will modify, delete, or interact with.
1041
-
1042
- Ask yourself: "What object will this test change/delete/use? Create THAT."
1043
-
1044
- When to call precondition():
1045
- - Scenario edits/deletes/modifies an item → create a disposable target
1046
- - Scenario needs auxiliary data (labels, categories, statuses to filter by)
1047
- - Tester failed because required data is missing (empty dropdown, no items to select)
1048
-
1049
- When to SKIP precondition():
1050
- - Scenario is "Create X" — the test itself creates the item, no precondition needed
1051
- - Current page already shows the exact data needed (check <state> h1/title and <page_summary>)
1052
- - Scenario tests navigation, search UI, or viewing — no data mutation involved
1053
-
1054
- Examples — when to create:
1055
- - "Edit test description" → precondition("1 test") — the test will edit this item
1056
- - "Delete a comment" → precondition("1 comment") — the test will delete this item
1057
- - "Assign a label to item" → precondition("1 item and 1 label named Bug") — test assigns the label
1058
- - "Filter by status" → precondition("3 items: 2 with status Open, 1 with status Closed")
1059
-
1060
- Examples — when to skip:
1061
- - "Create a new blog post" → SKIP, the test creates it
1062
- - "Edit blog post" while on a blog post page → SKIP, data already exists
1063
- - "View dashboard" → SKIP, no data mutation
1064
-
1065
- WRONG: precondition("1 test suite named Updated Suite with existing tests") — describes the page, not what to create
1066
- RIGHT: precondition("1 test") — create a fresh test that the scenario will edit
1067
-
1068
- Keep descriptions short and specific.
952
+ Your job: plan, review new pages, detect stuck patterns, suggest concrete next steps. Track which
953
+ expectations are checked. When things go well, encourage briefly and let Tester continue. The current
954
+ page is usually richer than the page summary lists — prefer exploring it before navigating away.
955
+
956
+ Already-achieved detection: if the scenario goal is met in the current state (page_summary, ariaDiff,
957
+ state), instruct Tester to verify() and finish(). If goal was already true at the start, propose
958
+ different input data so the test is meaningful. If Tester repeats the same successful action, STOP.
959
+
960
+ Action classification: GOAL-ADVANCING actions mutate the scenario's subject data (create/edit/delete/submit/verify).
961
+ VIEW-ONLY actions toggle filters/tabs/sort/collapse without changing data. One VIEW-ONLY to reveal a
962
+ target is fine; ≥2 consecutive VIEW-ONLY actions with no GOAL-ADVANCING action in between is thrashing
963
+ redirect Tester to the actual mutation or verification. Repeated large htmlParts diffs are a thrashing signal.
964
+
965
+ Navigation: compare current url to START URL. Subpage = OK. Parent/sibling = suspicious, instruct
966
+ back()/reset(). Different domain = wrong, reset() immediately.
967
+
968
+ Tool usage policy:
969
+ - When Tester is making progress with no failures, do NOT call see/context/research Tester already has ARIA/HTML.
970
+ - Use see/context only after 2+ failures on the same element or action.
971
+ - Use xpathCheck proactively on the FIRST element-not-found error or when ARIA role looks wrong; pass the discovered locator into your next instruction.
972
+ ${interactive ? '- Use askUser() only as last resort.' : ''}
973
+
974
+ Diagnostic patterns (use <state>, executed/element/skipped fields, ariaDiff):
975
+ - Click failed + button in "disabled buttons" → required field missing. Instruct fill first.
976
+ - "modal: none" but Tester targets a modal modal closed; re-trigger.
977
+ - Action SUCCESS but ariaDiff empty may have worked without visible DOM change; check result message.
978
+ - MultipleElementsFound xpathCheck() to identify the right one, then precise locator or visualClick().
979
+ - Wrong page (settings vs feature) getVisitedStates() then back() or reset(). Don't try breadcrumbs (SPA back-nav is unreliable).
980
+ - Click SUCCESS but executed locator ≠ explanation intent, or "skipped" attempts present → wrong element clicked.
981
+ - form(I.type()) SUCCESS but "element" shows a button/link → keys went to wrong element; click the input first.
982
+ - ariaDiff shows 5+ added/removed page entered new mode (editor/modal); call context() before guessing selectors.
983
+ - Empty dropdown/list when items expected missing data; call precondition() to create it.
984
+ - Search-and-select needs SEQUENCE: focus trigger type to filter click option. Tell Tester to split into separate tool calls.
985
+ - Multi-action explanation in one tool call instruct Tester to split.
986
+
987
+ xpathCheck strategy when stuck: never guess one exact text. Combine synonyms, aria-label, title,
988
+ role, icon classes with "or" in one XPath. If empty, broaden (drop role filter). Pass discovered
989
+ XPath into NEXT instruction.
990
+
991
+ To request more context, mention ATTACH_HTML, ATTACH_ARIA, or ATTACH_UI_MAP only when recent actions show failures.
992
+
993
+ Tester tools: click, pressKey, form, see, verify, context, research, xpathCheck, visualClick,
994
+ back, getVisitedStates, reset, stop, finish, record.
995
+
996
+ YOUR Pilot-only tool: precondition(description) create FRESH disposable test data via API. Never
997
+ request users. Use when:
998
+ - Scenario edits/deletes/modifies an item create a disposable target ("1 post").
999
+ - Scenario needs auxiliary data (labels, categories, statuses for filtering).
1000
+ - Tester failed because required data is missing (empty dropdown, empty list).
1001
+
1002
+ Skip precondition() when:
1003
+ - Scenario is "Create X" — the test creates it itself.
1004
+ - Current page already shows the exact data needed.
1005
+ - Scenario tests navigation, search UI, or viewing.
1006
+
1007
+ Describe WHAT to create, not what exists. RIGHT: precondition("1 test"). WRONG:
1008
+ precondition("1 test suite named Updated Suite with existing tests"). Keep descriptions short.
1069
1009
 
1070
1010
  Response format:
1071
1011
  PROGRESS: <1 sentence assessment>