You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vscode/src was never type-checked (the extension bundles with esbuild, which strips types), so the webview drifted from the shared browser code. The WS2 test-audit stack adds tsconfig.tooling.json to make typecheck and fixes the compile errors with behavior-preserving edits. One real UI gap remains:
vscode/src/webview/App.tsx still uses the pre-🤖 fix: stabilize streaming transcript seams #3201 auto-scroll wiring. useAutoScroll now expects a bottom sentinel with overflow-anchor CSS and the handleScrollContainer* / markUserScrollIntent handlers. The old innerRef / markUserInteraction fields no longer exist (they were undefined at runtime), so the webview's bottom-stick and user-scroll release behave as they did before the fix: degraded.
Fixed in the same stack (for context): StreamingBarrier called the removed getPendingCompactionModel() (a TypeError whenever it rendered with an aggregator); ChatComposer formatted the removed TOGGLE_MODE keybind.
Proposed fix
Port the webview transcript to the sentinel design the same way ChatPane does (sentinel element, overflow-anchor classes, wheel/mouse/touch/keydown handlers), and verify it in a VS Code dev host.
Generated with xum • Model: anthropic:claude-opus-5-5 • Thinking: high
Problem
vscode/srcwas never type-checked (the extension bundles with esbuild, which strips types), so the webview drifted from the shared browser code. The WS2 test-audit stack addstsconfig.tooling.jsontomake typecheckand fixes the compile errors with behavior-preserving edits. One real UI gap remains:vscode/src/webview/App.tsxstill uses the pre-🤖 fix: stabilize streaming transcript seams #3201 auto-scroll wiring.useAutoScrollnow expects a bottom sentinel withoverflow-anchorCSS and thehandleScrollContainer*/markUserScrollIntenthandlers. The oldinnerRef/markUserInteractionfields no longer exist (they wereundefinedat runtime), so the webview's bottom-stick and user-scroll release behave as they did before the fix: degraded.Fixed in the same stack (for context):
StreamingBarriercalled the removedgetPendingCompactionModel()(a TypeError whenever it rendered with an aggregator);ChatComposerformatted the removedTOGGLE_MODEkeybind.Proposed fix
Port the webview transcript to the sentinel design the same way
ChatPanedoes (sentinel element,overflow-anchorclasses, wheel/mouse/touch/keydown handlers), and verify it in a VS Code dev host.Generated with
xum• Model:anthropic:claude-opus-5-5• Thinking:high