We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d5a86 commit 3aaedc4Copy full SHA for 3aaedc4
1 file changed
packages/cli/src/extensions/host.ts
@@ -696,6 +696,9 @@ export class HarnessExtensionHost {
696
// During startup the user's first prompt owns the first-turn screenshot; an
697
// extension message here must not consume it (see `startedUp`).
698
if (!this.startedUp) return undefined;
699
+ // Browser mode tools use viewport coordinates; skip OS-display capture so we
700
+ // do not mix coordinate frames on the first turn.
701
+ if (this.harness.getMode() === "browser") return undefined;
702
if (await sessionHasPriorTurn(this.session)) return undefined;
703
return this.initialScreenshot();
704
}
0 commit comments