Skip to content

feat(cli): Ctrl+click hyperlinks and right-click context menu in VP mode - #8439

Closed
chiga0 wants to merge 13 commits into
mainfrom
feat/vp-native-mouse-parity
Closed

feat(cli): Ctrl+click hyperlinks and right-click context menu in VP mode#8439
chiga0 wants to merge 13 commits into
mainfrom
feat/vp-native-mouse-parity

Conversation

@chiga0

@chiga0 chiga0 commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator

What this PR does

Virtual Viewport mode enables SGR mouse tracking, which makes the terminal hand every mouse event to the app — so two native terminal capabilities were silently lost: clicking a hyperlink to open it, and right-clicking for a context menu. This PR restores both while tracking stays on, so they coexist with wheel scrolling, scrollbar dragging, hover, and drag-to-select.

Ctrl+clicking a rendered hyperlink opens it in the browser. The URL is read from the composited frame cell under the pointer — ink preserves the OSC 8 escape in per-cell styles, so the hit-test is exact by construction: no markdown re-parsing, no column arithmetic, no CJK-width or soft-wrap drift. Opening goes through the existing secure launcher (http/https validation, no shell interpolation); non-http OSC 8 targets (mailto:, ssh:, …) degrade to a clipboard copy with a visible notice. Ctrl is the gesture because Shift/Option remain reserved for the documented terminal-selection bypass, and plain clicks keep their exact current behavior — nothing opens on an accidental click or a drag.

Right-clicking in the history viewport raises a small in-app context menu at the pointer: Open Link and Copy Link Address over a hyperlink, Copy Selection over an active text selection (no menu when neither applies). It is an absolutely-positioned overlay drawn last in the app layout, navigable by mouse hover/click or ↑/↓ + Enter, dismissed by Esc, clicking elsewhere, scrolling, or any dialog opening. While the menu is open it owns the pointer and keyboard: the scroll list, thought toggle, row hover/select, and composer click-to-position go quiet so clicks on the overlay can't also act on the content underneath, and the composer's navigation keys are scoped so they drive the menu instead of the prompt. Text selection is paused but deliberately preserved — opening the menu must not clear the selection the Copy Selection item is about to copy — and the selected text is snapshotted at open time so a frame that keeps streaming can't make the copy stale.

The ui.mouseTracking setting description and the user docs are refreshed to match: with tracking enabled the app now supplies these equivalents itself, and disabling it remains the escape hatch that hands the mouse fully back to the terminal.

Why it's needed

Since Virtualized History became the default (0.21.1), every VP-mode user lost two things their terminal used to do: URL clicks and the right-click menu — the events are captured by the app and dropped. PR #8198 added the ui.mouseTracking escape hatch, but with default settings both regressions remained, and the escape hatch costs wheel scrolling, hover, and drag-select. A prior in-app attempt at link clicks (removed during #8198 review) failed on Windows command injection, untransformed screen coordinates, and markdown column drift; this implementation eliminates all three by construction (secure launcher, the selection stack's coordinate path, and frame-cell hit-testing instead of text re-parsing).

Reviewer Test Plan

How to verify

Unit: cd packages/cli && npx vitest run src/ui/context-menu/ src/ui/utils/hyperlink-at.test.ts src/ui/selection/ (41 new tests covering URL extraction edge cases — BEL/ST/C1-ST terminators, OSC 8 params, tmux doubled-ESC form, wide-char snap; menu state machine; controller gestures; overlay rendering + keyboard).

Interactive (any OSC 8-capable terminal, VP mode default):

  1. Ask for a response containing a markdown link. Ctrl+click the link → browser opens the URL. Plain click or drag across it → nothing opens.
  2. Right-click the link → menu appears at the cursor with Open Link / Copy Link Address; click a row or use ↑/↓ + Enter; Esc dismisses; wheel while open dismisses.
  3. Drag-select some text, right-click inside the selection → Copy Selection item appears and copies.
  4. Right-click plain text with no selection → no menu. Wheel scrolling, scrollbar drag, hover, and double/triple-click selection all unchanged.

Automated E2E (tmux + mock model + raw SGR injection) ran the full matrix: baseline on global qwen 0.21.3 confirmed every gesture inert; the same injections on this branch open the link and raise the menu — 14/14 checks passed, plus a 6/6 focused re-verification on the final rebuilt bundle. Plan and results: .qwen/e2e-tests/vp-native-mouse-parity.md (local artifact).

Evidence (Before & After)

Before (global qwen 0.21.3): Ctrl+click / right-click on a rendered link → no reaction (pane byte-identical, browser log never created).
After (this branch): Ctrl+click → URL recorded by the $BROWSER stub; right-click → rounded menu box at the click cell (capture-pane shows the box and items); clicking Open Link records the URL and the menu disappears.

Tested on

OS Status
🍏 macOS
🪟 Windows ⚠️
🐧 Linux ⚠️

Environment

Local bundle (npm run build && npm run bundle, node dist/cli.js) under tmux 3.6a with FORCE_HYPERLINK=1, plus focused vitest suites.

Risk & Scope

  • Main risk or tradeoff: the menu is a new absolutely-positioned overlay in the VP layout — it renders nothing while closed (zero steady-state cost), and every other mouse consumer is gated while it is open; Ctrl+click adds 16-modifier SGR handling only on existing event paths. Known cosmetic nuance: Escape-dismissing the menu also clears the active selection (the text is already on the clipboard — drag-select copies on release); documented in the design doc as a follow-up candidate.
  • Not validated / out of scope: Windows/Linux interactive runs (launcher paths are shared, platform dispatch comes from the existing secure launcher); a Paste menu item and middle-click paste (no clipboard-read primitive yet — follow-up); hover URL preview; bare-URL heuristics for content that was never OSC 8-wrapped.
  • Breaking changes / migration notes: none. ui.mouseTracking semantics unchanged; default behavior gains two affordances.

Linked Issues

Related to the VP-mode mouse regressions mitigated by #8198 (the ui.mouseTracking escape hatch this supersedes for the default configuration).

中文说明

这个 PR 做了什么

虚拟视口(VP)模式启用了 SGR 鼠标跟踪,终端会把所有鼠标事件交给应用处理——因此两个原生终端能力被悄悄丢掉了:点击超链接打开它、右键弹出上下文菜单。本 PR 在保持鼠标跟踪开启的同时恢复了这两项能力,使其与滚轮滚动、滚动条拖拽、悬停和拖拽选择共存。

Ctrl+点击已渲染的超链接会在浏览器中打开它。URL 直接从指针下方合成帧单元格里读取——ink 会把 OSC 8 转义保留在每个单元格的样式里,因此命中测试在构造上就是精确的:不重新解析 markdown、不做列号计算、不受 CJK 宽字符和软换行影响。打开动作走既有的安全启动器(http/https 校验、无 shell 插值);非 http 的 OSC 8 目标(mailto:、ssh: 等)降级为复制到剪贴板并给出可见提示。选择 Ctrl 作为手势是因为 Shift/Option 仍保留给已文档化的"终端原生选择"绕过手势,且普通点击保持现有行为完全不变——误触或拖拽不会打开任何东西。

在历史视口中右键会在指针处弹出一个应用内上下文菜单:在超链接上显示 Open Link 和 Copy Link Address,在有文本选区时显示 Copy Selection(两者都不满足则不弹菜单)。它是应用布局最后绘制的绝对定位浮层,可用鼠标悬停/点击或 ↑/↓ + Enter 操作,Esc、点击他处、滚动或打开任何对话框都会关闭它。菜单打开期间它独占指针和键盘:滚动列表、思考折叠、行悬停/选择、输入框点击定位全部静默,避免点在菜单上的同时也作用于下方内容;composer 的导航键也被接管,用于操作菜单而非输入框。文本选择只是暂停而被刻意保留——打开菜单不能清掉 Copy Selection 正要复制的选区——且选中文本在打开时即快照,避免仍在流式输出的帧让复制内容过期。

ui.mouseTracking 设置描述和用户文档同步更新:跟踪开启时应用自身提供这些等价能力;关闭它仍是把鼠标完全交还终端的逃生开关。

为什么需要

自虚拟视口成为默认(0.21.1)以来,每个 VP 模式用户都失去了终端原本的两项能力:URL 点击和右键菜单——事件被应用捕获后直接丢弃。PR #8198 增加了 ui.mouseTracking 逃生开关,但默认配置下这两个回归依然存在,且该开关的代价是失去滚轮滚动、悬停和拖拽选择。此前一次应用内链接点击的尝试(在 #8198 评审中被移除)因 Windows 命令注入、未做坐标变换和 markdown 列号漂移而失败;本实现在构造上消除了全部三个问题(安全启动器、复用选择栈的坐标路径、用帧单元格命中测试替代文本重解析)。

评审者测试计划

如何验证

单元测试:cd packages/cli && npx vitest run src/ui/context-menu/ src/ui/utils/hyperlink-at.test.ts src/ui/selection/(41 个新测试,覆盖 URL 提取边界——BEL/ST/C1-ST 终止符、OSC 8 参数、tmux 双 ESC 形式、宽字符吸附;菜单状态机;控制器手势;浮层渲染与键盘)。

交互验证(任意支持 OSC 8 的终端,VP 模式默认开启):

  1. 让回复包含一个 markdown 链接。Ctrl+点击链接 → 浏览器打开该 URL;普通点击或拖拽划过 → 不打开。
  2. 右键点击链接 → 光标处出现含 Open Link / Copy Link Address 的菜单;点击菜单项或用 ↑/↓ + Enter;Esc 关闭;打开时滚动滚轮也会关闭。
  3. 拖拽选中一段文字后在选区内右键 → 出现 Copy Selection 项并可复制。
  4. 在无选区的纯文本上右键 → 不弹菜单。滚轮滚动、滚动条拖拽、悬停、双击/三击选择全部不变。

自动化 E2E(tmux + mock 模型 + 原始 SGR 注入)跑完了全部矩阵:在全局 qwen 0.21.3 上确认所有手势无反应的基线;同样的注入在本分支上能打开链接并弹出菜单——14/14 项通过,最终重建的 bundle 又做了 6/6 项聚焦复验。计划与结果见 .qwen/e2e-tests/vp-native-mouse-parity.md(本地工件)。

证据(前后对比)

修复前(全局 qwen 0.21.3):Ctrl+点击 / 右键点击已渲染链接 → 无反应(面板字节级一致,浏览器日志从未创建)。
修复后(本分支):Ctrl+点击 → $BROWSER 桩记录到 URL;右键 → 点击单元格处出现圆角菜单框(capture-pane 可见菜单框与菜单项);点击 Open Link 后记录 URL 且菜单消失。

测试平台

macOS ✅(已测);Windows / Linux ⚠️(未测,启动器路径共享、平台分发来自既有安全启动器)。

环境

本地 bundle(npm run build && npm run bundlenode dist/cli.js),tmux 3.6a + FORCE_HYPERLINK=1,另加聚焦 vitest 套件。

风险与范围

  • 主要风险/权衡:菜单是 VP 布局中新增的绝对定位浮层——关闭时不渲染任何内容(稳态零开销),打开时其他所有鼠标消费者被门控静默;Ctrl+点击仅在既有事件路径上增加了带 16 修饰位的 SGR 处理。已知的外观细节:用 Esc 关闭菜单会同时清除当前选区(文本已在剪贴板——拖选在松开时即复制);已记录在设计文档中作为后续候选。
  • 未验证/不在范围:Windows/Linux 交互验证;Paste 菜单项与中键粘贴(尚无剪贴板读取原语——后续跟进);悬停 URL 预览;对从未被 OSC 8 包裹的裸 URL 的启发式识别。
  • 破坏性变更/迁移说明:无。ui.mouseTracking 语义不变;默认配置新增两个交互能力。

关联 Issue

#8198 缓解的 VP 模式鼠标回归相关(本 PR 在默认配置下取代了该逃生开关的必要性)。

@chiga0

chiga0 commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator Author

E2E test report

Verified end-to-end via tmux (3.6a) + a mock OpenAI server that always replies with a markdown link, a $BROWSER stub that logs opened URLs, and raw SGR mouse-byte injection (tmux send-keys -H), with TMUX= unset + FORCE_HYPERLINK=1 so plain OSC 8 envelopes survive the render pipeline. Runtime isolated via QWEN_RUNTIME_DIR; the real ~/.qwen was never modified.

Baseline (global qwen 0.21.3, pre-fix): identical injections produced zero reaction — Ctrl+click never opened the browser (log never created), right-click left the pane byte-identical (no menu). Wheel scroll worked (VP owns the wheel).

Post-fix (this branch): 14/14 checks passed:

  • Ctrl+click on the link label → browser stub logged https://example.com/. Plain click and Ctrl+drag → no open.
  • Right-click on the link → rounded-border menu at the click cell with Open Link / Copy Link Address. Clicking Open Link logged the URL and closed the menu. Escape closed it and keyboard returned to the composer (typed text landed in the prompt; Enter through the menu did NOT leak as submit). Right-click on plain text with no selection → no menu (pane byte-identical). Wheel while open → menu closed.
  • Copy Selection: drag-selected (highlight verified via capture-pane -pe bg 48;5;240), right-click inside the selection → menu offered all three items; the highlight stayed visible while the menu was open.
  • Regressions: wheel scroll intact (up shifted visible content, down returned to bottom), plain click inert, sessions stable throughout (mock served 18+ requests, zero errors).

Rebuilt-bundle re-verification after review hardening: 6/6 focused checks byte-identical in menu geometry and behavior.

Unit coverage: 43 new module tests (URL extraction edge cases incl. BEL/ST/C1-ST terminators, OSC 8 params, tmux doubled-ESC form, wide-char snap; menu state machine; controller gestures incl. the crafted-https:// rejection fallback; overlay rendering + keyboard) plus 2 new selection-pause tests; 182 focused tests green overall. Full plan/results: .qwen/e2e-tests/vp-native-mouse-parity.md (local artifact).

Tested on macOS; Windows/Linux not run interactively (platform dispatch comes from the existing secure launcher).

@qwen-code-ci-bot

qwen-code-ci-bot commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator

Qwen Triage finishedview run. See the stage comments in this thread for the result.

Qwen Triage 已完成 —— 查看运行。结果见本线程中的各阶段评论。

@qwen-code-ci-bot

Copy link
Copy Markdown
Collaborator

Thanks for the PR!

Template looks good ✓

Problem: observed regression, not theory. VP mode (default since 0.21.1) enables SGR mouse tracking, so the terminal hands every mouse event to the app — native link clicks and the right-click menu are silently lost for every default-config user. The description carries a before/after baseline (both gestures inert on global qwen 0.21.3), and this is the acknowledged follow-up to #8198 / #8217, which mitigated the same regression behind the ui.mouseTracking escape hatch.

Direction: aligned. This completes an initiative already in the CHANGELOG (#8198, #8217) — the escape hatch costs wheel scrolling, hover, and drag-select, so restoring both affordances in-app under default settings is the right next step. No auth / sandbox / public-contract surface is touched.

Size: ~794 production-logic lines (+782 test, +439 docs, +4 schema mirror). Only 4 production lines touch a core path (packages/cli/src/config/settingsSchema.ts — the settings description string); everything else is packages/cli/src/ui/**. Since production lines exceed 500 and a core path is technically touched, flagging for maintainer awareness per the gate rules — the core touch itself is trivial.

Approach: the scope feels right. Both affordances map one-to-one to the two lost capabilities and share their infrastructure (frame-cell OSC 8 hit-testing, the selection stack's coordinate path, one gesture controller). Reading the URL from the composited frame cell instead of re-parsing markdown is exactly the path that avoids the prior attempt's failure modes — command injection, untransformed coordinates, and CJK/wrap column drift. Every edit earns its place (wiring, consumer gating, settings text, docs, design doc); no drive-by changes spotted.

Risk: no elevated risk signals — none of the changed files match the revert-correlated paths.

Moving on to code review. 🔍

中文说明

感谢贡献!

模板完整 ✓

问题:这是已观测到的回归,不是理论问题。VP 模式(0.21.1 起默认开启)启用了 SGR 鼠标跟踪,终端把所有鼠标事件交给应用处理——原生链接点击和右键菜单对每个默认配置的用户都被悄悄丢掉了。PR 描述带有 before/after 基线(全局 qwen 0.21.3 上两个手势均无反应),且这是 #8198 / #8217 已确认的后续工作(那两个 PR 用 ui.mouseTracking 逃生开关缓解了同一回归)。

方向:对齐。这补全了 CHANGELOG 中已有的工作(#8198#8217)——逃生开关的代价是失去滚轮滚动、悬停和拖拽选择,因此在默认配置下于应用内恢复这两项能力是正确的下一步。不触及 auth / sandbox / 公共契约面。

规模:约 794 行生产逻辑(另 +782 测试、+439 文档、+4 schema 镜像)。仅 4 行生产代码触及核心路径(packages/cli/src/config/settingsSchema.ts 的设置描述文本),其余全部在 packages/cli/src/ui/**。由于生产行数超过 500 且技术上触及核心路径,按 gate 规则提请维护者知悉——核心触面本身很小。

方案:范围合理。两项能力与两个丢失的原生能力一一对应,且共享基础设施(帧单元格 OSC 8 命中测试、选择栈坐标路径、同一个手势控制器)。从合成帧单元格读取 URL 而不是重新解析 markdown,正是避开此前尝试失败原因(命令注入、未变换坐标、CJK/软换行列漂移)的路径。每处改动都服务于目标(接线、消费者门控、设置文案、文档、设计文档),未发现顺手改动。

风险:无升级风险信号——改动文件均未命中与 revert 相关的高风险路径。

进入代码审查 🔍

Qwen Code · qwen3.8-max

Reviewed at 5a189e7d35fcbd9caf082c66e11895b9d3b30c69 · re-run with @qwen-code /triage

@qwen-code-ci-bot

qwen-code-ci-bot commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator

Code review

Read the full diff against my own baseline for this problem (frame-cell hit-test, reuse the existing secure launcher, a context-owned overlay with every other mouse consumer gated). The PR matches that baseline and goes past it in the right places. No correctness or security blockers found.

What I verified while reading:

  • Link opening reuses openBrowserSecurely from core — the launcher whose test suite already proves it rejects javascript:/file:/CRLF-injected URLs — so the prior attempt's Windows command-injection failure mode is gone by construction. Non-http(s) OSC 8 targets degrade to a clipboard copy; nothing reaches a shell.
  • The coordinate path is the selection stack's own (terminalToGrid + the new shared snapWideChar), so link hit-testing can't drift from where the highlight actually paints.
  • The OSC 8 parser terminates at any C0 control, not just the legal terminators — a malformed or hostile envelope can't smuggle control characters into the extracted URL. The one dependency assumption (ink 7.0.3 preserves OSC 8 in per-cell styles through compositing) is what CI's typecheck and a real-terminal E2E pin down; it can't be verified from the diff alone.
  • Menu-open ownership is complete: ScrollableList focus, row hover/select, composer click-to-position, and the selection controller are all gated (eventsPaused pauses selection without clearing it, which is exactly right since Copy Selection is about to offer it). Tracking upgrades to ?1003h only while the menu is open and drops back after, and a stranded menu is closed if a dialog opens mid-interaction.
  • Ctrl+click requires press and release in the same cell with Ctrl held throughout — a drag or a plain click can't open anything.

Two non-blocking observations, both already disclosed: Escape-dismissing the menu also clears the active selection (documented in the design doc as a follow-up), and the wheel tick that dismisses an open menu is consumed rather than also scrolling.

sequenceDiagram
    participant P1 as Terminal (SGR events)
    participant P2 as ContentMouseController
    participant P3 as ContextMenuContext
    participant P4 as ContextMenuOverlay
    participant P5 as Gated consumers
    P1->>P2: right-click
    P2->>P2: viewport hit-test, read frame cell for link or selection
    P2->>P3: openMenu with items and clamped position
    P3->>P4: render overlay at position
    P3-->>P5: go quiet, mouse and nav keys owned by the menu
    P1->>P2: hover, click, or scroll
    P2->>P3: execute item or close
    P3->>P4: unmount
    P3-->>P5: resume
Loading
Files changed (25 of 25 shown)
File What changed
docs/design/vp-native-mouse-parity.md Design doc: gestures, frame-cell hit-testing, menu lifecycle, known nuances
docs/users/configuration/settings.md Setting descriptions refreshed for the new in-app equivalents
docs/users/reference/keyboard-shortcuts.md Documents Ctrl+click and right-click in the VP shortcuts table
docs/users/support/troubleshooting.md Troubleshooting text aligned with the new behaviors
packages/cli/src/config/settingsSchema.ts Two settings description strings updated
packages/cli/src/ui/AppContainer.tsx Wraps the app in the new ContextMenuProvider
packages/cli/src/ui/components/HistoryItemDisplay.tsx Thought-toggle clicks go quiet while the menu is open
packages/cli/src/ui/components/InputPrompt.tsx Nav keys drive the open menu, any other key dismisses it
packages/cli/src/ui/components/MainContent.test.tsx Mocks the new controller for existing tests
packages/cli/src/ui/components/MainContent.tsx Mounts the controller, shares the selection query ref, gates list focus
packages/cli/src/ui/components/shared/RowMouseController.tsx Row hover/select paused while the menu is open
packages/cli/src/ui/components/shared/TextInputMouseController.tsx Composer click-to-position paused while the menu is open
packages/cli/src/ui/context-menu/ContentMouseController.test.tsx Gesture tests: Ctrl+click, drag rejection, launcher fallback, menu interaction
packages/cli/src/ui/context-menu/ContentMouseController.tsx The core controller: open links, build and own the menu
packages/cli/src/ui/context-menu/ContextMenuContext.test.tsx Provider state-machine tests
packages/cli/src/ui/context-menu/ContextMenuContext.tsx Menu state plus shared geometry helpers (size, clamp)
packages/cli/src/ui/context-menu/ContextMenuOverlay.test.tsx Overlay rendering and keyboard navigation tests
packages/cli/src/ui/context-menu/ContextMenuOverlay.tsx Absolutely-positioned menu box with arrow-key, Enter, Esc handling
packages/cli/src/ui/layouts/DefaultAppLayout.tsx Draws the overlay last so it paints over the transcript
packages/cli/src/ui/selection/selection-coords.ts Extracts snapWideChar so both consumers share the wide-char snap
packages/cli/src/ui/selection/use-text-selection.test.tsx Selection-pause tests (no new selection, existing one preserved)
packages/cli/src/ui/selection/use-text-selection.tsx Adds eventsPaused and exposes the live selection via a query ref
packages/cli/src/ui/utils/hyperlink-at.test.ts OSC 8 URL extraction edge cases (terminators, params, tmux form)
packages/cli/src/ui/utils/hyperlink-at.ts Extracts the OSC 8 URI carried in a frame cell's styles
packages/vscode-ide-companion/schemas/settings.schema.json Mirrors the description change into the IDE companion schema

Test evidence

This is an unattended CI run — per triage rules no PR code is built or executed here. The evidence is the PR's own CI, fetched via the API at review time:

Final CI results for 5a189e7 (auto-updated by the triage finalize job after CI completed):

Check Conclusion
Test (ubuntu-latest, Node 22.x) ❌ failure
Classify PR ✅ success
Desktop Shell (ubuntu-22.04) ✅ success
Post Coverage Comment (ubuntu-latest, 22.x) ✅ success
web-shell E2E Smoke (ubuntu-latest, Node 22.x) ✅ success

One row per check name (latest run); skipped checks omitted; failures sort first. / 每个检查名一行(取最新一次运行),省略 skipped,失败项排在最前。

At review time the ubuntu unit/test job is still running (the suite takes ~30 minutes); macOS/Windows legs are skipped on this event, and nothing has failed so far. The finalize workflow updates the table once CI settles.

Not verified here, explicitly: interactive gesture behavior. The PR thread carries an E2E report from the author (tmux + mock model + raw SGR injection, 14/14 checks on macOS) — that is the author's claim, not independently re-run. Sandboxed verification would settle it: @qwen-code /tmux — the gesture matrix (Ctrl+click opens, right-click raises the menu, keyboard navigation, dismiss paths) is behavior unit tests can't pin, and the author's interactive run is macOS-only; @qwen-code /verify adds A/B load-bearing proof against the base build if wanted.

中文说明

代码审查

在给出我自己的独立方案(帧单元格命中测试、复用既有安全启动器、context 持有的浮层并门控其余鼠标消费者)之后通读了全部 diff。PR 与该基线一致,且在正确的方向上做得更多。未发现正确性或安全性阻塞问题。

核查要点:链接打开复用 core 的 openBrowserSecurely(其测试已证明拒绝 javascript:/file:/CRLF 注入 URL),从构造上消除了此前尝试的 Windows 命令注入问题;坐标路径直接复用选择栈(terminalToGrid + 新提取的共享 snapWideChar),命中测试不会与高亮位置漂移;OSC 8 解析器在任何 C0 控制符处终止,恶意包裹无法向 URL 注入控制字符;菜单打开期间的所有权是完整的(滚动列表、行悬停/选择、输入框点击定位、选择控制器全部门控,选择只暂停不清除);Ctrl+点击要求按下与释放在同一单元格且全程按住 Ctrl。唯一依赖假设(ink 7.0.3 合成帧保留 OSC 8 单元格样式)由 CI typecheck 与真实终端 E2E 兜底。两个非阻塞观察点均已披露:Esc 关闭菜单会同时清除选区;用于关闭菜单的那次滚轮事件被消费、不同时滚动。

测试证据

无人值守 CI 运行——按 triage 规则不构建、不执行 PR 代码。以上证据来自 PR 自身 CI(API 实时获取):ubuntu 单元/测试作业审查时仍在运行(约 30 分钟),macOS/Windows 在本事件下跳过,目前无失败。finalize 工作流会在 CI 结束后更新表格。此处未验证交互手势行为;PR 线程中的 E2E 报告为作者自述(macOS,14/14),未独立复跑。沙箱验证可以定论:@qwen-code /tmux 以真实用户方式驱动 TUI 验证手势矩阵(作者交互验证仅覆盖 macOS);如需对基础构建做 A/B 承重证明可另触发 @qwen-code /verify

Qwen Code · qwen3.8-max

Reviewed at 5a189e7d35fcbd9caf082c66e11895b9d3b30c69 · re-run with @qwen-code /triage

@github-actions

github-actions Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

Code Coverage Summary

Package Lines Statements Functions Branches
CLI 83.33% 83.33% 89.31% 82.43%
Core 87.67% 87.67% 89.27% 86.24%
CLI Package - Full Text Report
-------------------|---------|----------|---------|---------|-------------------
File               | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s 
-------------------|---------|----------|---------|---------|-------------------
All files          |   83.33 |    82.43 |   89.31 |   83.33 |                   
 src               |   84.77 |    80.78 |   88.39 |   84.77 |                   
  cli.ts           |   95.68 |    84.11 |     100 |   95.68 | ...60-561,565-566 
  gemini.tsx       |   72.66 |    76.99 |   80.76 |   72.66 | ...1280-1284,1405 
  ...ractiveCli.ts |   86.49 |    80.46 |   87.93 |   86.49 | ...2926,2932,2994 
  ...liCommands.ts |   89.11 |    85.15 |      90 |   89.11 | ...90,507,541,663 
  ...ActiveAuth.ts |     100 |     87.5 |     100 |     100 | 66-80             
 ...cp-integration |   70.24 |     72.9 |   89.96 |   70.24 |                   
  acpAgent.ts      |   69.93 |    72.78 |      90 |   69.93 | ...77,11882-11884 
  authMethods.ts   |      92 |       60 |     100 |      92 | 33-34             
  errorCodes.ts    |       0 |        0 |       0 |       0 | 1-22              
  ...ion-skills.ts |     100 |    88.23 |     100 |     100 | 17,32             
  generation.ts    |    97.1 |    81.25 |     100 |    97.1 | 109,112           
  ...DirContext.ts |     100 |      100 |     100 |     100 |                   
 ...ration/service |   97.04 |    95.71 |   93.33 |   97.04 |                   
  filesystem.ts    |   97.04 |    95.71 |   93.33 |   97.04 | ...21-122,238-239 
 ...ration/session |   90.88 |    86.21 |   96.29 |   90.88 |                   
  Session.ts       |   89.94 |     84.6 |   95.41 |   89.94 | ...81,10308-10312 
  ...entTracker.ts |    96.8 |    89.36 |      90 |    96.8 | 137-143,221       
  ...projection.ts |   98.57 |    93.29 |     100 |   98.57 | ...76,333,344,356 
  ...stop-guard.ts |     100 |    98.07 |     100 |     100 | 37,127            
  ...eplay-page.ts |   93.22 |    90.81 |     100 |   93.22 | 72,83-86,112-122  
  ...y-replayer.ts |   98.53 |    95.52 |     100 |   98.53 | 238-240           
  index.ts         |       0 |        0 |       0 |       0 | 1-40              
  ...ssionUtils.ts |   89.76 |    87.32 |     100 |   89.76 | ...54-270,326-328 
  tasksSnapshot.ts |    94.3 |     87.5 |     100 |    94.3 | 65-71             
  ...on-tracker.ts |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...ssion/emitters |   95.79 |    93.52 |   96.66 |   95.79 |                   
  ...ageEmitter.ts |   95.34 |    94.28 |     100 |   95.34 | 52-59             
  PlanEmitter.ts   |     100 |       90 |     100 |     100 | 66                
  base-emitter.ts  |   78.26 |       75 |     100 |   78.26 | 23-24,26-28       
  index.ts         |       0 |        0 |       0 |       0 | 1-10              
  ...ll-emitter.ts |   99.18 |    96.47 |     100 |   99.18 | 355-356           
 ...ession/rewrite |    91.8 |    89.13 |   94.44 |    91.8 |                   
  LlmRewriter.ts   |    82.4 |     86.2 |     100 |    82.4 | ...,88-89,166-170 
  ...Middleware.ts |   96.96 |    88.09 |     100 |   96.96 | 144,152-154       
  TurnBuffer.ts    |     100 |      100 |     100 |     100 |                   
  config.ts        |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  types.ts         |       0 |        0 |       0 |       0 | 1                 
 src/agent-view    |   89.03 |    81.37 |   89.09 |   89.03 |                   
  ...t-cli-argv.ts |     100 |      100 |     100 |     100 |                   
  protocol.ts      |     100 |      100 |     100 |     100 |                   
  ...sor-client.ts |   80.38 |    72.54 |   76.66 |   80.38 | ...22-626,652-656 
  ...or-process.ts |   96.61 |    89.47 |   84.61 |   96.61 | 129-130,150-151   
  ...sor-runner.ts |    84.9 |     75.6 |      85 |    84.9 | ...44,468,471-481 
  ...sor-server.ts |   85.71 |    83.06 |   95.45 |   85.71 | ...67-468,471-488 
  ...isor-store.ts |   97.73 |    81.16 |     100 |   97.73 | ...92,594,607,643 
  ...nal-bridge.ts |   93.98 |     91.3 |   83.33 |   93.98 | 228-238           
 src/commands      |   89.43 |    72.18 |   64.51 |   89.43 |                   
  auth.ts          |     100 |    83.33 |     100 |     100 | 11,14             
  channel.ts       |   55.55 |      100 |       0 |   55.55 | 18-22,30-40       
  extensions.tsx   |   96.77 |      100 |      50 |   96.77 | 39                
  hooks.tsx        |   66.66 |      100 |       0 |   66.66 | 20-24             
  mcp.ts           |   95.45 |      100 |      50 |   95.45 | 31                
  review.ts        |   98.59 |      100 |      50 |   98.59 | 82                
  serve.ts         |   87.35 |    66.66 |     100 |   87.35 | ...97,709,725-729 
  sessions.ts      |     100 |      100 |      50 |     100 |                   
  update.ts        |   98.13 |    94.44 |   66.66 |   98.13 | 82-83             
 ...mmands/channel |    88.3 |    87.62 |    90.3 |    88.3 |                   
  channel-cwd.ts   |     100 |      100 |     100 |     100 |                   
  ...l-registry.ts |      80 |    84.61 |      80 |      80 | 37-40,49-52,63-66 
  ...entry-path.ts |      75 |       50 |     100 |      75 | 8-9               
  config-utils.ts  |   95.87 |    96.35 |     100 |   95.87 | ...08-213,271-274 
  configure.ts     |    14.7 |      100 |       0 |    14.7 | 18-21,23-84       
  daemon-worker.ts |    93.9 |    85.28 |   94.11 |    93.9 | ...1211,1218-1219 
  loop-runtime.ts  |   91.66 |      100 |      50 |   91.66 | 15,22             
  ...classifier.ts |   98.49 |    96.51 |     100 |   98.49 | 115-116,161       
  ...tact-store.ts |   93.51 |    87.65 |     100 |   93.51 | ...71,288-289,337 
  pairing.ts       |   72.85 |      100 |      50 |   72.85 | 22-28,57-68       
  pidfile.ts       |   95.55 |       90 |     100 |   95.55 | ...50-251,315-316 
  proxy.ts         |     100 |      100 |     100 |     100 |                   
  reload.ts        |    77.5 |    86.95 |      75 |    77.5 | 72-84,93-97       
  runtime.ts       |   82.43 |    86.44 |     100 |   82.43 | ...87-191,251-253 
  set.ts           |   75.72 |    85.71 |      50 |   75.72 | 65-83,111-116     
  start.ts         |    85.8 |    82.17 |      88 |    85.8 | ...85,591-594,606 
  ...ure-format.ts |   93.65 |    82.45 |     100 |   93.65 | ...42,48-49,74-75 
  status.ts        |   78.57 |    59.25 |   66.66 |   78.57 | ...36-137,150-161 
  stop.ts          |   57.83 |    82.35 |      50 |   57.83 | ...3,74-76,85-111 
 ...nds/extensions |   88.82 |    87.82 |   87.09 |   88.82 |                   
  consent.ts       |   72.53 |       90 |   42.85 |   72.53 | ...86-142,157-163 
  disable.ts       |     100 |       90 |     100 |     100 | 30                
  enable.ts        |     100 |    91.66 |     100 |     100 | 38                
  install.ts       |   82.95 |    81.57 |      75 |   82.95 | ...96-199,202-211 
  link.ts          |     100 |      100 |     100 |     100 |                   
  list.ts          |     100 |     90.9 |     100 |     100 | 18                
  new.ts           |     100 |      100 |     100 |     100 |                   
  settings.ts      |   99.15 |      100 |   83.33 |   99.15 | 151               
  sources.ts       |   93.42 |    87.09 |   92.85 |   93.42 | ...4-66,96-98,167 
  uninstall.ts     |   74.57 |       40 |   66.66 |   74.57 | 45-47,60-67,70-73 
  update.ts        |   96.71 |    97.05 |     100 |   96.71 | 114-118           
  utils.ts         |      75 |    55.55 |     100 |      75 | ...27-131,133-137 
 ...les/mcp-server |       0 |        0 |       0 |       0 |                   
  example.ts       |       0 |        0 |       0 |       0 | 1-60              
 ...amples/starter |       0 |        0 |       0 |       0 |                   
  example.ts       |       0 |        0 |       0 |       0 | 1-64              
 src/commands/mcp  |   90.17 |    84.39 |   83.33 |   90.17 |                   
  add.ts           |    99.3 |    96.07 |     100 |    99.3 | 154-155           
  approve.ts       |   76.19 |     87.5 |   66.66 |   76.19 | ...,89-99,114-124 
  list.ts          |   92.59 |    83.87 |      80 |   92.59 | ...62-164,180-181 
  reconnect.ts     |   78.85 |    66.66 |   85.71 |   78.85 | 42-55,169-191     
  remove.ts        |     100 |       80 |     100 |     100 | 21-25             
 ...ommands/review |   86.54 |    87.75 |    87.2 |   86.54 |                   
  agent-prompt.ts  |    92.1 |    92.95 |   96.42 |    92.1 | ...1954,2057-2136 
  base-tree.ts     |   76.16 |    80.76 |   77.77 |   76.16 | ...50-371,373-386 
  capture-local.ts |   68.57 |     90.9 |      75 |   68.57 | 107-111,158-189   
  ...k-coverage.ts |   46.92 |    13.33 |   66.66 |   46.92 | ...35-240,253-263 
  cleanup.ts       |   89.12 |    82.22 |   83.33 |   89.12 | ...99-504,506-507 
  ...ent-status.ts |   93.03 |    83.87 |   83.33 |   93.03 | 291,531-551       
  ...ose-review.ts |   96.11 |    91.88 |   95.83 |   96.11 | ...1792,1820-1842 
  cost-ledger.ts   |   94.67 |    95.86 |   78.57 |   94.67 | ...00-501,541-551 
  drive.ts         |   72.22 |    88.88 |   72.72 |   72.22 | ...34-469,473-487 
  extract-step.ts  |   91.36 |    90.62 |   88.88 |   91.36 | ...90-707,714-729 
  fetch-pr.ts      |    76.7 |    68.75 |   63.63 |    76.7 | ...95,417,450-455 
  findings.ts      |   89.35 |    89.13 |   95.45 |   89.35 | ...15-918,927-928 
  load-rules.ts    |   26.41 |      100 |   16.66 |   26.41 | ...41-153,155-156 
  mock-provider.ts |   95.44 |    90.25 |   89.47 |   95.44 | 145,690-709       
  parse-args.ts    |   99.32 |    96.42 |     100 |   99.32 | 400,473           
  plan-diff.ts     |   64.04 |      100 |   66.66 |   64.04 | 127-163           
  pr-context.ts    |   81.77 |    80.86 |   92.85 |   81.77 | ...1043,1072-1074 
  presubmit.ts     |   83.75 |    92.72 |   88.88 |   83.75 | ...77-578,655-685 
  ...ish-assets.ts |   77.24 |    82.75 |   71.42 |   77.24 | ...89-535,537-548 
  ...ve-anchors.ts |   77.77 |    88.88 |      75 |   77.77 | ...77-182,194-211 
  run.ts           |   82.16 |    87.12 |   91.66 |   82.16 | ...52,468-516,529 
  save-artifact.ts |   79.13 |    79.68 |   88.23 |   79.13 | ...50-381,383-386 
  script-lint.ts   |   83.67 |    78.41 |   88.88 |   83.67 | ...59-773,775-797 
  submit.ts        |   83.88 |    83.11 |    90.9 |   83.88 | ...66-470,570-606 
  test-delta.ts    |   87.13 |    91.46 |      75 |   87.13 | 206-237,477-485   
  test-efficacy.ts |   88.04 |    84.12 |   95.45 |   88.04 | ...2602,2610-2630 
  test-plan.ts     |   91.44 |    91.39 |   89.47 |   91.44 | ...38-839,903-920 
 ...w/__fixtures__ |     100 |      100 |     100 |     100 |                   
  ...r-default.mjs |     100 |      100 |     100 |     100 |                   
  ...der-empty.mjs |     100 |      100 |     100 |     100 |                   
  ...der-named.mjs |     100 |      100 |     100 |     100 |                   
 ...nds/review/lib |   96.79 |    94.28 |   97.02 |   96.79 |                   
  agent-briefs.ts  |   98.83 |      100 |       0 |   98.83 | 662-663           
  anchors.ts       |     100 |    94.79 |     100 |     100 | ...33,169,178,225 
  assets.ts        |     100 |      100 |     100 |     100 |                   
  authorization.ts |    92.4 |    92.59 |     100 |    92.4 | 127-133           
  budget.ts        |     100 |      100 |     100 |     100 |                   
  coverage.ts      |   95.73 |    95.21 |   95.45 |   95.73 | ...13,350,459-476 
  deadline.ts      |   97.68 |    91.22 |     100 |   97.68 | 140-141,190,352   
  diff-flags.ts    |     100 |        0 |     100 |     100 | 63                
  diff-plan.ts     |   98.73 |    93.01 |     100 |   98.73 | ...41,264,290-291 
  effort.ts        |     100 |      100 |     100 |     100 |                   
  gh.ts            |   85.92 |    91.11 |   73.33 |   85.92 | ...32,269-270,297 
  git.ts           |   97.64 |    95.65 |     100 |   97.64 | 180-181           
  heavy.ts         |     100 |      100 |     100 |     100 |                   
  inline-counts.ts |     100 |      100 |     100 |     100 |                   
  ledger.ts        |     100 |      100 |     100 |     100 |                   
  local-diff.ts    |    84.4 |    88.46 |     100 |    84.4 | ...63-473,475-483 
  merge-base.ts    |     100 |      100 |     100 |     100 |                   
  path-rules.ts    |     100 |      100 |     100 |     100 |                   
  paths.ts         |     100 |     87.5 |     100 |     100 | 92                
  prompt-record.ts |   95.57 |     87.5 |     100 |   95.57 | ...34,173-174,180 
  receipt.ts       |     100 |      100 |     100 |     100 |                   
  report.ts        |   94.68 |    93.75 |     100 |   94.68 | 187-191           
  retirement.ts    |     100 |    88.75 |     100 |     100 | ...64-265,284,383 
  review-footer.ts |     100 |      100 |     100 |     100 |                   
  roster.ts        |     100 |    94.23 |     100 |     100 | 143,161,206       
  shell-quote.ts   |     100 |      100 |     100 |     100 |                   
  test-utils.ts    |     100 |      100 |     100 |     100 |                   
  transcripts.ts   |   96.49 |    94.44 |     100 |   96.49 | ...98,284-285,309 
  ...pace-scope.ts |     100 |    96.96 |     100 |     100 | 172               
  workspaces.ts    |     100 |     95.9 |     100 |     100 | ...27,452,499,512 
  worktree.ts      |     100 |      100 |     100 |     100 |                   
 ...mands/sessions |   91.56 |    86.95 |   83.33 |   91.56 |                   
  common.ts        |     100 |      100 |     100 |     100 |                   
  list.ts          |   90.96 |    86.66 |   81.81 |   90.96 | 208-219,221-222   
 src/config        |   94.42 |    88.91 |   95.65 |   94.42 |                   
  auth.ts          |   89.35 |    83.56 |     100 |   89.35 | ...97-298,314-315 
  ...eMcpImport.ts |   87.91 |    81.52 |     100 |   87.91 | ...63-371,453-454 
  compile-cache.ts |     100 |      100 |     100 |     100 |                   
  config.ts        |   88.93 |    88.61 |   83.78 |   88.93 | ...2456,2458-2466 
  ...cy-monitor.ts |   88.75 |    76.19 |     100 |   88.75 | ...3,90-92,98,101 
  ...ust-policy.ts |   83.04 |    88.49 |     100 |   83.04 | ...39,253,352-353 
  ...heme-names.ts |     100 |      100 |     100 |     100 |                   
  environment.ts   |   94.33 |    89.61 |   94.73 |   94.33 | ...35-639,655-656 
  ...le-watcher.ts |   90.86 |    83.65 |   95.83 |   90.86 | ...23-325,370,418 
  ...resh-state.ts |   90.57 |    97.29 |   93.75 |   90.57 | 137-142,146-152   
  ...ime-reload.ts |     100 |    69.69 |     100 |     100 | ...12-113,122-123 
  hot-reload.ts    |     100 |    89.13 |     100 |     100 | 47,172-178,238    
  keyBindings.ts   |   97.43 |       50 |     100 |   97.43 | 236-239           
  ...ngsAdapter.ts |     100 |    94.11 |     100 |     100 | 64                
  ...ig-watcher.ts |   95.17 |    83.05 |     100 |   95.17 | ...78,200,292-293 
  ...er-secrets.ts |   98.97 |    96.87 |     100 |   98.97 | 85                
  mcpApprovals.ts  |   96.55 |    95.55 |     100 |   96.55 | 223-224,229-231   
  mcpJson.ts       |     100 |      100 |     100 |     100 |                   
  mcpServers.ts    |   92.85 |     87.5 |     100 |   92.85 | 46-47             
  ...idersScope.ts |      95 |    94.73 |     100 |      95 | 11-12             
  ...abledTools.ts |     100 |      100 |     100 |     100 |                   
  ...comparison.ts |     100 |      100 |     100 |     100 |                   
  ...n-settings.ts |   99.15 |    93.75 |     100 |   99.15 | 63                
  sandboxConfig.ts |   61.64 |    71.87 |   66.66 |   61.64 | ...54-68,73,77-89 
  ...ings-cache.ts |   98.26 |    97.14 |     100 |   98.26 | 201-202           
  settings.ts      |   90.99 |     92.3 |      90 |   90.99 | ...1006,1008-1009 
  ...ingsSchema.ts |     100 |      100 |     100 |     100 |                   
  ...ngsWatcher.ts |   95.54 |    88.34 |     100 |   95.54 | ...28,277-278,293 
  ...d-env-keys.ts |     100 |      100 |     100 |     100 |                   
  ...l-settings.ts |     100 |      100 |     100 |     100 |                   
  ...paths-lite.ts |   89.47 |       88 |     100 |   89.47 | 43-44,53-54,56-57 
  ...tedFolders.ts |   93.42 |    94.21 |     100 |   93.42 | ...96-397,433-444 
 ...nfig/migration |   95.23 |    77.77 |   83.33 |   95.23 |                   
  index.ts         |   95.65 |     87.5 |     100 |   95.65 | 117-118           
  scheduler.ts     |   96.55 |    77.77 |     100 |   96.55 | 19-20             
  types.ts         |       0 |        0 |       0 |       0 | 1                 
 ...ation/versions |   94.91 |      100 |     100 |   94.91 |                   
  ...-v2-shared.ts |     100 |      100 |     100 |     100 |                   
  v1-to-v2.ts      |   81.75 |      100 |     100 |   81.75 | ...28-229,231-247 
  v2-to-v3.ts      |     100 |      100 |     100 |     100 |                   
  v3-to-v4.ts      |     100 |      100 |     100 |     100 |                   
  v5-to-v4.ts      |      96 |      100 |     100 |      96 | 94-95,99          
 src/core          |     100 |      100 |     100 |     100 |                   
  auth.ts          |     100 |      100 |     100 |     100 |                   
  initializer.ts   |     100 |      100 |     100 |     100 |                   
  theme.ts         |     100 |      100 |     100 |     100 |                   
 src/dualOutput    |    71.8 |    70.31 |   66.66 |    71.8 |                   
  ...tputBridge.ts |   71.95 |    70.96 |   68.42 |   71.95 | ...08-409,417-420 
  ...utContext.tsx |     100 |      100 |     100 |     100 |                   
  index.ts         |       0 |        0 |       0 |       0 | 1-8               
 src/export        |       0 |        0 |       0 |       0 |                   
  index.ts         |       0 |        0 |       0 |       0 | 1-7               
 src/generated     |     100 |      100 |     100 |     100 |                   
  git-commit.ts    |     100 |      100 |     100 |     100 |                   
 src/hooks         |     100 |      100 |     100 |     100 |                   
  ...elete-hook.ts |     100 |      100 |     100 |     100 |                   
 src/i18n          |   85.98 |    81.92 |   89.65 |   85.98 |                   
  index.ts         |   73.45 |    77.77 |      90 |   73.45 | ...70-271,294-299 
  languages.ts     |   93.07 |     92.3 |   85.71 |   93.07 | ...35,164-169,184 
  ...nslateKeys.ts |     100 |      100 |     100 |     100 |                   
  ...lationDict.ts |   93.33 |    66.66 |     100 |   93.33 | 15                
 src/i18n/locales  |     100 |      100 |     100 |     100 |                   
  ca.js            |     100 |      100 |     100 |     100 |                   
  de.js            |     100 |      100 |     100 |     100 |                   
  en.js            |     100 |      100 |     100 |     100 |                   
  fr.js            |     100 |      100 |     100 |     100 |                   
  ja.js            |     100 |      100 |     100 |     100 |                   
  pt.js            |     100 |      100 |     100 |     100 |                   
  ru.js            |     100 |      100 |     100 |     100 |                   
  zh-TW.js         |     100 |      100 |     100 |     100 |                   
  zh.js            |     100 |      100 |     100 |     100 |                   
 ...nonInteractive |      80 |    76.31 |   81.35 |      80 |                   
  session.ts       |   84.08 |    75.27 |   93.61 |   84.08 | ...1007,1016-1026 
  types.ts         |    42.5 |      100 |   33.33 |    42.5 | ...31-632,635-636 
 ...active/control |   75.63 |    89.09 |      80 |   75.63 |                   
  ...rolContext.ts |    6.45 |        0 |       0 |    6.45 | 56-95             
  ...Dispatcher.ts |   91.79 |    92.45 |   88.88 |   91.79 | ...49-367,387,390 
  ...rolService.ts |    6.89 |        0 |       0 |    6.89 | 46-188            
 ...ol/controllers |   42.27 |    64.66 |   48.64 |   42.27 |                   
  ...Controller.ts |   39.49 |      100 |      80 |   39.49 | 88-92,127-210     
  ...Controller.ts |       0 |        0 |       0 |       0 | 1-56              
  ...Controller.ts |   53.96 |    65.71 |   58.33 |   53.96 | ...37-642,644-649 
  ...Controller.ts |   14.06 |      100 |       0 |   14.06 | ...82-117,130-133 
  ...Controller.ts |   37.92 |    60.71 |   46.66 |   37.92 | ...41-653,662-691 
 .../control/types |       0 |        0 |       0 |       0 |                   
  serviceAPIs.ts   |       0 |        0 |       0 |       0 | 1                 
 ...Interactive/io |    98.1 |    94.13 |   95.23 |    98.1 |                   
  ...putAdapter.ts |   97.98 |     93.2 |   98.07 |   97.98 | ...1415,1431-1432 
  ...putAdapter.ts |      96 |    91.66 |   85.71 |      96 | 51-52             
  ...nputReader.ts |     100 |    94.73 |     100 |     100 | 67                
  ...putAdapter.ts |   98.49 |      100 |   90.47 |   98.49 | 85-86,126-127     
  index.ts         |     100 |      100 |     100 |     100 |                   
 src/patches       |       0 |        0 |       0 |       0 |                   
  is-in-ci.ts      |       0 |        0 |       0 |       0 | 1-17              
 src/remoteInput   |   87.31 |    75.32 |   88.23 |   87.31 |                   
  ...utContext.tsx |     100 |      100 |     100 |     100 |                   
  ...putWatcher.ts |   88.01 |       76 |   93.33 |   88.01 | ...49-350,361-364 
  index.ts         |       0 |        0 |       0 |       0 | 1-8               
 src/runtime       |   99.61 |    95.04 |     100 |   99.61 |                   
  ...livery-ipc.ts |     100 |     90.9 |     100 |     100 | 94,106,134        
  ...l-delivery.ts |     100 |      100 |     100 |     100 |                   
  cpu-percent.ts   |     100 |      100 |     100 |     100 |                   
  ...erver-name.ts |     100 |      100 |     100 |     100 |                   
  ...-constants.ts |     100 |      100 |     100 |     100 |                   
  ...-summaries.ts |   86.66 |       50 |     100 |   86.66 | 11,19             
  ...ber-errors.ts |     100 |    95.32 |     100 |     100 | 53,93-94,172,192  
  ...ls-mapping.ts |     100 |      100 |     100 |     100 |                   
 src/serve         |   87.17 |    83.29 |   90.31 |   87.17 |                   
  ...tp-enabled.ts |     100 |      100 |     100 |     100 |                   
  ...ion-bridge.ts |     100 |      100 |     100 |     100 |                   
  auth.ts          |    93.4 |    92.95 |     100 |    93.4 | ...19-320,323-325 
  ...em-adapter.ts |     100 |      100 |     100 |     100 |                   
  capabilities.ts  |     100 |    98.07 |     100 |     100 | 670               
  ...cp-command.ts |     100 |      100 |     100 |     100 |                   
  ...horization.ts |   92.79 |    93.33 |    87.5 |   92.79 | 75-80,135-136     
  ...op-mcp-ipc.ts |   81.06 |    73.68 |   94.11 |   81.06 | ...37-242,267,289 
  ...nt-service.ts |   93.89 |    86.61 |     100 |   93.89 | ...66-468,475,477 
  ...-selection.ts |     100 |      100 |     100 |     100 |                   
  ...ings-store.ts |    86.2 |     92.4 |   95.83 |    86.2 | ...94-206,372-375 
  ...ebhook-ipc.ts |    98.5 |    86.66 |     100 |    98.5 | 47                
  ...iagnostics.ts |     100 |      100 |     100 |     100 |                   
  ...worker-env.ts |     100 |      100 |     100 |     100 |                   
  ...rker-group.ts |   87.27 |     85.2 |     100 |   87.27 | ...10,816-820,838 
  ...er-manager.ts |   89.39 |    83.88 |   93.33 |   89.39 | ...98,711,722-724 
  ...tartup-ipc.ts |   97.72 |    96.66 |     100 |   97.72 | 88-89             
  ...supervisor.ts |   92.42 |    84.44 |    97.1 |   92.42 | ...1462,1516-1520 
  ...e-grouping.ts |     100 |    94.28 |     100 |     100 | 71,137            
  core-runtime.ts  |     100 |      100 |     100 |     100 |                   
  ...ub-session.ts |    90.1 |    77.83 |   94.73 |    90.1 | ...1014,1021-1026 
  daemon-logger.ts |    82.2 |    77.42 |   91.76 |    82.2 | ...1720,1747-1753 
  ...trics-ring.ts |     100 |      100 |     100 |     100 |                   
  ...s-provider.ts |   68.04 |    52.77 |     100 |   68.04 | ...44-249,282-290 
  daemon-status.ts |   98.47 |    90.59 |     100 |   98.47 | ...1197,1199-1200 
  debug-mode.ts    |     100 |      100 |     100 |     100 |                   
  demo.ts          |     100 |      100 |     100 |     100 |                   
  env-snapshot.ts  |   93.37 |    85.18 |     100 |   93.37 | 114-117,195-202   
  ...-scheduler.ts |   87.34 |    83.87 |     100 |   87.34 | 33-36,48-50,79-81 
  ...d-provider.ts |   92.06 |    86.95 |     100 |   92.06 | ...72,287-293,316 
  ...-path-argv.ts |     100 |      100 |     100 |     100 |                   
  ...h-settings.ts |   94.41 |    88.75 |     100 |   94.41 | ...24,702,718,728 
  fast-path.ts     |   90.61 |    81.25 |   95.45 |   90.61 | ...02-511,577-578 
  ...ration-sse.ts |   42.55 |    33.33 |     100 |   42.55 | 23-24,30,33-56    
  health-query.ts  |     100 |      100 |     100 |     100 |                   
  index.ts         |       0 |        0 |       0 |       0 | 1-143             
  ...e-observer.ts |   89.89 |    83.24 |      96 |   89.89 | ...11-512,541-543 
  ...back-binds.ts |     100 |    88.88 |     100 |     100 | 32                
  ...-workspace.ts |    90.9 |    85.71 |     100 |    90.9 | ...30-131,142-143 
  ...iders-edit.ts |     100 |    82.14 |     100 |     100 | 58-60,65,81       
  ...ory-picker.ts |     100 |    86.95 |     100 |     100 | 36,66,92          
  ...sion-audit.ts |     100 |      100 |   93.33 |     100 |                   
  rate-limit.ts    |   92.77 |    88.42 |     100 |   92.77 | ...93-295,307-309 
  ...qwen-serve.ts |   83.48 |    79.38 |      75 |   83.48 | ...7164,7170-7171 
  ...tup-errors.ts |     100 |      100 |     100 |     100 |                   
  ...-keepalive.ts |   94.19 |    88.57 |     100 |   94.19 | ...26,530-531,571 
  ...-lifecycle.ts |     100 |      100 |     100 |     100 |                   
  server.ts        |   90.25 |    90.87 |   70.75 |   90.25 | ...2657,2671-2675 
  ...on-helpers.ts |     100 |      100 |     100 |     100 |                   
  ...t-event-id.ts |     100 |    95.23 |     100 |     100 | 12                
  ...-admission.ts |   98.71 |    89.65 |     100 |   98.71 | 68                
  types.ts         |     100 |      100 |     100 |     100 |                   
  ...ion-limits.ts |     100 |      100 |     100 |     100 |                   
  ...t-sessions.ts |    93.3 |    76.83 |     100 |    93.3 | ...13,816,829-831 
  ...l-resolver.ts |   90.32 |    66.66 |     100 |   90.32 | 16,45-46          
  ...ell-static.ts |   91.07 |    86.66 |     100 |   91.07 | ...79-182,216-219 
  ...ace-agents.ts |   66.13 |    70.57 |   92.68 |   66.13 | ...2246,2256-2266 
  ...generation.ts |    95.4 |    82.35 |   66.66 |    95.4 | 55-56,78,92       
  ...-git-state.ts |     100 |    91.93 |    90.9 |     100 | 161,172,202,265   
  ...ace-inputs.ts |     100 |      100 |     100 |     100 |                   
  ...ace-memory.ts |      83 |    74.54 |     100 |      83 | ...30-537,597-604 
  ...ers-status.ts |   98.58 |       79 |     100 |   98.58 | 106,134,174,177   
  ...tion-store.ts |   89.67 |    88.27 |   92.59 |   89.67 | ...91-400,411-414 
  ...e-registry.ts |   93.89 |     87.5 |     100 |   93.89 | ...18-519,525-526 
  ...e-remember.ts |   98.23 |    92.51 |     100 |   98.23 | ...36,340-345,386 
  ...te-runtime.ts |   83.98 |    90.19 |     100 |   83.98 | ...48-156,216-237 
  ...me-storage.ts |     100 |      100 |     100 |     100 |                   
  ...management.ts |   72.63 |    72.72 |      96 |   72.63 | ...88-889,896-900 
  ...lls-status.ts |     100 |    95.45 |     100 |     100 | 152               
  ...reconciler.ts |   91.63 |    84.09 |     100 |   91.63 | ...71-273,306-307 
 ...serve/acp-http |   77.23 |    78.75 |   93.33 |   77.23 |                   
  ...r-registry.ts |   96.92 |    94.87 |     100 |   96.92 | 184-187           
  client-mcp-ws.ts |   54.85 |    58.62 |   72.72 |   54.85 | ...99-300,304-305 
  ...n-registry.ts |    98.2 |    88.55 |     100 |    98.2 | 1015,1041-1052    
  dispatch.ts      |   71.95 |    75.11 |   95.55 |   71.95 | ...4897,4945-4951 
  index.ts         |   81.97 |     79.8 |    90.9 |   81.97 | ...2296,2380-2381 
  json-rpc.ts      |     100 |    96.96 |     100 |     100 | 92                
  safe-ws-send.ts  |   52.94 |    71.42 |     100 |   52.94 | 33-42,47-55       
  sse-stream.ts    |   93.96 |    88.57 |   84.61 |   93.96 | ...57-159,161-163 
  ...ort-stream.ts |       0 |        0 |       0 |       0 | 1                 
  ws-stream.ts     |   91.86 |       80 |     100 |   91.86 | 45,50,96,100-103  
 src/serve/auth    |   86.86 |     79.7 |   93.87 |   86.86 |                   
  device-flow.ts   |   96.35 |    80.57 |   97.61 |   96.35 | ...1358,1453,1519 
  ...w-provider.ts |   44.24 |    74.07 |   71.42 |   44.24 | ...23-284,297,301 
 ...rve/cdp-tunnel |   87.73 |    76.21 |    97.5 |   87.73 |                   
  ...r-emulator.ts |   93.27 |    77.77 |     100 |   93.27 | ...53-256,282-283 
  ...verse-link.ts |      88 |    76.19 |     100 |      88 | ...28-329,420-423 
  ...l-registry.ts |     100 |      100 |     100 |     100 |                   
  cdp-ws.ts        |   76.28 |    61.29 |    87.5 |   76.28 | ...13-217,223-228 
 ...nel/acceptance |    6.12 |    57.89 |   46.15 |    6.12 |                   
  ...helpers.d.mts |       0 |        0 |       0 |       0 | 1                 
  ...e-helpers.mjs |   97.64 |    70.96 |     100 |   97.64 | 22-23             
  ...mcp-smoke.mjs |       0 |        0 |       0 |       0 | 1-124             
  ...cceptance.mjs |       0 |        0 |       0 |       0 | 1-473             
  ...re-server.mjs |       0 |        0 |       0 |       0 | 1-59              
  ...ols-smoke.mjs |       0 |        0 |       0 |       0 | 1-268             
  real-tab.mjs     |       0 |        0 |       0 |       0 | 1-218             
  ...al-chrome.mjs |       0 |        0 |       0 |       0 | 1-223             
 src/serve/fs      |   86.39 |    80.74 |     100 |   86.39 |                   
  audit.ts         |     100 |    96.15 |     100 |     100 | 204               
  errors.ts        |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...x-registry.ts |     100 |      100 |     100 |     100 |                   
  paths.ts         |   77.64 |     73.8 |     100 |   77.64 | ...65,594-598,611 
  policy.ts        |   90.42 |    89.18 |     100 |   90.42 | 161-169           
  text-cursor.ts   |   88.23 |       90 |     100 |   88.23 | 74-77,92-95       
  ...ile-system.ts |   86.16 |    79.55 |     100 |   86.16 | ...2510,2520-2521 
 src/serve/live    |   77.28 |    69.21 |   89.91 |   77.28 |                   
  ...en-context.ts |   95.74 |    81.25 |     100 |   95.74 | ...0,66-67,99-100 
  ...-workspace.ts |   88.63 |    82.53 |     100 |   88.63 | ...40-241,253-254 
  discovery.ts     |   85.77 |    76.92 |      90 |   85.77 | ...49-250,255-256 
  ...structions.ts |     100 |      100 |     100 |     100 |                   
  ...oordinator.ts |   82.67 |    76.75 |   97.01 |   82.67 | ...1319,1351-1353 
  ...-installer.ts |   45.17 |    81.96 |   68.18 |   45.17 | ...80-381,395-407 
  ...oordinator.ts |   76.17 |     64.4 |   85.36 |   76.17 | ...1858,1949-1950 
  ...controller.ts |   67.82 |    79.31 |   72.72 |   67.82 | ...66-278,287-295 
  ...ak-to-user.ts |   96.66 |      100 |   83.33 |   96.66 | 37-38             
  ...sk-service.ts |   86.22 |    59.64 |   93.33 |   86.22 | ...1152,1175-1182 
  ...task-tools.ts |      99 |      100 |   85.71 |      99 | 205-206           
  ...redentials.ts |   96.26 |    93.47 |     100 |   96.26 | 91-94             
  ...me-session.ts |   65.63 |    57.24 |   88.88 |   65.63 | ...2270,2275-2282 
  ...up-context.ts |   94.83 |    77.58 |     100 |   94.83 | ...18,327-330,350 
  ...ion-source.ts |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/serve/routes  |   85.22 |     79.5 |   95.15 |   85.22 |                   
  a2ui-action.ts   |   96.84 |     88.5 |    87.5 |   96.84 | ...70-272,309-311 
  capabilities.ts  |     100 |      100 |     100 |     100 |                   
  ...nel-notify.ts |   86.45 |       88 |     100 |   86.45 | ...,83-87,103-104 
  ...l-webhooks.ts |   93.56 |    84.09 |     100 |   93.56 | ...42,292,332,334 
  daemon-status.ts |   85.45 |    83.33 |     100 |   85.45 | 98-105            
  goals.ts         |   98.92 |     90.9 |     100 |   98.92 | 146               
  health-demo.ts   |   94.73 |     86.2 |     100 |   94.73 | 62-66,154         
  live-setup.ts    |   33.33 |     37.5 |      50 |   33.33 | ...18-123,130-135 
  live.ts          |    82.4 |    71.42 |     100 |    82.4 | ...-94,96-101,121 
  permission.ts    |     100 |     92.3 |     100 |     100 | 50,98             
  ...uled-tasks.ts |   87.29 |    82.94 |   92.59 |   87.29 | ...1275,1318-1319 
  ...on-runtime.ts |     100 |    90.47 |     100 |     100 | 58,94             
  session.ts       |   85.42 |    81.81 |   95.31 |   85.42 | ...4768,4770-4771 
  sse-events.ts    |   84.45 |     87.5 |   77.77 |   84.45 | ...36,453-456,485 
  usage-stats.ts   |     100 |    95.45 |     100 |     100 | 118               
  ...space-auth.ts |   85.55 |    75.64 |     100 |   85.55 | ...21-326,331,345 
  ...el-control.ts |   86.26 |    78.94 |     100 |   86.26 | ...17-318,339-347 
  ...management.ts |   90.38 |     78.4 |     100 |   90.38 | ...55-456,475-476 
  ...d-contacts.ts |     100 |      100 |     100 |     100 |                   
  ...controller.ts |   83.09 |       79 |      90 |   83.09 | ...1032,1038,1041 
  ...extensions.ts |   87.23 |    72.76 |   94.11 |   87.23 | ...1826,1871-1872 
  ...-file-read.ts |      91 |    80.91 |     100 |      91 | ...20-621,624-625 
  ...file-write.ts |   84.44 |    64.51 |     100 |   84.44 | ...73-275,355-357 
  ...t-branches.ts |   75.43 |    66.66 |     100 |   75.43 | ...13-618,627-634 
  ...e-git-diff.ts |   97.32 |    90.56 |     100 |   97.32 | 161-162,189-191   
  ...ce-git-log.ts |     100 |    93.18 |     100 |     100 | 52,77,188         
  workspace-git.ts |   77.08 |    89.65 |     100 |   77.08 | 97-118            
  ...github-prs.ts |   88.26 |    63.46 |     100 |   88.26 | ...38-239,264-265 
  ...-lifecycle.ts |   95.23 |    75.75 |     100 |   95.23 | ...50-151,186-187 
  ...management.ts |   87.41 |    84.13 |     100 |   87.41 | ...1660,1680-1685 
  ...cp-control.ts |    73.2 |    67.54 |   85.71 |    73.2 | ...27-633,644-645 
  ...ace-models.ts |   95.53 |    89.74 |     100 |   95.53 | ...52-157,296-297 
  ...ermissions.ts |    77.9 |    72.41 |     100 |    77.9 | ...69-277,298-316 
  ...e-settings.ts |   75.04 |    72.99 |     100 |   75.04 | ...79-690,696-697 
  ...tup-github.ts |   77.97 |    70.58 |   84.21 |   77.97 | ...46-352,397-398 
  ...ace-skills.ts |   69.87 |    78.12 |     100 |   69.87 | ...59-284,290-324 
  ...ace-status.ts |   82.94 |     74.5 |     100 |   82.94 | ...84-486,490-491 
  ...pace-tools.ts |   75.94 |    69.69 |   66.66 |   75.94 | ...59-164,193-194 
  ...pace-trust.ts |   78.92 |    66.21 |      80 |   78.92 | ...38-343,351-352 
  ...pace-voice.ts |   91.33 |    80.92 |     100 |   91.33 | ...70-673,676-678 
 src/serve/server  |   90.72 |    89.09 |   96.55 |   90.72 |                   
  access-log.ts    |   98.68 |     97.1 |     100 |   98.68 | 115,186           
  ...er-helpers.ts |   63.82 |    77.96 |   81.81 |   63.82 | ...16,330,332-347 
  ...w-registry.ts |    98.8 |    81.81 |     100 |    98.8 | 107               
  ...r-handlers.ts |   97.29 |       75 |     100 |   97.29 | 17                
  ...r-response.ts |   85.66 |    76.83 |     100 |   85.66 | ...02,719,782-791 
  fs-factory.ts    |     100 |    92.59 |     100 |     100 | 34,42,103,159     
  ...branch-ops.ts |     100 |      100 |     100 |     100 |                   
  ...t-deadline.ts |     100 |      100 |     100 |     100 |                   
  ...iter-setup.ts |      65 |    73.33 |   33.33 |      65 | 30-35,38-43,47-48 
  ...st-helpers.ts |   95.11 |    95.14 |     100 |   95.11 | ...65-167,422-427 
  self-origin.ts   |   76.19 |       80 |     100 |   76.19 | 45-54             
  ...e-features.ts |      95 |     87.5 |     100 |      95 | 182-188           
  ...on-archive.ts |   89.55 |    87.78 |   97.14 |   89.55 | ...32-836,888-889 
  ...ion-export.ts |     100 |    94.44 |     100 |     100 | 64                
  session-list.ts  |   93.55 |    91.01 |     100 |   93.55 | ...79,681-687,827 
  telemetry.ts     |   99.02 |    97.43 |     100 |   99.02 | ...25,639,781-783 
 src/serve/voice   |   83.35 |    92.22 |   90.47 |   83.35 |                   
  ...ice-config.ts |   84.61 |       30 |     100 |   84.61 | 90-99,103-104     
  voice-ws.ts      |   77.16 |    94.73 |   83.33 |   77.16 | ...68,483,521-523 
  ...oordinator.ts |     100 |    98.21 |     100 |     100 | 176               
 ...kspace-service |   89.11 |    86.15 |   90.69 |   89.11 |                   
  index.ts         |   88.66 |    85.77 |   89.47 |   88.66 | ...1286-1290,1293 
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/services      |   92.31 |    88.44 |   97.84 |   92.31 |                   
  ...mandLoader.ts |     100 |    88.88 |     100 |     100 | 105-118           
  ...killLoader.ts |   97.19 |    85.29 |     100 |   97.19 | 142,153-154       
  ...andService.ts |   98.73 |      100 |     100 |   98.73 | 107               
  ...mandLoader.ts |   86.83 |    83.87 |     100 |   86.83 | ...30-335,340-345 
  ...omptLoader.ts |   79.55 |    88.29 |   83.33 |   79.55 | ...48,178,245-246 
  ...mandLoader.ts |   97.77 |    92.15 |     100 |   97.77 | 176,183-184       
  ...nd-factory.ts |   91.42 |    91.66 |     100 |   91.42 | 128,137-144       
  ...ation-tool.ts |     100 |    95.45 |     100 |     100 | 125               
  ...ndMetadata.ts |   98.23 |    96.72 |     100 |   98.23 | 83,87             
  commandUtils.ts  |      96 |     90.9 |     100 |      96 | 48                
  ...and-parser.ts |   90.69 |    85.71 |     100 |   90.69 | 63-66             
  ...ionService.ts |     100 |      100 |     100 |     100 |                   
  prompt-stash.ts  |   96.66 |    92.85 |     100 |   96.66 | 34-35             
  ...tree-lease.ts |   88.23 |    86.48 |     100 |   88.23 | ...94-199,232-233 
  ...low-loader.ts |     100 |    96.15 |     100 |     100 | 88                
  setup-github.ts  |    90.8 |    80.95 |     100 |    90.8 | ...49-450,457-458 
  ...-args-file.ts |   93.93 |    91.66 |    87.5 |   93.93 | 208-210,224-230   
  types.ts         |     100 |      100 |     100 |     100 |                   
  ...e-keyterms.ts |   98.64 |    95.71 |     100 |   98.64 | 116,142-143       
  voice-model.ts   |     100 |      100 |     100 |     100 |                   
  voice-service.ts |   90.37 |    87.87 |     100 |   90.37 | ...80,287,352-357 
  ...e-settings.ts |     100 |    95.23 |     100 |     100 | 19                
  ...ranscriber.ts |   90.46 |    82.19 |      96 |   90.46 | ...66-668,671-673 
 ...rvices/insight |     100 |      100 |     100 |     100 |                   
  dates.ts         |     100 |      100 |     100 |     100 |                   
 ...ght/generators |   88.91 |    86.29 |   96.15 |   88.91 |                   
  DataProcessor.ts |   88.28 |    86.24 |   94.73 |   88.28 | ...1352,1356-1363 
  ...tGenerator.ts |   98.24 |    85.71 |     100 |   98.24 | 47                
  ...teRenderer.ts |     100 |      100 |     100 |     100 |                   
 .../insight/types |       0 |       50 |      50 |       0 |                   
  ...sightTypes.ts |       0 |        0 |       0 |       0 |                   
  ...sightTypes.ts |       0 |        0 |       0 |       0 | 1                 
 ...mpt-processors |   97.27 |    94.04 |     100 |   97.27 |                   
  ...tProcessor.ts |     100 |      100 |     100 |     100 |                   
  ...eProcessor.ts |   94.52 |    84.21 |     100 |   94.52 | 46-47,93-94       
  ...tionParser.ts |     100 |      100 |     100 |     100 |                   
  ...lProcessor.ts |   97.41 |    95.65 |     100 |   97.41 | 95-98             
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/services/tips |   97.27 |    84.61 |     100 |   97.27 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  tipHistory.ts    |   92.59 |       70 |     100 |   92.59 | ...24,146,153,162 
  tipRegistry.ts   |     100 |      100 |     100 |     100 |                   
  tipScheduler.ts  |     100 |    91.66 |     100 |     100 | 55                
 src/startup       |   88.99 |    83.47 |    90.9 |   88.99 |                   
  ...p-prefetch.ts |   98.09 |    94.23 |    87.5 |   98.09 | 50,209,225-226    
  ...reeStartup.ts |   80.53 |     74.6 |     100 |   80.53 | ...94,403,409-412 
 src/test-utils    |   94.09 |    79.16 |   77.77 |   94.09 |                   
  ci-env.ts        |      88 |     62.5 |     100 |      88 | 22-23,28          
  ...omMatchers.ts |   69.69 |       50 |      50 |   69.69 | 32-35,37-39,45-47 
  ...mised-lock.ts |     100 |      100 |   66.66 |     100 |                   
  ...andContext.ts |     100 |      100 |     100 |     100 |                   
  render.tsx       |     100 |      100 |     100 |     100 |                   
 src/ui            |   72.73 |    75.23 |    65.9 |   72.73 |                   
  App.tsx          |   33.33 |       75 |   33.33 |   33.33 | 32-86             
  AppContainer.tsx |   73.95 |    72.14 |   70.58 |   73.95 | ...4100,4216-4222 
  ...tionNudge.tsx |    9.58 |      100 |       0 |    9.58 | 24-94             
  ...ackDialog.tsx |    30.3 |      100 |       0 |    30.3 | 26-76             
  ...tionNudge.tsx |    7.69 |      100 |       0 |    7.69 | 25-103            
  colors.ts        |      60 |      100 |   35.29 |      60 | ...52,54-55,60-61 
  constants.ts     |     100 |      100 |     100 |     100 |                   
  keyMatchers.ts   |   95.91 |    97.14 |     100 |   95.91 | 25-26             
  ...tic-colors.ts |     100 |      100 |     100 |     100 |                   
  ...ractiveUI.tsx |   68.12 |    64.86 |   33.33 |   68.12 | ...98,321,341-346 
  ...inePresets.ts |   96.27 |    83.87 |     100 |   96.27 | ...97,402,410-412 
  textConstants.ts |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/ui/auth       |   58.53 |    66.18 |   51.06 |   58.53 |                   
  AuthDialog.tsx   |   59.01 |     42.1 |   16.66 |   59.01 | ...25,332-354,358 
  ...nProgress.tsx |       0 |        0 |       0 |       0 | 1-64              
  ...etupSteps.tsx |   60.21 |    70.73 |   57.69 |   60.21 | ...90,794,803,806 
  useAuth.ts       |    94.6 |    73.52 |     100 |    94.6 | ...21-222,241-247 
  ...rSetupFlow.ts |   43.18 |    33.33 |      50 |   43.18 | ...78-399,416-459 
 src/ui/commands   |    82.5 |    82.88 |   89.12 |    82.5 |                   
  aboutCommand.ts  |     100 |      100 |     100 |     100 |                   
  agentsCommand.ts |   83.78 |      100 |      60 |   83.78 | 30-32,42-44       
  ...odeCommand.ts |    93.1 |    95.23 |     100 |    93.1 | 77-82             
  arenaCommand.ts  |   63.89 |    65.71 |   65.21 |   63.89 | ...01-606,691-699 
  authCommand.ts   |     100 |      100 |     100 |     100 |                   
  branchCommand.ts |     100 |      100 |     100 |     100 |                   
  btwCommand.ts    |   94.32 |    81.25 |     100 |   94.32 | 35-36,114-119     
  bugCommand.ts    |     100 |    77.77 |     100 |     100 | 27,61             
  cdCommand.ts     |    92.3 |    82.75 |     100 |    92.3 | ...,94-99,178,187 
  clearCommand.ts  |    80.9 |    70.83 |     100 |    80.9 | ...24-125,133-142 
  ...essCommand.ts |   68.06 |    54.05 |      75 |   68.06 | ...96-197,211-214 
  ...astCommand.ts |   84.17 |       75 |     100 |   84.17 | ...,91-97,125-130 
  ...ig-command.ts |   93.12 |    88.42 |     100 |   93.12 | ...07-315,321-323 
  ...extCommand.ts |   68.28 |    70.14 |   84.61 |   68.28 | ...66-599,610-611 
  copyCommand.ts   |    98.7 |    96.29 |     100 |    98.7 | 66-67,172,272,323 
  ...or-command.ts |   85.95 |    80.55 |   88.88 |   85.95 | ...68-274,298-309 
  deleteCommand.ts |     100 |      100 |     100 |     100 |                   
  diffCommand.ts   |     100 |    87.87 |     100 |     100 | ...63,231-232,245 
  ...ryCommand.tsx |   81.64 |    87.67 |    90.9 |   81.64 | ...73-278,325-332 
  docsCommand.ts   |     100 |     90.9 |     100 |     100 | 25                
  doctorCommand.ts |   65.37 |    81.88 |   94.11 |   65.37 | ...85-535,538-672 
  dreamCommand.ts  |   85.45 |    88.88 |     100 |   85.45 | 58-65             
  editorCommand.ts |     100 |      100 |     100 |     100 |                   
  ...rt-command.ts |   82.97 |    78.57 |     100 |   82.97 | 47-52,67-70,91-96 
  exportCommand.ts |   98.25 |    91.02 |     100 |   98.25 | ...81,198-199,364 
  ...onsCommand.ts |   52.31 |    56.25 |   69.23 |   52.31 | ...09,277-329,390 
  forgetCommand.ts |     100 |       90 |     100 |     100 | 59                
  forkCommand.ts   |     100 |    94.11 |     100 |     100 | 96,147            
  goalCommand.ts   |   72.81 |    86.84 |   66.66 |   72.81 | ...63-168,277-280 
  helpCommand.ts   |     100 |      100 |     100 |     100 |                   
  ...oryCommand.ts |     100 |      100 |     100 |     100 |                   
  hooksCommand.ts  |   81.13 |    65.71 |   85.71 |   81.13 | ...,86-93,131-132 
  ideCommand.ts    |   60.75 |    64.28 |   41.17 |   60.75 | ...05-306,310-324 
  ...figCommand.ts |   52.83 |    81.25 |      70 |   52.83 | ...74-319,321-330 
  initCommand.ts   |   91.86 |       80 |     100 |   91.86 | 48,83-88          
  ...ghtCommand.ts |   77.87 |    71.42 |     100 |   77.87 | ...44-245,250-272 
  ...ageCommand.ts |   93.45 |    89.06 |     100 |   93.45 | ...68-169,196-206 
  learn-command.ts |     100 |      100 |     100 |     100 |                   
  lspCommand.ts    |     100 |    86.95 |     100 |     100 | 31,101-102        
  mcpCommand.ts    |     100 |      100 |     100 |     100 |                   
  memoryCommand.ts |     100 |      100 |     100 |     100 |                   
  modelCommand.ts  |   84.78 |    82.47 |     100 |   84.78 | ...1071,1105-1110 
  ...onsCommand.ts |     100 |      100 |     100 |     100 |                   
  planCommand.ts   |   78.82 |    76.92 |     100 |   78.82 | 30-35,51-56,68-73 
  quitCommand.ts   |     100 |      100 |     100 |     100 |                   
  recapCommand.ts  |   21.81 |      100 |      50 |   21.81 | 24-73             
  ...ns-command.ts |   98.83 |    81.81 |     100 |   98.83 | 100               
  ...berCommand.ts |     100 |     87.5 |     100 |     100 | 46                
  renameCommand.ts |   89.06 |    88.37 |     100 |   89.06 | ...72-176,202-209 
  ...oreCommand.ts |    90.9 |    86.04 |     100 |    90.9 | ...41-146,176-177 
  resumeCommand.ts |     100 |      100 |     100 |     100 |                   
  rewindCommand.ts |   81.25 |      100 |      50 |   81.25 | 20-22             
  ...ngsCommand.ts |     100 |      100 |     100 |     100 |                   
  ...hubCommand.ts |   89.47 |       75 |      80 |   89.47 | 54-59             
  skillsCommand.ts |   78.82 |    81.81 |     100 |   78.82 | 37-52,78,97       
  statsCommand.ts  |   90.65 |    76.73 |     100 |   90.65 | ...30-733,825-832 
  ...ineCommand.ts |     100 |      100 |     100 |     100 |                   
  ...aryCommand.ts |   73.04 |     82.3 |      90 |   73.04 | ...20-547,561-565 
  tasksCommand.ts  |   77.22 |    72.13 |     100 |   77.22 | ...46-150,172-177 
  ...tupCommand.ts |     100 |      100 |     100 |     100 |                   
  themeCommand.ts  |     100 |      100 |     100 |     100 |                   
  toolsCommand.ts  |     100 |      100 |     100 |     100 |                   
  trustCommand.ts  |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
  ...te-command.ts |     100 |    94.11 |     100 |     100 | 74,148            
  vimCommand.ts    |   54.54 |      100 |      50 |   54.54 | 19-29             
  voice-command.ts |   93.57 |       88 |     100 |   93.57 | 35,97-102         
  ...owsCommand.ts |   91.86 |    78.87 |   66.66 |   91.86 | ...60-161,170-175 
 src/ui/components |   71.27 |    78.62 |   79.04 |   71.27 |                   
  AboutBox.tsx     |     100 |      100 |     100 |     100 |                   
  AnsiOutput.tsx   |   65.57 |      100 |      50 |   65.57 | 69-90             
  ApiKeyInput.tsx  |       0 |        0 |       0 |       0 | 1-97              
  AppHeader.tsx    |    88.7 |       75 |     100 |    88.7 | 36,38-43,45       
  ...odeDialog.tsx |   87.24 |    72.22 |   33.33 |   87.24 | ...85,233-238,245 
  AsciiArt.ts      |     100 |      100 |     100 |     100 |                   
  ...Indicator.tsx |   95.65 |    66.66 |     100 |   95.65 | 27,52             
  ...TextInput.tsx |   88.65 |    90.41 |     100 |   88.65 | ...84-286,300-302 
  Composer.tsx     |   94.49 |    66.66 |     100 |   94.49 | ...-72,84,139,153 
  ...entPrompt.tsx |     100 |      100 |     100 |     100 |                   
  ...ryDisplay.tsx |   75.89 |    62.06 |     100 |   75.89 | ...,88,93-108,113 
  ...geDisplay.tsx |   68.42 |    57.14 |     100 |   68.42 | 16-17,31-32,42-50 
  CronPill.tsx     |     100 |    93.75 |     100 |     100 | 19                
  ...ification.tsx |      84 |       60 |     100 |      84 | 23-24,40-42       
  ...gProfiler.tsx |       0 |        0 |       0 |       0 | 1-36              
  ...ogManager.tsx |       0 |        0 |       0 |       0 | 1-598             
  DiffDialog.tsx   |    53.5 |     37.5 |   69.23 |    53.5 | ...32-737,747-760 
  ...ngsDialog.tsx |       0 |        0 |       0 |       0 | 1-195             
  EffortDialog.tsx |   97.36 |      100 |     100 |   97.36 | 55-56             
  ExitWarning.tsx  |     100 |      100 |     100 |     100 |                   
  ...hProgress.tsx |    87.8 |    33.33 |     100 |    87.8 | 28-31,56          
  ...ustDialog.tsx |     100 |      100 |     100 |     100 |                   
  Footer.tsx       |   74.09 |     61.4 |      50 |   74.09 | ...55-260,278-282 
  ...ngSpinner.tsx |   68.42 |    85.71 |      50 |   68.42 | 35-52,73,80-81    
  GoalPill.tsx     |   93.51 |    81.81 |     100 |   93.51 | 37-38,106-109,123 
  Header.tsx       |   98.65 |    94.73 |     100 |   98.65 | 173,175           
  Help.tsx         |   98.33 |       90 |     100 |   98.33 | ...25,382,448-449 
  ...emDisplay.tsx |   79.17 |    66.33 |     100 |   79.17 | ...08,511,514-520 
  ...ngeDialog.tsx |     100 |      100 |     100 |     100 |                   
  InputPrompt.tsx  |   82.63 |     81.8 |      80 |   82.63 | ...2219,2245,2319 
  ...Shortcuts.tsx |     100 |       88 |     100 |     100 | 98,119            
  ...Indicator.tsx |   98.18 |    97.82 |     100 |   98.18 | 161-162           
  ...firmation.tsx |   91.42 |      100 |      50 |   91.42 | 26-31             
  MainContent.tsx  |    95.8 |    92.53 |   42.85 |    95.8 | ...60-464,467,475 
  MemoryDialog.tsx |   86.59 |    80.15 |     100 |   86.59 | ...34-435,485,553 
  ...geDisplay.tsx |       0 |        0 |       0 |       0 | 1-41              
  ModelDialog.tsx  |   81.95 |    71.27 |     100 |   81.95 | ...1045,1050-1066 
  ...tsDisplay.tsx |     100 |    97.22 |     100 |     100 | 270               
  ...fications.tsx |       0 |        0 |       0 |       0 | 1-56              
  ...onsDialog.tsx |       0 |        0 |       0 |       0 | 1-1004            
  ...ryDisplay.tsx |     100 |      100 |     100 |     100 |                   
  ...icePrompt.tsx |   92.64 |    85.71 |     100 |   92.64 | 102-106,134-139   
  PrepareLabel.tsx |   91.66 |    77.27 |     100 |   91.66 | 73-75,77-79,110   
  ...atePrompt.tsx |       0 |        0 |       0 |       0 | 1-134             
  ...geDisplay.tsx |     100 |      100 |     100 |     100 |                   
  ...ngDisplay.tsx |       0 |        0 |       0 |       0 | 1-39              
  ...hProgress.tsx |   85.25 |    88.46 |     100 |   85.25 | 121-147           
  ...dSelector.tsx |   92.79 |    82.65 |     100 |   92.79 | ...19-323,354-370 
  ...ionPicker.tsx |   83.66 |    72.13 |     100 |   83.66 | ...96,402,444-466 
  ...onPreview.tsx |   93.58 |    83.78 |     100 |   93.58 | ...,70-71,195-197 
  ...ryDisplay.tsx |     100 |      100 |     100 |     100 |                   
  ...putPrompt.tsx |   92.06 |    86.36 |   83.33 |   92.06 | ...,70-72,120-123 
  ...tedDialog.tsx |     100 |      100 |     100 |     100 |                   
  ...ngsDialog.tsx |   71.49 |    73.89 |   69.23 |   71.49 | ...1244,1250-1251 
  ...ionDialog.tsx |    92.3 |    96.15 |   33.33 |    92.3 | 60-63,68-75,164   
  ...putPrompt.tsx |    15.9 |      100 |       0 |    15.9 | 20-63             
  ...Indicator.tsx |   57.14 |      100 |       0 |   57.14 | 12-15             
  ...MoreLines.tsx |       0 |        0 |       0 |       0 | 1-40              
  ...iewDialog.tsx |   97.77 |    87.67 |     100 |   97.77 | ...97,305-307,324 
  ...tsDisplay.tsx |   95.86 |       75 |     100 |   95.86 | 67-71             
  ...ionPicker.tsx |       0 |        0 |       0 |       0 | 1-172             
  ...tivityTab.tsx |    3.94 |      100 |       0 |    3.94 | 27-275            
  StatsDialog.tsx  |    8.64 |      100 |       0 |    8.64 | ...76-111,130-322 
  StatsDisplay.tsx |     100 |      100 |     100 |     100 |                   
  ...ciencyTab.tsx |    78.9 |    56.52 |     100 |    78.9 | ...26,213,262-288 
  ...atmapView.tsx |    8.98 |      100 |       0 |    8.98 | 20-107            
  ...essionTab.tsx |      80 |    66.66 |     100 |      80 | ...70-277,283-300 
  ...ineDialog.tsx |    93.5 |    85.18 |     100 |    93.5 | ...05,267,287-289 
  ...yTodoList.tsx |   96.36 |    88.23 |     100 |   96.36 | 138-141           
  ...nsDisplay.tsx |   92.97 |    83.87 |     100 |   92.97 | ...45,248,275-277 
  ...inalImage.tsx |     100 |     90.9 |     100 |     100 | 75,93             
  ThemeDialog.tsx  |   89.95 |    46.15 |      75 |   89.95 | ...71-173,243-245 
  Tips.tsx         |   93.54 |       75 |     100 |   93.54 | 39-40             
  TodoDisplay.tsx  |     100 |      100 |     100 |     100 |                   
  ...tsDisplay.tsx |     100 |     87.5 |     100 |     100 | 31-32             
  TrustDialog.tsx  |     100 |    83.33 |     100 |     100 | 72-87             
  ...ification.tsx |   36.36 |      100 |       0 |   36.36 | 15-22             
  ...Indicator.tsx |    92.5 |     87.5 |     100 |    92.5 | 50-53             
  ...ackDialog.tsx |       0 |        0 |       0 |       0 | 1-134             
  ...xitDialog.tsx |   80.36 |    43.47 |      60 |   80.36 | ...24-238,248-251 
  ...odeVisuals.ts |   97.22 |    85.71 |     100 |   97.22 | 25                
  ...s-helpers.tsx |   66.25 |    81.25 |      50 |   66.25 | 25-32,46-53,62-72 
 ...nts/agent-view |   55.05 |    69.09 |      50 |   55.05 |                   
  ...atContent.tsx |    9.09 |      100 |       0 |    9.09 | 54-275,281-283    
  ...tChatView.tsx |   21.05 |      100 |       0 |   21.05 | 21-39             
  ...tComposer.tsx |   69.48 |    33.33 |   66.66 |   69.48 | ...51,269,277-279 
  AgentFooter.tsx  |   15.38 |      100 |       0 |   15.38 | 28-65             
  AgentHeader.tsx  |   15.38 |      100 |       0 |   15.38 | 27-64             
  AgentTabBar.tsx  |    87.9 |    63.88 |     100 |    87.9 | ...88,110-118,136 
  ...oryAdapter.ts |     100 |    91.83 |     100 |     100 | 103,109-110,138   
  index.ts         |       0 |        0 |       0 |       0 | 1-12              
 ...mponents/arena |    42.3 |    68.69 |   73.68 |    42.3 |                   
  ArenaCards.tsx   |   73.06 |    71.79 |   85.71 |   73.06 | ...83-185,321-326 
  ...ectDialog.tsx |   83.48 |    69.86 |   88.88 |   83.48 | ...88-392,409-410 
  ...artDialog.tsx |       0 |        0 |       0 |       0 | 1-166             
  ...tusDialog.tsx |       0 |        0 |       0 |       0 | 1-288             
  ...topDialog.tsx |       0 |        0 |       0 |       0 | 1-213             
 ...ackground-view |   82.95 |    81.71 |   92.72 |   82.95 |                   
  ...sksDialog.tsx |   78.73 |    77.65 |   84.61 |   78.73 | ...1809,1833-1839 
  ...TasksPill.tsx |   67.74 |    86.66 |     100 |   67.74 | ...04-124,132-140 
  ...gentPanel.tsx |   97.08 |    86.31 |     100 |   97.08 | 132,442-446,520   
  agent-forest.ts  |    99.2 |    93.93 |     100 |    99.2 | 258               
  ...Visibility.ts |     100 |      100 |     100 |     100 |                   
  ...e-overlay.tsx |    88.2 |    76.47 |     100 |    88.2 | ...36-138,140-142 
 ...nts/extensions |   84.32 |    76.78 |   83.33 |   84.32 |                   
  ...gerDialog.tsx |   82.15 |    76.08 |     100 |   82.15 | ...91-198,258,260 
  TabBar.tsx       |   97.29 |    88.88 |     100 |   97.29 | 33                
  index.ts         |       0 |        0 |       0 |       0 | 1-12              
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...tensions/steps |   46.26 |       85 |   58.82 |   46.26 |                   
  ...ctionStep.tsx |   95.12 |    92.85 |   85.71 |   95.12 | 84-86,89          
  ...etailStep.tsx |       0 |        0 |       0 |       0 | 1-145             
  ...nListStep.tsx |   75.26 |    88.37 |   66.66 |   75.26 | ...53,174,203-209 
  ...electStep.tsx |       0 |        0 |       0 |       0 | 1-83              
  ...nfirmStep.tsx |   16.32 |      100 |       0 |   16.32 | 28-74             
  index.ts         |       0 |        0 |       0 |       0 | 1-11              
 ...xtensions/tabs |   71.92 |    68.21 |   70.83 |   71.92 |                   
  DiscoverTab.tsx  |   68.22 |    67.66 |   55.55 |   68.22 | ...93,656-660,664 
  InstalledTab.tsx |   75.49 |    67.44 |   83.33 |   75.49 | ...77,782-783,820 
  SourcesTab.tsx   |   71.67 |    70.47 |   77.77 |   71.67 | ...28,547,621-633 
 ...tensions/views |   50.97 |    52.38 |   20.83 |   50.97 |                   
  ...tionsView.tsx |   73.75 |    56.36 |   66.66 |   73.75 | ...30,353,369-374 
  ...tionsView.tsx |   43.45 |    44.82 |    6.66 |   43.45 | ...98-405,408-420 
  ...etailView.tsx |    9.56 |      100 |       0 |    9.56 | 40-67,70-158      
 ...mponents/hooks |   87.11 |    81.37 |   91.89 |   87.11 |                   
  ...rListBody.tsx |   95.29 |    85.18 |     100 |   95.29 | 95-98             
  ...etailStep.tsx |   75.32 |    71.42 |      60 |   75.32 | ...56-169,173-186 
  ...etailStep.tsx |     100 |      100 |     100 |     100 |                   
  ...rListStep.tsx |     100 |      100 |     100 |     100 |                   
  ...entHeader.tsx |     100 |    85.71 |     100 |     100 | 47                
  ...rListStep.tsx |     100 |      100 |     100 |     100 |                   
  ...etailStep.tsx |     100 |      100 |     100 |     100 |                   
  ...abledStep.tsx |     100 |      100 |     100 |     100 |                   
  ...sListStep.tsx |     100 |      100 |     100 |     100 |                   
  ...entDialog.tsx |   72.29 |    70.49 |     100 |   72.29 | ...51,563-568,572 
  constants.ts     |     100 |      100 |     100 |     100 |                   
  index.ts         |       0 |        0 |       0 |       0 | 1-13              
  ...erGrouping.ts |     100 |      100 |     100 |     100 |                   
  sourceLabels.ts  |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...components/mcp |   40.04 |    61.53 |   70.58 |   40.04 |                   
  ...ealthPill.tsx |   68.42 |    85.71 |     100 |   68.42 | 40-46             
  ...entDialog.tsx |   32.09 |    26.19 |      40 |   32.09 | ...12,914,927-933 
  ...valDialog.tsx |   15.06 |      100 |       0 |   15.06 | 40-109            
  constants.ts     |     100 |      100 |     100 |     100 |                   
  index.ts         |       0 |        0 |       0 |       0 | 1-35              
  types.ts         |     100 |      100 |     100 |     100 |                   
  utils.ts         |      97 |       95 |     100 |      97 | 24,113-114        
 ...ents/mcp/steps |   53.94 |    73.51 |   57.14 |   53.94 |                   
  ...icateStep.tsx |    5.65 |      100 |       0 |    5.65 | 40-66,69-308      
  ...electStep.tsx |   10.95 |      100 |       0 |   10.95 | 16-88             
  ...etailStep.tsx |     100 |      100 |     100 |     100 |                   
  ...eListStep.tsx |   99.09 |    97.36 |     100 |   99.09 | 71                
  ...etailStep.tsx |   62.83 |       60 |   33.33 |   62.83 | ...87-296,307-332 
  ...rListStep.tsx |   88.53 |    81.25 |     100 |   88.53 | ...64,170,175-180 
  ...etailStep.tsx |    10.3 |      100 |       0 |    10.3 | ...1,67-79,82-140 
  ToolListStep.tsx |   69.29 |       50 |     100 |   69.29 | ...23,126,135-144 
 ...nents/messages |   89.93 |    86.41 |   85.29 |   89.93 |                   
  ...ionDialog.tsx |   89.23 |     84.9 |   81.81 |   89.23 | ...75,593,611-613 
  BtwMessage.tsx   |     100 |      100 |     100 |     100 |                   
  ...upDisplay.tsx |     100 |    94.73 |     100 |     100 | ...43,289,402,432 
  ...onMessage.tsx |   92.06 |    82.35 |     100 |   92.06 | 58-60,62,64       
  ...nMessages.tsx |   93.46 |      100 |   76.92 |   93.46 | ...90-292,295-298 
  DiffRenderer.tsx |   93.17 |    86.02 |     100 |   93.17 | ...07,235-236,302 
  ...tsDisplay.tsx |   97.08 |    77.77 |     100 |   97.08 | 95,97,106         
  ...usMessage.tsx |   81.73 |     65.9 |      75 |   81.73 | ...10-214,222,245 
  ...tsDisplay.tsx |   95.52 |    88.31 |     100 |   95.52 | ...40,142,175-180 
  ...ssMessage.tsx |    12.5 |      100 |       0 |    12.5 | 18-59             
  ...edMessage.tsx |   21.05 |      100 |       0 |   21.05 | 23-39             
  ...sMessages.tsx |   59.04 |       50 |    37.5 |   59.04 | ...21-126,147-159 
  ...ryMessage.tsx |   13.63 |      100 |       0 |   13.63 | 23-64             
  ...onMessage.tsx |   91.38 |    81.02 |     100 |   91.38 | ...33-635,642-644 
  ...upMessage.tsx |   98.32 |    95.16 |     100 |   98.32 | 184-187,414       
  ToolMessage.tsx  |   92.62 |    85.22 |   93.33 |   92.62 | ...-982,1009-1011 
 ...ponents/shared |   85.82 |    81.94 |   94.11 |   85.82 |                   
  ...ctionList.tsx |     100 |      100 |      75 |     100 |                   
  ...tonSelect.tsx |     100 |      100 |     100 |     100 |                   
  EnumSelector.tsx |     100 |    96.42 |     100 |     100 | 58                
  ...rBoundary.tsx |     100 |      100 |     100 |     100 |                   
  MaxSizedBox.tsx  |   84.71 |    86.86 |      90 |   84.71 | ...67-568,685-686 
  MultiSelect.tsx  |   93.58 |       75 |     100 |   93.58 | ...43,199-201,211 
  ...tonSelect.tsx |     100 |      100 |     100 |     100 |                   
  ...ontroller.tsx |     100 |    83.33 |     100 |     100 | 77,97-99          
  ...eSelector.tsx |     100 |       60 |     100 |     100 | 40-45             
  ...lableList.tsx |   81.48 |    84.84 |     100 |   81.48 | 46-66,73-76       
  StaticRender.tsx |   72.72 |      100 |     100 |   72.72 | 31-33             
  TextInput.tsx    |    80.8 |    67.24 |      80 |    80.8 | ...36-240,252-258 
  ...ontroller.tsx |     100 |    81.81 |     100 |     100 | 63-66             
  ...apsedTime.tsx |     100 |      100 |     100 |     100 |                   
  ...Indicator.tsx |     100 |      100 |     100 |     100 |                   
  ...lizedList.tsx |   88.51 |    83.75 |   81.81 |   88.51 | ...51-779,792,887 
  text-buffer.ts   |   85.98 |    81.81 |   97.91 |   85.98 | ...2664,2762-2763 
  ...er-actions.ts |   73.93 |    67.22 |     100 |   73.93 | ...32-733,934-936 
 ...ponents/skills |       0 |        0 |       0 |       0 |                   
  ...gerDialog.tsx |       0 |        0 |       0 |       0 | 1-681             
 ...ents/subagents |       0 |        0 |       0 |       0 |                   
  constants.ts     |       0 |        0 |       0 |       0 | 1-71              
  index.ts         |       0 |        0 |       0 |       0 | 1-11              
  reducers.tsx     |       0 |        0 |       0 |       0 | 1-190             
  types.ts         |       0 |        0 |       0 |       0 | 1-125             
  utils.ts         |       0 |        0 |       0 |       0 | 1-102             
 ...bagents/create |       0 |        0 |       0 |       0 |                   
  ...ionWizard.tsx |       0 |        0 |       0 |       0 | 1-299             
  ...rSelector.tsx |       0 |        0 |       0 |       0 | 1-85              
  ...onSummary.tsx |       0 |        0 |       0 |       0 | 1-331             
  ...tionInput.tsx |       0 |        0 |       0 |       0 | 1-177             
  ...dSelector.tsx |       0 |        0 |       0 |       0 | 1-63              
  ...nSelector.tsx |       0 |        0 |       0 |       0 | 1-58              
  ...EntryStep.tsx |       0 |        0 |       0 |       0 | 1-78              
  ToolSelector.tsx |       0 |        0 |       0 |       0 | 1-253             
 ...bagents/manage |   14.14 |    53.19 |    37.5 |   14.14 |                   
  ...ctionStep.tsx |       0 |        0 |       0 |       0 | 1-103             
  ...eleteStep.tsx |       0 |        0 |       0 |       0 | 1-62              
  ...tEditStep.tsx |       0 |        0 |       0 |       0 | 1-124             
  ...ctionStep.tsx |   35.61 |    59.52 |     100 |   35.61 | ...21-433,438-440 
  ...iewerStep.tsx |       0 |        0 |       0 |       0 | 1-73              
  ...gerDialog.tsx |       0 |        0 |       0 |       0 | 1-341             
 ...mponents/views |   69.81 |    72.64 |   61.11 |   69.81 |                   
  ContextUsage.tsx |   70.88 |    63.88 |      80 |   70.88 | ...20-426,463-557 
  DoctorReport.tsx |     9.8 |      100 |       0 |     9.8 | 25-54,57-131      
  ...sionsList.tsx |   88.05 |       75 |     100 |   88.05 | 70-77             
  McpStatus.tsx    |   92.01 |     73.8 |     100 |   92.01 | ...36,175-177,262 
  SkillsList.tsx   |   20.51 |      100 |       0 |   20.51 | 17-20,27-57       
  ToolsList.tsx    |     100 |      100 |     100 |     100 |                   
 ...i/context-menu |   93.27 |    85.39 |   68.75 |   93.27 |                   
  ...ontroller.tsx |   91.13 |    82.75 |   83.33 |   91.13 | ...30-233,294-295 
  ...nuContext.tsx |     100 |      100 |      50 |     100 |                   
  ...nuOverlay.tsx |    92.3 |    83.33 |     100 |    92.3 | 49-51,67-68       
 src/ui/contexts   |   83.96 |    81.62 |    86.3 |   83.96 |                   
  ...ewContext.tsx |   64.83 |    88.88 |      50 |   64.83 | ...16-219,225-235 
  AppContext.tsx   |      80 |       50 |     100 |      80 | 19-20             
  ...ewContext.tsx |   92.45 |    62.79 |      50 |   92.45 | ...69-270,272-276 
  ...igContext.tsx |   81.81 |       50 |     100 |   81.81 | 15-16             
  ...ssContext.tsx |   85.65 |    84.85 |     100 |   85.65 | ...1612-1614,1620 
  ...owContext.tsx |   91.07 |    81.81 |     100 |   91.07 | 47-48,60-62       
  ...deContext.tsx |     100 |      100 |      50 |     100 |                   
  ...onContext.tsx |   80.77 |       80 |    92.3 |   80.77 | ...31-434,443-446 
  ...gsContext.tsx |     100 |      100 |     100 |     100 |                   
  ...usContext.tsx |     100 |      100 |     100 |     100 |                   
  ...ngContext.tsx |   71.42 |       50 |     100 |   71.42 | 17-20             
  ...utContext.tsx |   85.71 |      100 |   66.66 |   85.71 | 13-14             
  ...edContext.tsx |     100 |      100 |      50 |     100 |                   
  ...nsContext.tsx |   88.88 |       50 |     100 |   88.88 | 156-157           
  ...teContext.tsx |   86.66 |       50 |     100 |   86.66 | 235-236           
  ...deContext.tsx |      80 |     87.5 |      75 |      80 | ...11-112,118-120 
  ...rtContext.tsx |     100 |      100 |     100 |     100 |                   
 src/ui/daemon     |   88.35 |    73.51 |   95.45 |   88.35 |                   
  ...ui-adapter.ts |   88.35 |    73.51 |   95.45 |   88.35 | ...74,792-793,879 
 src/ui/editors    |       0 |        0 |       0 |       0 |                   
  ...ngsManager.ts |       0 |        0 |       0 |       0 | 1-67              
 src/ui/hooks      |   84.86 |     82.6 |   87.75 |   84.86 |                   
  ...dProcessor.ts |   85.53 |    85.13 |     100 |   85.53 | ...-970,1017-1018 
  ...ention-ref.ts |   97.72 |       84 |     100 |   97.72 | 65                
  keyToAnsi.ts     |    3.92 |      100 |       0 |    3.92 | 19-77             
  ...esourceRef.ts |     100 |      100 |     100 |     100 |                   
  ...completion.ts |     100 |    95.45 |     100 |     100 | 95                
  ...ention-ref.ts |     100 |      100 |     100 |     100 |                   
  ...dProcessor.ts |   94.62 |    73.58 |     100 |   94.62 | ...86-287,292-293 
  ...dProcessor.ts |   85.63 |    68.16 |   81.81 |   85.63 | ...1452,1473-1477 
  ...rt-command.ts |     100 |      100 |     100 |     100 |                   
  ...sced-flush.ts |     100 |      100 |     100 |     100 |                   
  ...ng-enabled.ts |     100 |      100 |     100 |     100 |                   
  ...oice-input.ts |   92.36 |    81.95 |   66.66 |   92.36 | ...00,502-503,658 
  ...ke-repaint.ts |     100 |      100 |     100 |     100 |                   
  ...amingState.ts |   12.22 |      100 |       0 |   12.22 | 54-157            
  ...agerDialog.ts |   88.23 |      100 |     100 |   88.23 | 20,24             
  ...dScrollbar.ts |     100 |      100 |     100 |     100 |                   
  ...ationFrame.ts |      52 |    63.63 |     100 |      52 | ...59,67-70,76-87 
  ...odeCommand.ts |   58.82 |      100 |     100 |   58.82 | 28,33-48          
  ...enaCommand.ts |      85 |      100 |     100 |      85 | 23-24,29          
  ...aInProcess.ts |   27.92 |       80 |      25 |   27.92 | ...69-170,173-175 
  ...Completion.ts |   86.44 |    88.48 |     100 |   86.44 | ...14-515,525-541 
  ...ifications.ts |   87.82 |    96.77 |     100 |   87.82 | 138-152           
  ...tIndicator.ts |   88.28 |    81.57 |     100 |   88.28 | ...66,175,179-187 
  ...waySummary.ts |   96.26 |       75 |     100 |   96.26 | 126-128,170       
  ...ndTaskView.ts |   94.81 |    76.59 |     100 |   94.81 | 162-166,255,261   
  ...chedScroll.ts |     100 |      100 |     100 |     100 |                   
  ...ketedPaste.ts |    23.8 |      100 |       0 |    23.8 | 19-37             
  ...nchCommand.ts |   95.23 |    82.69 |     100 |   95.23 | ...53-154,277-280 
  ...ompletion.tsx |   97.09 |    87.09 |     100 |   97.09 | ...23-324,334-335 
  ...dMigration.ts |    92.1 |    88.88 |     100 |    92.1 | 42-44             
  useCompletion.ts |   96.29 |    90.56 |     100 |   96.29 | ...17-218,222-223 
  ...nitMessage.ts |     100 |      100 |     100 |     100 |                   
  ...extualTips.ts |   78.26 |       50 |     100 |   78.26 | ...2,75-79,96-104 
  ...eteCommand.ts |   89.52 |    90.69 |     100 |   89.52 | ...98-106,114-115 
  ...ialogClose.ts |   36.11 |       10 |     100 |   36.11 | ...89-195,202-207 
  useDiffData.ts   |       0 |        0 |       0 |       0 | 1-87              
  ...oublePress.ts |   53.12 |       75 |     100 |   53.12 | 33-35,41-54       
  ...orSettings.ts |     100 |      100 |     100 |     100 |                   
  ...Completion.ts |   99.12 |    97.67 |     100 |   99.12 | 182-183           
  ...ionUpdates.ts |   93.72 |    92.98 |     100 |   93.72 | ...87-291,314-320 
  ...agerDialog.ts |   88.88 |      100 |     100 |   88.88 | 21,25             
  ...backDialog.ts |    63.9 |    76.47 |   66.66 |    63.9 | ...66-168,190-191 
  useFocus.ts      |     100 |      100 |     100 |     100 |                   
  ...olderTrust.ts |     100 |    93.33 |     100 |     100 | 62                
  ...ggestions.tsx |   96.47 |    78.94 |     100 |   96.47 | 121,155-156       
  ...miniStream.ts |   83.07 |    80.25 |   74.35 |   83.07 | ...4909-4911,4913 
  ...BranchName.ts |     100 |    94.44 |     100 |     100 | 54                
  ...oryManager.ts |   98.01 |    98.36 |     100 |   98.01 | 139-142           
  ...ooksDialog.ts |    87.5 |      100 |     100 |    87.5 | 19,23             
  ...stListener.ts |     100 |      100 |     100 |     100 |                   
  ...nAuthError.ts |   76.19 |       50 |     100 |   76.19 | 39-40,43-45       
  ...putHistory.ts |   92.59 |    85.71 |     100 |   92.59 | 63-64,72,94-96    
  ...storyStore.ts |     100 |    94.11 |     100 |     100 | 69                
  useKeypress.ts   |     100 |      100 |     100 |     100 |                   
  ...rdProtocol.ts |   36.36 |      100 |       0 |   36.36 | 24-31             
  ...unchEditor.ts |   22.58 |      100 |      50 |   22.58 | 11-32,44-85       
  ...gIndicator.ts |     100 |    96.66 |     100 |     100 | 109               
  useLogger.ts     |      16 |      100 |       0 |      16 | 15-45             
  useMCPHealth.ts  |   63.15 |       80 |      50 |   63.15 | 42-52,64-67       
  ...cpApproval.ts |   93.12 |    86.11 |     100 |   93.12 | ...24-127,139-140 
  useMcpDialog.ts  |    87.5 |      100 |     100 |    87.5 | 19,23             
  ...moryDialog.ts |    87.5 |      100 |     100 |    87.5 | 19,23             
  ...oryMonitor.ts |   83.14 |    78.57 |     100 |   83.14 | 54-63,74-79       
  ...ssageQueue.ts |     100 |     97.4 |     100 |     100 | 175,262           
  ...delCommand.ts |     100 |       96 |     100 |     100 | 61                
  ...ouseEvents.ts |   94.89 |       95 |   83.33 |   94.89 | 78-82             
  ...raseCycler.ts |   84.74 |    76.47 |     100 |   84.74 | ...49,52-53,69-71 
  ...rredEditor.ts |   58.33 |    22.22 |     100 |   58.33 | 23-27,29-33       
  ...derUpdates.ts |    87.4 |    78.78 |     100 |    87.4 | ...71,321-333,381 
  useQwenAuth.ts   |     100 |      100 |     100 |     100 |                   
  ...lScheduler.ts |   89.11 |    87.32 |     100 |   89.11 | ...42-444,476-486 
  ...oryCommand.ts |       0 |        0 |       0 |       0 | 1-7               
  ...umeCommand.ts |   95.18 |    76.47 |     100 |   95.18 | 118-119,220-225   
  ...ompletion.tsx |   90.67 |    83.33 |     100 |   90.67 | ...02,105,138-141 
  ...ectionList.ts |   97.12 |    96.26 |     100 |   97.12 | ...92-193,247-250 
  ...sionPicker.ts |   92.87 |    90.35 |     100 |   92.87 | ...99-501,503-505 
  ...earchInput.ts |     100 |    97.29 |     100 |     100 | 82                
  ...ngsCommand.ts |   18.75 |      100 |       0 |   18.75 | 10-25             
  ...ellHistory.ts |   93.28 |    80.95 |     100 |   93.28 | ...96,153-154,164 
  ...oryCommand.ts |   85.48 |    58.33 |     100 |   85.48 | 22-28,40,71       
  ...agerDialog.ts |   88.23 |      100 |     100 |   88.23 | 20,24             
  ...Completion.ts |   82.85 |    85.13 |   94.73 |   82.85 | ...78-680,688-724 
  ...tateAndRef.ts |     100 |      100 |     100 |     100 |                   
  ...tatsDialog.ts |     100 |      100 |     100 |     100 |                   
  useStatusLine.ts |   97.13 |    93.33 |     100 |   97.13 | ...78-382,478-485 
  ...eateDialog.ts |   88.23 |      100 |     100 |   88.23 | 14,18             
  ...mInProcess.ts |   27.35 |       80 |      25 |   27.35 | ...82-183,186-188 
  ...tification.ts |     100 |     87.5 |     100 |     100 | 50                
  ...alProgress.ts |   67.34 |    58.82 |   66.66 |   67.34 | 52-53,61-68,79-85 
  ...rminalSize.ts |     100 |      100 |     100 |     100 |                   
  ...emeCommand.ts |   67.01 |    29.41 |     100 |   67.01 | ...10-111,115-116 
  useTimer.ts      |   97.59 |    94.73 |     100 |   97.59 | 17-18             
  ...lMigration.ts |       0 |        0 |       0 |       0 |                   
  ...rustModify.ts |     100 |    90.47 |     100 |     100 | 112,134           
  useTurnDiffs.ts  |   95.12 |    78.57 |     100 |   95.12 | 133-134,156-157   
  ...elcomeBack.ts |   87.36 |     90.9 |     100 |   87.36 | ...,94-96,114-115 
  ...reeSession.ts |   93.75 |       70 |     100 |   93.75 | 47-48,72          
  vim.ts           |      74 |    67.56 |   69.23 |      74 | ...1854-1861,1869 
 src/ui/layouts    |    91.3 |    89.47 |     100 |    91.3 |                   
  ...AppLayout.tsx |   91.07 |     87.5 |     100 |   91.07 | 61-63,111-116,152 
  ...AppLayout.tsx |   91.66 |    92.85 |     100 |   91.66 | 75-80             
 src/ui/models     |   80.72 |       80 |   71.42 |   80.72 |                   
  ...ableModels.ts |   80.72 |       80 |   71.42 |   80.72 | ...,61-71,125-127 
 ...noninteractive |     100 |      100 |    6.66 |     100 |                   
  ...eractiveUi.ts |     100 |      100 |    6.66 |     100 |                   
 src/ui/selection  |   84.99 |       80 |   93.75 |   84.99 |                   
  screen-buffer.ts |   94.73 |    64.28 |     100 |   94.73 | 51-52             
  ...ion-coords.ts |     100 |      100 |     100 |     100 |                   
  ...ction-span.ts |   92.72 |       90 |     100 |   92.72 | 37-38,67-68       
  ...tion-state.ts |   85.71 |      100 |   88.88 |   85.71 | 51-58             
  ...ction-text.ts |   92.85 |    92.45 |     100 |   92.85 | 30-34,114-115     
  ...selection.tsx |   76.86 |    57.89 |      75 |   76.86 | ...52-353,364-375 
 src/ui/state      |      95 |    81.81 |     100 |      95 |                   
  extensions.ts    |      95 |    81.81 |     100 |      95 | 69-70,89          
 src/ui/themes     |    98.5 |    73.17 |     100 |    98.5 |                   
  ansi-light.ts    |     100 |      100 |     100 |     100 |                   
  ansi.ts          |     100 |      100 |     100 |     100 |                   
  atom-one-dark.ts |     100 |      100 |     100 |     100 |                   
  ayu-light.ts     |     100 |      100 |     100 |     100 |                   
  ayu.ts           |     100 |      100 |     100 |     100 |                   
  color-utils.ts   |   99.23 |    97.05 |     100 |   99.23 | 277-278           
  default-light.ts |     100 |      100 |     100 |     100 |                   
  default.ts       |     100 |      100 |     100 |     100 |                   
  ...inal-theme.ts |   88.59 |    85.96 |     100 |   88.59 | ...57-261,266-270 
  dracula.ts       |     100 |      100 |     100 |     100 |                   
  github-dark.ts   |     100 |      100 |     100 |     100 |                   
  github-light.ts  |     100 |      100 |     100 |     100 |                   
  googlecode.ts    |     100 |      100 |     100 |     100 |                   
  no-color.ts      |     100 |      100 |     100 |     100 |                   
  qwen-dark.ts     |     100 |      100 |     100 |     100 |                   
  qwen-light.ts    |     100 |      100 |     100 |     100 |                   
  ...tic-tokens.ts |     100 |      100 |     100 |     100 |                   
  ...-of-purple.ts |     100 |      100 |     100 |     100 |                   
  theme-manager.ts |   88.68 |    84.52 |     100 |   88.68 | ...83-392,397-398 
  theme.ts         |     100 |    38.02 |     100 |     100 | ...34-449,457-461 
  xcode.ts         |     100 |      100 |     100 |     100 |                   
 src/ui/utils      |   86.79 |    85.04 |    95.5 |   86.79 |                   
  ...Colorizer.tsx |   80.31 |    85.41 |     100 |   80.31 | ...00-201,313-339 
  ...nRenderer.tsx |   79.84 |     75.6 |     100 |   79.84 | ...66,270,328-329 
  ...wnDisplay.tsx |   92.87 |    93.46 |     100 |   92.87 | ...,955,1002-1020 
  ...idDiagram.tsx |   87.79 |    95.34 |     100 |   87.79 | 156-179           
  ...eRenderer.tsx |   92.38 |    81.91 |   95.23 |   92.38 | ...43-746,799-804 
  ...odeDisplay.ts |   94.28 |    85.71 |     100 |   94.28 | 23,40             
  asciiCharts.ts   |    96.7 |     87.5 |     100 |    96.7 | 170-177,278       
  ...dWorkUtils.ts |     100 |      100 |     100 |     100 |                   
  ...boardUtils.ts |   52.52 |    73.25 |   91.66 |   52.52 | ...23,626-635,638 
  commandUtils.ts  |   96.17 |    88.88 |     100 |   96.17 | ...77,179-180,323 
  computeStats.ts  |     100 |      100 |     100 |     100 |                   
  customBanner.ts  |   90.68 |    91.22 |     100 |   90.68 | ...13,324-327,334 
  displayUtils.ts  |   73.84 |    73.91 |     100 |   73.84 | ...34,36-40,42-46 
  formatters.ts    |   94.87 |    98.18 |     100 |   94.87 | 116-119           
  goal-runtime.ts  |   91.17 |    94.73 |     100 |   91.17 | 31-33             
  gradientUtils.ts |     100 |      100 |     100 |     100 |                   
  highlight.ts     |     100 |      100 |     100 |     100 |                   
  ...gap-notice.ts |     100 |      100 |     100 |     100 |                   
  ...oryMapping.ts |     100 |       95 |     100 |     100 | 44,103            
  historyUtils.ts  |   96.03 |     97.1 |     100 |   96.03 | 103-106           
  hyperlink-at.ts  |     100 |       96 |     100 |     100 | 33                
  inline-math.ts   |   98.48 |    95.23 |     100 |   98.48 | 129-130           
  input-mouse.ts   |     100 |    85.71 |     100 |     100 | 48,93             
  isNarrowWidth.ts |     100 |      100 |     100 |     100 |                   
  ...olDetector.ts |   68.81 |       75 |   66.66 |   68.81 | ...27-132,160-161 
  latexRenderer.ts |   94.95 |     73.8 |     100 |   94.95 | ...76-178,184-187 
  layoutUtils.ts   |     100 |      100 |     100 |     100 |                   
  list-mouse.ts    |     100 |      100 |     100 |     100 |                   
  ...ightLoader.ts |     100 |       95 |     100 |     100 | 81                
  ...nUtilities.ts |   98.72 |    94.36 |     100 |   98.72 | 145-146           
  ...t-position.ts |     100 |     87.5 |     100 |     100 | 85                
  ...geRenderer.ts |   86.51 |    70.16 |   95.12 |   86.51 | ...1286,1326-1332 
  ...alRenderer.ts |   86.69 |     71.9 |     100 |   86.69 | ...1476,1513-1519 
  ...lsBySource.ts |     100 |    95.23 |     100 |     100 | 84                
  mouse.ts         |   92.85 |    74.19 |     100 |   92.85 | ...38,145,149-152 
  osc8.ts          |   90.43 |    78.33 |     100 |   90.43 | ...59,244,248-249 
  ...red-height.ts |   98.38 |     97.1 |     100 |   98.38 | 195-197           
  ...mConstants.ts |     100 |      100 |     100 |     100 |                   
  restoreGoal.ts   |     100 |      100 |     100 |     100 |                   
  ...storyUtils.ts |   79.42 |    78.08 |     100 |   79.42 | ...50-572,703-704 
  ...ickerUtils.ts |     100 |      100 |     100 |     100 |                   
  ...evel-label.ts |   77.77 |    66.66 |     100 |   77.77 | 18,22-24          
  ...are-cursor.ts |   89.47 |    85.71 |     100 |   89.47 | 39-44             
  ...ataService.ts |   93.17 |     79.1 |     100 |   93.17 | ...14,227,254-256 
  suggestions.ts   |     100 |      100 |     100 |     100 |                   
  ...izedOutput.ts |   94.94 |      100 |   88.88 |   94.94 | 112-117           
  ...nal-buffer.ts |     100 |      100 |     100 |     100 |                   
  ...e-renderer.ts |   89.19 |    79.54 |     100 |   89.19 | ...14,316-318,434 
  ...wOptimizer.ts |     100 |    96.77 |     100 |     100 | 69                
  terminalSetup.ts |    4.37 |      100 |       0 |    4.37 | 44-393            
  textUtils.ts     |   97.94 |    95.45 |   94.11 |   97.94 | ...82-283,443-444 
  ...background.ts |     100 |      100 |     100 |     100 |                   
  todoSnapshot.ts  |   90.42 |    92.85 |     100 |   90.42 | ...06-207,240-241 
  ...isplay-map.ts |     100 |      100 |     100 |     100 |                   
  updateCheck.ts   |     100 |    92.75 |     100 |     100 | 227-239,331       
  ...ow-keyword.ts |     100 |      100 |     100 |     100 |                   
 ...i/utils/export |   75.03 |     60.3 |   94.59 |   75.03 |                   
  collect.ts       |   71.27 |    66.38 |      96 |   71.27 | ...90-633,655-656 
  index.ts         |     100 |      100 |     100 |     100 |                   
  normalize.ts     |   80.42 |    50.68 |     100 |   80.42 | ...59-364,376-378 
  types.ts         |       0 |        0 |       0 |       0 | 1                 
  utils.ts         |     100 |      100 |     100 |     100 |                   
 ...ort/formatters |   52.92 |    47.22 |   71.42 |   52.92 |                   
  html.ts          |   84.61 |       50 |     100 |   84.61 | ...53,57-58,62-63 
  json.ts          |     100 |      100 |     100 |     100 |                   
  jsonl.ts         |   82.45 |     37.5 |     100 |   82.45 | ...48,50-51,65-66 
  markdown.ts      |   36.32 |    47.05 |      50 |   36.32 | ...16-219,233-295 
 src/ui/voice      |   80.94 |    72.59 |   80.55 |   80.94 |                   
  ...d-recorder.ts |     6.2 |      100 |       0 |     6.2 | ...33-159,162-163 
  ...o-recorder.ts |   84.61 |    93.33 |   57.14 |   84.61 | ...16-117,131-136 
  ...me-session.ts |   89.72 |    65.33 |   93.75 |   89.72 | ...99,305,316-319 
  sox-recorder.ts  |    92.7 |    71.87 |     100 |    92.7 | ...34-135,153-154 
  ...ailability.ts |     100 |      100 |     100 |     100 |                   
  ...e-keyterms.ts |     100 |      100 |     100 |     100 |                   
  voice-model.ts   |     100 |      100 |     100 |     100 |                   
  ...e-recorder.ts |   88.29 |    67.74 |   81.81 |   88.29 | ...,98-99,112,115 
  voice-refine.ts  |     100 |    93.33 |     100 |     100 | 92                
  ...ream-retry.ts |   86.79 |    68.42 |     100 |   86.79 | 16-18,48-49,59-60 
  ...am-session.ts |   88.02 |    66.17 |   84.61 |   88.02 | ...26,343-345,363 
  ...ranscriber.ts |     100 |      100 |     100 |     100 |                   
 src/utils         |    81.5 |    87.01 |   92.57 |    81.5 |                   
  ...p-profiler.ts |   98.39 |    90.56 |     100 |   98.39 | 141,185,235       
  acpModelUtils.ts |   97.36 |    95.19 |     100 |   97.36 | ...09-210,214-215 
  apiPreconnect.ts |   96.74 |    94.59 |     100 |   96.74 | 167-170           
  ...ol-call-id.ts |   84.61 |       60 |     100 |   84.61 | 26-27,37-38       
  ...ng-failure.ts |     100 |       95 |     100 |     100 | 72                
  checks.ts        |   33.33 |      100 |       0 |   33.33 | 23-28             
  ...-api-error.ts |     100 |    96.42 |     100 |     100 | 14                
  cleanup.ts       |   84.05 |    94.11 |      80 |   84.05 | 80,111-121        
  commands.ts      |   97.45 |    96.66 |     100 |   97.45 | 153-155           
  ...Calculator.ts |     100 |      100 |     100 |     100 |                   
  cpuProfiler.ts   |   70.73 |    73.23 |   88.88 |   70.73 | ...27,430-431,438 
  deepMerge.ts     |     100 |       90 |     100 |     100 | 41-43,49          
  ...re-runtime.ts |     100 |      100 |     100 |     100 |                   
  ...ScopeUtils.ts |   97.56 |    88.88 |     100 |   97.56 | 67                
  doctorChecks.ts  |   70.31 |    74.57 |     100 |   70.31 | ...95-301,325-341 
  ...putCapture.ts |   90.65 |    86.31 |     100 |   90.65 | ...73,371,373-374 
  ...arResolver.ts |   97.14 |    96.55 |     100 |   97.14 | 125-126           
  errors.ts        |   97.56 |    94.64 |     100 |   97.56 | 69-70,304-305     
  events.ts        |     100 |      100 |     100 |     100 |                   
  ...on-mention.ts |   88.48 |     82.6 |     100 |   88.48 | ...56-160,164-168 
  gitUtils.ts      |   92.85 |    86.66 |     100 |   92.85 | ...13-116,164-167 
  ...AutoUpdate.ts |    93.1 |       94 |      90 |    93.1 | 103,108,179-190   
  ...tyWarnings.ts |     100 |      100 |     100 |     100 |                   
  ...lationInfo.ts |   97.68 |    94.28 |     100 |   97.68 | ...64,381-382,427 
  jsonc-editor.ts  |   93.18 |    92.72 |     100 |   93.18 | ...80-381,384-385 
  languageUtils.ts |   98.88 |    97.05 |     100 |   98.88 | 184-185           
  load-undici.ts   |     100 |      100 |     100 |     100 |                   
  ...npm-update.ts |   89.31 |    77.33 |     100 |   89.31 | ...87,303-304,344 
  math.ts          |       0 |        0 |       0 |       0 | 1-15              
  ...er-mention.ts |     100 |    66.66 |     100 |     100 | 14,30,44-46       
  ...iagnostics.ts |   94.57 |    83.01 |   88.88 |   94.57 | ...05,311,315-317 
  ...serMessage.ts |     100 |      100 |     100 |     100 |                   
  ...onfigUtils.ts |   94.25 |    91.17 |     100 |   94.25 | ...30,436,439-443 
  ...iveHelpers.ts |   95.13 |    91.79 |     100 |   95.13 | ...53-454,552,565 
  osc.ts           |   97.18 |      100 |    87.5 |   97.18 | 182-183           
  package.ts       |   88.88 |    85.71 |     100 |   88.88 | 31-32             
  ...uggestions.ts |   84.29 |    70.83 |     100 |   84.29 | 70-76,92-103      
  processUtils.ts  |    92.3 |       80 |     100 |    92.3 | 45-46             
  readStdin.ts     |   93.67 |    94.11 |   85.71 |   93.67 | 79-83             
  relaunch.ts      |   95.87 |    89.28 |     100 |   95.87 | 103-105,131       
  resolvePath.ts   |     100 |      100 |     100 |     100 |                   
  runBudget.ts     |   99.35 |    96.77 |     100 |   99.35 | 119               
  sandbox-path.ts  |     100 |      100 |     100 |     100 |                   
  sandbox.ts       |   45.67 |    56.93 |   76.92 |   45.67 | ...1034,1046-1069 
  ...xImageName.ts |     100 |    77.77 |     100 |     100 | 10,18             
  sandboxMounts.ts |     100 |      100 |     100 |     100 |                   
  sessionPaths.ts  |   90.84 |    90.56 |     100 |   90.84 | ...81-182,185-186 
  settingsUtils.ts |   82.35 |    89.57 |      90 |   82.35 | ...25-743,750-758 
  spawnWrapper.ts  |     100 |      100 |     100 |     100 |                   
  ...ate-verify.ts |     100 |      100 |     100 |     100 |                   
  ...one-update.ts |   39.81 |    77.44 |   62.16 |   39.81 | ...1193,1196-1215 
  ...upProfiler.ts |   98.47 |    94.66 |     100 |   98.47 | 132-133,308       
  ...upWarnings.ts |     100 |      100 |     100 |     100 |                   
  stdioHelpers.ts  |     100 |       90 |     100 |     100 | 23                
  systemInfo.ts    |   95.12 |    90.27 |     100 |   95.12 | ...54-255,260-264 
  ...InfoFields.ts |    87.5 |    65.85 |     100 |    87.5 | ...24-125,146-147 
  ...alSequence.ts |     100 |    97.61 |     100 |     100 | 60                
  ...iffPreview.ts |   76.47 |       25 |     100 |   76.47 | 13,17,23-24       
  ...on-handler.ts |    73.8 |       75 |     100 |    73.8 | 17-18,25-26,67-73 
  ...e-relaunch.ts |   89.61 |    86.66 |      50 |   89.61 | 56-61,83-84       
  ...entEmitter.ts |     100 |      100 |     100 |     100 |                   
  ...ansionHook.ts |     100 |      100 |     100 |     100 |                   
  ...upWarnings.ts |   87.75 |       75 |     100 |   87.75 | 47-48,53-54,57-58 
  version.ts       |     100 |    66.66 |     100 |     100 | 11                
  ...ingHandler.ts |     100 |      100 |     100 |     100 |                   
  windowTitle.ts   |   95.45 |    93.33 |     100 |   95.45 | 54-55             
  ...WithBackup.ts |   65.04 |    77.77 |     100 |   65.04 | 97,112,133-172    
 ...s/housekeeping |   91.63 |    91.02 |      95 |   91.63 |                   
  cleanup.ts       |   95.77 |    95.83 |     100 |   95.77 | 70-72             
  ...eractionAt.ts |     100 |      100 |     100 |     100 |                   
  scheduler.ts     |   91.91 |    90.47 |    87.5 |   91.91 | 58-62,73,131-135  
  throttledOnce.ts |   86.66 |     86.2 |     100 |   86.66 | ...99,105,137-138 
-------------------|---------|----------|---------|---------|-------------------
Core Package - Full Text Report
-------------------|---------|----------|---------|---------|-------------------
File               | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s 
-------------------|---------|----------|---------|---------|-------------------
All files          |   87.67 |    86.24 |   89.27 |   87.67 |                   
 src               |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
 src/__mocks__/fs  |       0 |        0 |       0 |       0 |                   
  promises.ts      |       0 |        0 |       0 |       0 | 1-48              
 src/agents        |   90.46 |    84.13 |   95.65 |   90.46 |                   
  ...transcript.ts |   87.63 |    83.52 |     100 |   87.63 | ...80,588,594-598 
  ...ent-resume.ts |   85.59 |    77.55 |   83.33 |   85.59 | ...1793-1797,1800 
  ...ound-tasks.ts |   96.15 |    90.13 |   98.76 |   96.15 | ...1732,1752-1755 
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...ent-result.ts |    96.8 |    92.68 |     100 |    96.8 | 106,129-131       
  ...n-registry.ts |    93.3 |    86.11 |     100 |    93.3 | ...85-991,996-998 
  ...w-snapshot.ts |   91.86 |    75.75 |     100 |   91.86 | ...54,178,185-187 
 src/agents/arena  |   76.32 |    67.71 |   78.94 |   76.32 |                   
  ...gentClient.ts |   79.47 |    88.88 |   81.81 |   79.47 | ...68-183,189-204 
  ArenaManager.ts  |   75.11 |    64.51 |   78.57 |   75.11 | ...1887,1893-1894 
  arena-events.ts  |   64.44 |      100 |      50 |   64.44 | ...71-175,178-183 
  diff-summary.ts  |    87.5 |    72.34 |     100 |    87.5 | ...32-133,137-138 
  index.ts         |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...gents/backends |   78.09 |    85.23 |   76.28 |   78.09 |                   
  ITermBackend.ts  |   97.97 |    93.93 |     100 |   97.97 | ...78-180,255,307 
  ...essBackend.ts |    90.9 |    85.36 |   93.33 |    90.9 | ...70,672,674-675 
  TmuxBackend.ts   |    90.7 |    76.55 |   97.36 |    90.7 | ...87,697,743-747 
  detect.ts        |   31.25 |      100 |       0 |   31.25 | 34-88             
  index.ts         |     100 |      100 |     100 |     100 |                   
  iterm-it2.ts     |     100 |     92.1 |     100 |     100 | 37-38,106         
  tmux-commands.ts |    6.64 |      100 |    3.03 |    6.64 | ...93-363,386-503 
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...agents/runtime |   90.55 |    86.14 |   87.64 |   90.55 |                   
  agent-context.ts |     100 |      100 |     100 |     100 |                   
  agent-core.ts    |   85.07 |     76.8 |   77.77 |   85.07 | ...2291,2337-2339 
  agent-events.ts  |     100 |      100 |     100 |     100 |                   
  ...t-headless.ts |   93.49 |    89.41 |   83.33 |   93.49 | ...96-497,500-501 
  ...nteractive.ts |   81.01 |    82.35 |   76.66 |   81.01 | ...33,535-538,541 
  ...statistics.ts |   98.29 |    82.55 |     100 |   98.29 | 141,165,206,239   
  agent-types.ts   |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...ool-policy.ts |   98.34 |      100 |    92.3 |   98.34 | 81-82             
  ...low-budget.ts |     100 |      100 |     100 |     100 |                   
  ...ow-journal.ts |   91.76 |    75.86 |     100 |   91.76 | ...38-139,179-181 
  ...chestrator.ts |   91.86 |    88.71 |   82.35 |   91.86 | ...1782,1831-1834 
  ...ow-prompts.ts |     100 |      100 |     100 |     100 |                   
  ...low-runner.ts |    94.3 |    87.17 |   91.66 |    94.3 | ...74,222,242-245 
  ...ow-sandbox.ts |   96.87 |    94.64 |     100 |   96.87 | ...24-325,330-331 
  ...flow-saved.ts |   96.51 |    94.36 |     100 |   96.51 | 134-135,234-237   
  ...flow-stall.ts |    97.9 |    83.33 |     100 |    97.9 | 138-139,236       
 src/agents/tasks  |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/agents/team   |   82.04 |    84.17 |   88.97 |   82.04 |                   
  TeamManager.ts   |   72.02 |    79.41 |   79.24 |   72.02 | ...1632,1655-1656 
  identity.ts      |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...sionBridge.ts |     100 |      100 |     100 |     100 |                   
  mailbox.ts       |   96.02 |    87.23 |     100 |   96.02 | 352-358           
  ...ptAddendum.ts |     100 |      100 |     100 |     100 |                   
  tasks.ts         |   89.24 |    82.82 |     100 |   89.24 | ...-994,1038-1039 
  team-events.ts   |   60.52 |      100 |      50 |   60.52 | ...40-144,151-155 
  teamHelpers.ts   |   92.02 |    94.91 |   95.23 |   92.02 | ...31-332,368-378 
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...eam/test-utils |   94.39 |    94.26 |   98.21 |   94.39 |                   
  ...on-harness.ts |   96.49 |    84.21 |     100 |   96.49 | 128-129,141-142   
  fake-agent.ts    |   98.49 |    95.08 |     100 |   98.49 | 201-203           
  fake-backend.ts  |   86.46 |    97.61 |   95.83 |   86.46 | 124-146           
 src/config        |   84.97 |    87.13 |   75.37 |   84.97 |                   
  approval-mode.ts |     100 |      100 |     100 |     100 |                   
  ...xtDefaults.ts |     100 |      100 |     100 |     100 |                   
  config.ts        |   84.29 |    86.85 |   73.79 |   84.29 | ...8346,8350-8351 
  constants.ts     |     100 |      100 |     100 |     100 |                   
  models.ts        |     100 |      100 |     100 |     100 |                   
  storage.ts       |   94.39 |    91.57 |   88.23 |   94.39 | ...45-446,449-450 
 ...nfirmation-bus |   98.27 |    97.14 |     100 |   98.27 |                   
  message-bus.ts   |   98.14 |    97.05 |     100 |   98.14 | 42-43             
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/core          |   91.95 |    87.94 |   93.23 |   91.95 |                   
  baseLlmClient.ts |   88.37 |    83.68 |   81.81 |   88.37 | ...51,664,670-672 
  client.ts        |   91.91 |    87.15 |   91.56 |   91.91 | ...3922,4016-4017 
  ...tGenerator.ts |   86.34 |    87.34 |   84.61 |   86.34 | ...81-482,527-533 
  ...lScheduler.ts |   90.05 |    84.72 |   96.19 |   90.05 | ...6225,6253-6269 
  geminiChat.ts    |   92.97 |    89.89 |   95.41 |   92.97 | ...4938,4984-4985 
  geminiRequest.ts |     100 |      100 |     100 |     100 |                   
  genai-compat.ts  |     100 |      100 |     100 |     100 |                   
  ...MediaLimit.ts |     100 |       96 |     100 |     100 | 96                
  ...htProtocol.ts |    9.09 |      100 |       0 |    9.09 | ...9,62-66,69-110 
  ...ream-error.ts |     100 |      100 |     100 |     100 |                   
  logger.ts        |   87.41 |    87.02 |     100 |   87.41 | ...64-568,614-628 
  ...lay-buffer.ts |     100 |      100 |     100 |     100 |                   
  ...dispatcher.ts |     100 |      100 |     100 |     100 |                   
  ...tyDefaults.ts |     100 |      100 |     100 |     100 |                   
  ...olExecutor.ts |   93.54 |    83.33 |      50 |   93.54 | 49-50             
  ...on-helpers.ts |   93.49 |    78.57 |     100 |   93.49 | ...10-211,228-229 
  ...issionFlow.ts |   98.97 |    96.96 |     100 |   98.97 | 107               
  ...try-policy.ts |     100 |      100 |     100 |     100 |                   
  ...ell-policy.ts |   95.19 |    89.47 |     100 |   95.19 | ...44-245,290-291 
  prompts.ts       |   93.64 |    91.42 |   83.33 |   93.64 | ...1208,1411-1412 
  ...ing-effort.ts |     100 |      100 |     100 |     100 |                   
  ...n-recovery.ts |   95.13 |       80 |     100 |   95.13 | ...06-107,142-144 
  ...t-profiler.ts |    97.9 |    81.15 |   88.23 |    97.9 | 117,124-125,130   
  ...port-retry.ts |     100 |      100 |     100 |     100 |                   
  tokenLimits.ts   |     100 |     92.1 |     100 |     100 | 87,122-139        
  ...reparation.ts |     100 |      100 |     100 |     100 |                   
  ...tion-guard.ts |   90.38 |    94.73 |     100 |   90.38 | 68-72             
  ...allIdUtils.ts |   98.41 |    93.47 |     100 |   98.41 | 36,45             
  ...okTriggers.ts |   99.45 |    92.43 |     100 |   99.45 | 182,193           
  ...terruption.ts |     100 |     92.3 |     100 |     100 | 86,104            
  turn.ts          |   98.53 |    91.74 |     100 |   98.53 | ...25,653-654,701 
  ...l-fallback.ts |     100 |      100 |     100 |     100 |                   
 ...ntentGenerator |   96.33 |    88.12 |   96.15 |   96.33 |                   
  ...tGenerator.ts |   97.24 |    86.72 |   94.87 |   97.24 | ...1429,1458,1469 
  converter.ts     |   96.19 |    89.25 |     100 |   96.19 | ...1329,1550-1552 
  index.ts         |       0 |        0 |       0 |       0 | 1-21              
  usage.ts         |     100 |      100 |     100 |     100 |                   
 ...ntentGenerator |   88.78 |    72.36 |   89.47 |   88.78 |                   
  ...tGenerator.ts |   87.18 |    71.83 |   88.88 |   87.18 | ...58-364,382-383 
  index.ts         |     100 |       80 |     100 |     100 | 50                
 ...ntentGenerator |    95.6 |    88.74 |    92.3 |    95.6 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...tGenerator.ts |   95.52 |    87.88 |   91.89 |   95.52 | ...1195-1196,1224 
  ...tDetection.ts |     100 |      100 |     100 |     100 |                   
 ...ntentGenerator |   91.71 |    90.27 |   95.28 |   91.71 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  converter.ts     |   91.15 |    89.32 |   96.87 |   91.15 | ...1914,2083-2098 
  errorHandler.ts  |     100 |      100 |     100 |     100 |                   
  index.ts         |   60.31 |       75 |      50 |   60.31 | ...71,74-78,90-94 
  ...tGenerator.ts |    66.4 |    70.58 |   88.88 |    66.4 | ...51-157,168-169 
  pipeline.ts      |   96.69 |    91.07 |     100 |   96.69 | ...1125,1133,1232 
  ...ix-caching.ts |     100 |      100 |     100 |     100 |                   
  ...ureContext.ts |     100 |      100 |     100 |     100 |                   
  ...ingOptions.ts |       0 |        0 |       0 |       0 | 1                 
  ...CallParser.ts |   92.24 |     92.4 |     100 |   92.24 | ...28-529,549-552 
  ...kingParser.ts |     100 |    96.87 |     100 |     100 | 42                
  types.ts         |       0 |        0 |       0 |       0 | 1                 
 ...rator/provider |   97.19 |    90.47 |   98.36 |   97.19 |                   
  dashscope.ts     |   98.36 |    93.03 |   95.65 |   98.36 | ...93-494,636-637 
  deepseek.ts      |   94.91 |    89.36 |     100 |   94.91 | ...31-132,145-146 
  default.ts       |   99.16 |    96.96 |     100 |   99.16 | 198               
  index.ts         |     100 |      100 |     100 |     100 |                   
  mimo.ts          |   94.11 |    66.66 |     100 |   94.11 | 29,52-53          
  minimax.ts       |     100 |      100 |     100 |     100 |                   
  mistral.ts       |   96.07 |    73.33 |     100 |   96.07 | 32-33             
  modelscope.ts    |     100 |      100 |     100 |     100 |                   
  types.ts         |       0 |        0 |       0 |       0 |                   
  utils.ts         |     100 |      100 |     100 |     100 |                   
  zai.ts           |   92.13 |    82.14 |     100 |   92.13 | ...,39-40,135-137 
 src/extension     |   86.21 |    83.25 |   92.35 |   86.21 |                   
  ...ive-safety.ts |     100 |      100 |     100 |     100 |                   
  ...-converter.ts |   78.32 |    71.83 |     100 |   78.32 | ...1122,1168-1169 
  corruptFile.ts   |     100 |       50 |     100 |     100 | 40-45             
  ...-converter.ts |   80.39 |     87.5 |     100 |   80.39 | 50-59             
  ...me-refresh.ts |     100 |      100 |     100 |     100 |                   
  ...sion-store.ts |   90.85 |    86.38 |   97.87 |   90.85 | ...1218-1224,1268 
  ...ionManager.ts |   81.06 |    78.78 |   81.52 |   81.06 | ...2705,2727-2728 
  ...references.ts |     100 |     90.9 |     100 |     100 | ...05,129,197,200 
  ...onSettings.ts |    92.3 |     94.4 |     100 |    92.3 | ...98-501,570-571 
  ...-converter.ts |    75.9 |    84.61 |   85.71 |    75.9 | ...98,202,214-248 
  github.ts        |   88.58 |    82.13 |     100 |   88.58 | ...62,952-953,963 
  http-client.ts   |   84.61 |       80 |     100 |   84.61 | 20-21             
  i18n.ts          |   78.26 |       96 |      50 |   78.26 | 104-110,116-123   
  index.ts         |     100 |      100 |     100 |     100 |                   
  marketplace.ts   |   88.39 |    83.11 |     100 |   88.39 | ...08,494,507-508 
  ...ork-policy.ts |   89.72 |       90 |     100 |   89.72 | ...36,148-154,156 
  npm.ts           |   89.02 |    81.81 |     100 |   89.02 | ...86-688,695-700 
  override.ts      |   94.11 |    93.33 |     100 |   94.11 | 63-64,81-82       
  redaction.ts     |     100 |      100 |     100 |     100 |                   
  settings.ts      |   66.26 |      100 |      50 |   66.26 | 81-107,141-146    
  ...ceRegistry.ts |   94.01 |    83.14 |     100 |   94.01 | ...38-344,365-366 
  storage.ts       |     100 |      100 |     100 |     100 |                   
  ...ableSchema.ts |     100 |      100 |     100 |     100 |                   
  variables.ts     |   88.95 |    83.78 |     100 |   88.95 | ...32-235,238-241 
  ...extraction.ts |   85.77 |    80.61 |   89.47 |   85.77 | ...02-205,260-261 
 src/followup      |   79.92 |    80.07 |    90.9 |   79.92 |                   
  followupState.ts |   98.44 |    95.74 |     100 |   98.44 | 236-237           
  index.ts         |     100 |      100 |     100 |     100 |                   
  overlayFs.ts     |   96.29 |    88.88 |     100 |   96.29 | 78,108,122        
  speculation.ts   |   71.64 |    65.38 |   71.42 |   71.64 | ...52-653,660-661 
  ...onToolGate.ts |     100 |    96.55 |     100 |     100 | 97                
  ...nGenerator.ts |   72.03 |    81.15 |   83.33 |   72.03 | ...68-219,331-333 
 src/generated     |       0 |        0 |       0 |       0 |                   
  git-commit.ts    |       0 |        0 |       0 |       0 | 1-10              
 src/goals         |   94.22 |    88.93 |    95.9 |   94.22 |                   
  ...eGoalStore.ts |   87.61 |    88.88 |   86.66 |   87.61 | ...85-188,196-204 
  goal-evidence.ts |   87.61 |    85.02 |   95.65 |   87.61 | ...13-614,637-640 
  ...projection.ts |   89.41 |    72.22 |   66.66 |   89.41 | ...28,131,135-137 
  ...ersistence.ts |   87.73 |    84.84 |      80 |   87.73 | ...-94,97,101-106 
  goal-protocol.ts |      92 |       90 |     100 |      92 | 109-110           
  goal-reducer.ts  |   92.45 |    85.93 |     100 |   92.45 | ...84-385,398,453 
  goal-runtime.ts  |   99.05 |    93.64 |     100 |   99.05 | ...20-721,744-745 
  goal-tools.ts    |   98.22 |    93.02 |      95 |   98.22 | ...46-147,248-249 
  ...rn-context.ts |     100 |      100 |     100 |     100 |                   
  goal-verifier.ts |   92.46 |    92.85 |     100 |   92.46 | ...69-172,185-187 
  goal-wire.ts     |       0 |        0 |       0 |       0 | 1-27              
  goalHook.ts      |   96.91 |    92.42 |     100 |   96.91 | 115-120,221-222   
  goalJudge.ts     |   95.84 |    87.09 |     100 |   95.84 | ...55-356,448-449 
  index.ts         |     100 |      100 |     100 |     100 |                   
 src/hooks         |   88.11 |    86.37 |   88.62 |   88.11 |                   
  ...okRegistry.ts |   86.48 |    77.08 |     100 |   86.48 | ...41-344,362-369 
  ...bortSignal.ts |     100 |      100 |     100 |     100 |                   
  context-usage.ts |     100 |      100 |     100 |     100 |                   
  ...terpolator.ts |   96.66 |    93.33 |     100 |   96.66 | 66-67             
  ...HookRunner.ts |   96.68 |    87.23 |     100 |   96.68 | 110-112,231-233   
  ...Aggregator.ts |   96.57 |    91.48 |     100 |   96.57 | ...20-321,402,404 
  ...entHandler.ts |   95.57 |    84.76 |   94.73 |   95.57 | ...1040-1041,1051 
  hookPlanner.ts   |   87.55 |    85.54 |   86.66 |   87.55 | ...22-226,233-244 
  hookRegistry.ts  |   92.53 |    85.43 |     100 |   92.53 | ...39,458,462,466 
  hookRunner.ts    |   62.65 |    72.34 |   66.66 |   62.65 | ...70-771,780-781 
  hookSystem.ts    |   87.64 |     98.5 |   70.83 |   87.64 | ...58-759,765-766 
  ...HookRunner.ts |   79.06 |    66.66 |      80 |   79.06 | ...33-434,452-456 
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...edCallback.ts |     100 |      100 |     100 |     100 |                   
  ...HookRunner.ts |   94.19 |    84.37 |   81.81 |   94.19 | ...76-384,458-459 
  ...SkillHooks.ts |   78.75 |       75 |   66.66 |   78.75 | 62-66,137-152     
  ...oksManager.ts |   94.87 |    88.88 |     100 |   94.87 | ...84,325,327-329 
  ssrfGuard.ts     |   86.45 |    89.13 |     100 |   86.45 | ...85,289-295,301 
  stopHookCap.ts   |     100 |      100 |     100 |     100 |                   
  trustedHooks.ts  |      90 |    52.63 |     100 |      90 | ...53,66-67,97-98 
  types.ts         |   94.25 |    96.09 |   88.88 |   94.25 | ...46-547,632-636 
  urlValidator.ts  |     100 |      100 |     100 |     100 |                   
  ...it-context.ts |     100 |      100 |     100 |     100 |                   
 src/ide           |   76.98 |    85.03 |   79.03 |   76.98 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  detect-ide.ts    |     100 |      100 |     100 |     100 |                   
  ide-client.ts    |   69.16 |    84.65 |   68.29 |   69.16 | ...1068,1097-1105 
  ide-installer.ts |   89.06 |    79.31 |     100 |   89.06 | ...36,143-147,160 
  ideContext.ts    |     100 |      100 |     100 |     100 |                   
  process-utils.ts |   84.84 |    71.79 |     100 |   84.84 | ...37,151,193-194 
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/lsp           |   58.96 |    70.57 |   66.14 |   58.96 |                   
  ...nfigLoader.ts |   80.55 |       72 |   95.45 |   80.55 | ...02-504,508-514 
  ...ionFactory.ts |   42.81 |    73.07 |      50 |   42.81 | ...76-427,433-450 
  ...Normalizer.ts |   23.09 |    13.72 |   30.43 |   23.09 | ...04-905,909-924 
  ...verManager.ts |   75.73 |     80.1 |   79.66 |   75.73 | ...1346,1352-1382 
  ...eLspClient.ts |   32.78 |       80 |   16.66 |   32.78 | ...89-293,299-300 
  ...LspService.ts |      60 |    73.36 |   78.26 |      60 | ...1575,1635-1645 
  configHash.ts    |     100 |      100 |     100 |     100 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/mcp           |    82.3 |    77.81 |   78.33 |    82.3 |                   
  configHash.ts    |     100 |      100 |     100 |     100 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  ...h-provider.ts |   86.95 |      100 |   33.33 |   86.95 | ...,93,97,101-102 
  ...h-provider.ts |   79.31 |    58.06 |     100 |   79.31 | ...26-933,940-942 
  ...en-storage.ts |   98.78 |    97.95 |     100 |   98.78 | 106-107           
  oauth-utils.ts   |   73.61 |    85.48 |    92.3 |   73.61 | ...46-366,392-421 
  ...n-provider.ts |   89.83 |       96 |   45.45 |   89.83 | ...43,147,151-152 
 .../token-storage |   82.12 |    88.19 |   89.28 |   82.12 |                   
  ...en-storage.ts |     100 |      100 |     100 |     100 |                   
  ...en-storage.ts |   87.08 |    87.03 |   95.23 |   87.08 | ...00-201,214-215 
  ...en-storage.ts |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...en-storage.ts |   68.14 |    82.35 |   64.28 |   68.14 | ...81-295,298-314 
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/memory        |   87.61 |    83.61 |   90.53 |   87.61 |                   
  ...y-document.ts |   89.52 |    84.61 |     100 |   89.52 | ...24-325,329-330 
  ...nel-memory.ts |   97.36 |    96.63 |   96.42 |   97.36 | ...91-293,367-368 
  const.ts         |   94.28 |     92.3 |     100 |   94.28 | 66-67             
  dream.ts         |    64.6 |    72.22 |      50 |    64.6 | ...04-109,124-165 
  ...entPlanner.ts |     100 |    83.33 |     100 |     100 | 136,146           
  entries.ts       |   75.59 |    84.84 |   83.33 |   75.59 | ...56-157,172-180 
  extract.ts       |   91.48 |    75.75 |     100 |   91.48 | ...99,118-121,189 
  ...entPlanner.ts |   91.59 |    76.74 |     100 |   91.59 | ...05,114-117,293 
  ...ionPlanner.ts |       0 |        0 |       0 |       0 | 1                 
  forget.ts        |   81.83 |       75 |   83.33 |   81.83 | ...51,474,478-507 
  indexer.ts       |   94.14 |       84 |     100 |   94.14 | ...32-233,334,337 
  ...kill-agent.ts |   97.94 |    89.36 |     100 |   97.94 | 82-83,179-180     
  manager.ts       |    78.4 |    82.29 |   77.77 |    78.4 | ...1482,1495-1497 
  ...ent-config.ts |   86.95 |    82.52 |   86.36 |   86.95 | ...68,388,395-401 
  memoryAge.ts     |   90.47 |       80 |     100 |   90.47 | 50-51             
  paths.ts         |   95.29 |    96.59 |     100 |   95.29 | ...80-381,402-403 
  ...ing-skills.ts |     100 |       72 |     100 |     100 | 31-35,73-78,97    
  prompt.ts        |   97.26 |    87.03 |     100 |   97.26 | ...10-218,222,225 
  recall.ts        |   82.06 |       75 |    90.9 |   82.06 | ...59-364,395-406 
  refresh.ts       |   89.85 |    82.92 |     100 |   89.85 | ...54-155,162-163 
  ...ceSelector.ts |    93.1 |    81.81 |     100 |    93.1 | ...25,127-128,136 
  remember.ts      |   98.89 |    90.19 |     100 |   98.89 | 50,70             
  scan.ts          |   93.12 |    77.41 |     100 |   93.12 | ...08-109,154,157 
  scopes.ts        |     100 |      100 |     100 |     100 |                   
  ...et-scanner.ts |     100 |      100 |     100 |     100 |                   
  ...entPlanner.ts |   77.24 |    74.07 |   72.22 |   77.24 | ...52-456,459,465 
  status.ts        |   10.52 |      100 |       0 |   10.52 | 41-98             
  store.ts         |   92.92 |    81.81 |     100 |   92.92 | ...16-117,147-148 
  ...git-status.ts |     100 |     87.5 |     100 |     100 | 30                
  ...cret-guard.ts |     100 |      100 |     100 |     100 |                   
  ...emory-sync.ts |   94.24 |    82.85 |     100 |   94.24 | ...34-236,246-247 
  types.ts         |     100 |      100 |     100 |     100 |                   
  ...ontextFile.ts |   81.21 |    81.53 |   81.81 |   81.21 | ...63-277,291-296 
 src/mocks         |       0 |        0 |       0 |       0 |                   
  msw.ts           |       0 |        0 |       0 |       0 | 1-9               
 src/models        |   92.55 |    88.97 |   91.13 |   92.55 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  ...tor-config.ts |   97.77 |    91.83 |     100 |   97.77 | 155,161,171       
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...nfigErrors.ts |   74.22 |    47.82 |   84.61 |   74.22 | ...,67-74,106-117 
  ...igResolver.ts |   98.71 |    93.33 |     100 |   98.71 | 166,328,334       
  modelRegistry.ts |     100 |    98.11 |     100 |     100 | 177,261           
  modelsConfig.ts  |   89.36 |    86.93 |   88.09 |   89.36 | ...1404,1433-1434 
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/output        |     100 |      100 |     100 |     100 |                   
  ...-formatter.ts |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/permissions   |   83.77 |    91.26 |   71.07 |   83.77 |                   
  autoMode.ts      |   97.66 |    93.13 |     100 |   97.66 | ...82-589,635,712 
  ...transcript.ts |      98 |       84 |     100 |      98 | 200-201           
  classifier.ts    |      94 |    94.54 |     100 |      94 | 158-165,389-393   
  ...erousRules.ts |     100 |    89.36 |     100 |     100 | 110,133,147,175   
  ...alTracking.ts |     100 |      100 |     100 |     100 |                   
  ...e-commands.ts |   86.77 |     73.8 |     100 |   86.77 | 131-141,210-214   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...on-manager.ts |   86.54 |    89.63 |      80 |   86.54 | ...1096,1202-1206 
  rule-parser.ts   |   94.49 |     92.7 |     100 |   94.49 | ...1447,1481-1483 
  ...-semantics.ts |   70.44 |    91.09 |   46.66 |   70.44 | ...2237,2311-2314 
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...sifier-prompts |   99.04 |    95.23 |     100 |   99.04 |                   
  system-prompt.ts |   99.04 |    95.23 |     100 |   99.04 | 220               
 src/prompts       |   83.63 |      100 |    87.5 |   83.63 |                   
  mcp-prompts.ts   |   18.18 |      100 |       0 |   18.18 | 11-19             
  ...t-registry.ts |     100 |      100 |     100 |     100 |                   
 src/providers     |   83.71 |     78.5 |   81.25 |   83.71 |                   
  all-providers.ts |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  install.ts       |   93.11 |     84.5 |     100 |   93.11 | ...56-257,330-331 
  ...der-config.ts |   75.85 |    73.84 |   78.26 |   75.85 | ...73-474,502-503 
  types.ts         |       0 |        0 |       0 |       0 | 1                 
 ...viders/presets |   97.82 |    91.66 |   63.63 |   97.82 |                   
  ...oding-plan.ts |   87.34 |      100 |       0 |   87.34 | 82-84,87-89,91-94 
  ...a-standard.ts |     100 |      100 |     100 |     100 |                   
  ...token-plan.ts |     100 |      100 |     100 |     100 |                   
  ...m-provider.ts |   97.05 |    81.25 |      75 |   97.05 | 118-119           
  deepseek.ts      |     100 |      100 |     100 |     100 |                   
  grok.ts          |     100 |      100 |     100 |     100 |                   
  idealab.ts       |     100 |      100 |     100 |     100 |                   
  minimax.ts       |     100 |      100 |     100 |     100 |                   
  modelscope.ts    |     100 |      100 |     100 |     100 |                   
  openrouter.ts    |     100 |      100 |     100 |     100 |                   
  requesty.ts      |     100 |      100 |     100 |     100 |                   
  zai.ts           |     100 |      100 |     100 |     100 |                   
 src/qwen          |   85.41 |    78.52 |   95.89 |   85.41 |                   
  ...tGenerator.ts |   98.64 |    98.18 |     100 |   98.64 | 105-106           
  qwenOAuth2.ts    |   82.79 |    73.29 |   90.62 |   82.79 | ...1205-1221,1251 
  ...kenManager.ts |   85.36 |    76.61 |     100 |   85.36 | ...52-757,778-783 
 src/resources     |     100 |      100 |     100 |     100 |                   
  ...e-registry.ts |     100 |      100 |     100 |     100 |                   
 src/services      |   89.63 |    84.49 |   96.85 |   89.63 |                   
  ...ionTrailer.ts |     100 |      100 |     100 |     100 |                   
  ...llRegistry.ts |   97.68 |    85.71 |     100 |   97.68 | ...96,119,490-491 
  ...ionService.ts |   97.45 |    95.45 |     100 |   97.45 | ...,905,1048-1056 
  ...ingService.ts |   91.41 |    85.15 |   95.65 |   91.41 | ...2117,2144-2145 
  ...ttribution.ts |   91.73 |    87.71 |      90 |   91.73 | ...80-685,826-827 
  ...utSlimming.ts |    97.2 |    93.93 |     100 |    97.2 | ...39-340,378-381 
  cronScheduler.ts |   94.17 |    90.45 |      98 |   94.17 | ...1333,1736-1737 
  cronTasksFile.ts |   96.31 |    91.81 |     100 |   96.31 | ...11,336-337,483 
  cronTasksLock.ts |   94.44 |    89.47 |     100 |   94.44 | ...02-103,132-133 
  ...eryService.ts |   96.22 |    93.54 |      90 |   96.22 | 121,155-156,161   
  ...oryService.ts |   88.17 |    79.02 |    92.3 |   88.17 | ...1303,1344-1347 
  fileReadCache.ts |     100 |      100 |     100 |     100 |                   
  ...temService.ts |    92.8 |    84.68 |   94.11 |    92.8 | ...41,467-474,519 
  ...ratedFiles.ts |      96 |    88.23 |     100 |      96 | 119-120,146-147   
  gitInit.ts       |     100 |      100 |     100 |     100 |                   
  ...reeService.ts |    73.7 |    68.49 |   95.83 |    73.7 | ...2196,2225-2226 
  ...on-service.ts |   87.38 |       72 |     100 |   87.38 | ...01-305,343-344 
  ...references.ts |   98.39 |    88.76 |     100 |   98.39 | 154-155,215-216   
  ...ionService.ts |   98.22 |    97.34 |     100 |   98.22 | ...75-676,723-724 
  ...ticsDumper.ts |   98.37 |    95.23 |     100 |   98.37 | 185-186           
  ...ureMonitor.ts |   95.82 |    90.52 |   97.05 |   95.82 | ...60,861,875-877 
  ...orRegistry.ts |    97.3 |    91.22 |     100 |    97.3 | ...53-454,611-612 
  ...ttachments.ts |   97.74 |    90.85 |     100 |   97.74 | 298-308,646       
  ...ersistence.ts |   90.95 |    78.75 |     100 |   90.95 | ...78,963-964,992 
  ...on-service.ts |   94.49 |    92.26 |   97.14 |   94.49 | ...98-600,656-664 
  ...ce-service.ts |   98.38 |    93.75 |   88.88 |   98.38 | 63-64             
  ...ipt-reader.ts |   93.69 |    89.22 |   96.07 |   93.69 | ...1094-1095,1158 
  ...est-helper.ts |       0 |        0 |       0 |       0 | 1-65              
  ...iter-lease.ts |   82.81 |    74.08 |    97.5 |   82.81 | ...2364,2376-2379 
  sessionRecap.ts  |   67.56 |    43.47 |     100 |   67.56 | ...60,178,180-183 
  ...ionService.ts |   88.94 |    83.92 |   97.14 |   88.94 | ...2450,2520-2540 
  sessionTitle.ts  |   94.19 |    73.21 |     100 |   94.19 | ...43-246,277-278 
  ...ionService.ts |   84.35 |    78.37 |   97.14 |   84.35 | ...2472,2478-2483 
  ...pInhibitor.ts |   97.42 |    92.77 |     100 |   97.42 | ...30,169,369-370 
  ...Estimation.ts |     100 |    88.23 |     100 |     100 | 118-119           
  ...ageService.ts |   97.76 |    91.59 |   93.75 |   97.76 | ...61-262,366,567 
  ...UseSummary.ts |   94.63 |    88.46 |     100 |   94.63 | ...62-164,214-215 
  ...rd-service.ts |     100 |    88.37 |     100 |     100 | ...29,145-146,241 
  ...oryService.ts |   90.72 |    84.07 |     100 |   90.72 | ...06-509,561-562 
  ...reeCleanup.ts |   14.42 |      100 |   33.33 |   14.42 | 58-186            
  ...ionService.ts |   87.98 |    86.95 |     100 |   87.98 | ...38-439,455-456 
 ...icrocompaction |    98.9 |    95.06 |     100 |    98.9 |                   
  microcompact.ts  |    98.9 |    95.06 |     100 |    98.9 | ...40,749,758-759 
 ...s/visionBridge |   98.81 |    92.12 |     100 |   98.81 |                   
  ...capability.ts |     100 |      100 |     100 |     100 |                   
  ...part-utils.ts |     100 |      100 |     100 |     100 |                   
  ...ion-bridge.ts |   98.72 |    82.35 |     100 |   98.72 | 65,71             
  ...-constants.ts |     100 |      100 |     100 |     100 |                   
  ...ge-service.ts |   98.61 |     94.7 |     100 |   98.61 | ...06,666,679-680 
 src/skills        |   89.29 |    85.87 |   93.61 |   89.29 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...activation.ts |     100 |    93.33 |     100 |     100 | 93,112            
  skill-curator.ts |   89.71 |    81.54 |     100 |   89.71 | ...01-902,904-907 
  skill-load.ts    |   94.84 |     87.5 |     100 |   94.84 | ...03,223,235-237 
  skill-manager.ts |   84.82 |    85.29 |   83.33 |   84.82 | ...1243,1250-1254 
  skill-paths.ts   |   90.42 |     87.5 |     100 |   90.42 | ...19-120,125-126 
  symlinkScope.ts  |     100 |      100 |     100 |     100 |                   
  types.ts         |   97.91 |       98 |     100 |   97.91 | 277-278           
 ...ataviz/scripts |   80.06 |    95.23 |   88.23 |   80.06 |                   
  ...te_palette.js |   80.06 |    95.23 |   88.23 |   80.06 | 261-296,306-328   
 ...s/bundled/loop |   97.48 |    95.77 |     100 |   97.48 |                   
  ...omous-loop.ts |     100 |      100 |     100 |     100 |                   
  ...-task-file.ts |   94.85 |     92.4 |     100 |   94.85 | ...56,367,375-376 
  ...k-resolver.ts |     100 |      100 |     100 |     100 |                   
 src/subagents     |   87.72 |    89.01 |   96.55 |   87.72 |                   
  ...ter-schema.ts |     100 |    98.07 |     100 |     100 | 99                
  ...tin-agents.ts |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...nt-manager.ts |   84.48 |    85.91 |   94.87 |   84.48 | ...1582,1659-1660 
  types.ts         |     100 |      100 |     100 |     100 |                   
  validation.ts    |   92.46 |    95.18 |     100 |   92.46 | 47-52,63-68,71-76 
 src/telemetry     |   81.39 |    83.87 |   84.66 |   81.39 |                   
  ...ty-tracker.ts |     100 |      100 |     100 |     100 |                   
  config.ts        |     100 |      100 |     100 |     100 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  ...on-metrics.ts |   99.07 |    80.95 |     100 |   99.07 | 183,197           
  ...on-tracing.ts |   76.31 |    74.62 |   73.68 |   76.31 | ...80,387-389,405 
  ...attributes.ts |   95.15 |    87.27 |     100 |   95.15 | ...97-198,216-217 
  ...ag-metrics.ts |     100 |    77.77 |     100 |     100 | 21,40             
  ...t-loop-lag.ts |   96.85 |    85.71 |     100 |   96.85 | 170-173           
  ...-exporters.ts |   65.78 |    83.33 |   55.55 |   65.78 | ...04-105,108-109 
  ...ai-content.ts |    74.5 |    66.41 |   91.66 |    74.5 | ...1480,1493-1502 
  ...i-provider.ts |     100 |       99 |     100 |     100 | 99                
  ...ai-request.ts |   87.52 |    92.79 |   83.78 |   87.52 | ...55-561,564-570 
  gen-ai-usage.ts  |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...t.circular.ts |       0 |        0 |       0 |       0 | 1-111             
  ...-processor.ts |    99.1 |    95.72 |      95 |    99.1 | 145,369-370       
  ...t.circular.ts |       0 |        0 |       0 |       0 | 1-128             
  loggers.ts       |   57.84 |    74.16 |   65.45 |   57.84 | ...1438,1455-1475 
  metrics.ts       |   80.04 |    82.75 |   80.32 |   80.04 | ...1105,1108-1119 
  otlp-urls.ts     |     100 |      100 |     100 |     100 |                   
  ...attributes.ts |     100 |      100 |     100 |     100 |                   
  ...ime-config.ts |       0 |        0 |       0 |       0 | 1                 
  sanitize.ts      |      80 |    83.33 |     100 |      80 | 35-36,41-42       
  ...rters-grpc.ts |     100 |      100 |     100 |     100 |                   
  ...rters-http.ts |     100 |      100 |     100 |     100 |                   
  sdk-impl.ts      |   91.06 |    87.15 |   68.75 |   91.06 | ...32,478-479,495 
  sdk.ts           |   79.22 |    89.18 |   63.63 |   79.22 | ...57-161,199-221 
  ...on-context.ts |     100 |      100 |     100 |     100 |                   
  ...on-tracing.ts |    91.1 |    88.68 |   96.77 |    91.1 | ...1737,1768-1771 
  ...etry-utils.ts |     100 |      100 |     100 |     100 |                   
  ...l-decision.ts |     100 |      100 |     100 |     100 |                   
  trace-context.ts |     100 |      100 |     100 |     100 |                   
  ...e-id-utils.ts |     100 |      100 |     100 |     100 |                   
  tracer.ts        |   98.56 |    88.63 |     100 |   98.56 | 52,101            
  types.ts         |   82.51 |    94.77 |   86.04 |   82.51 | ...1374,1378-1385 
  uiTelemetry.ts   |   97.18 |    93.93 |      88 |   97.18 | ...70,314,461-462 
 ...ry/qwen-logger |   74.23 |    80.53 |      70 |   74.23 |                   
  event-types.ts   |       0 |        0 |       0 |       0 |                   
  qwen-logger.ts   |   74.23 |    80.35 |   69.49 |   74.23 | ...1122,1160-1161 
 src/test-utils    |   96.02 |    98.41 |   82.92 |   96.02 |                   
  config.ts        |     100 |      100 |     100 |     100 |                   
  ...st-helpers.ts |   94.11 |       90 |     100 |   94.11 | 69-70             
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...mised-lock.ts |     100 |      100 |     100 |     100 |                   
  mock-tool.ts     |   94.85 |      100 |   78.78 |   94.85 | ...53,227-228,241 
  ...aceContext.ts |     100 |      100 |     100 |     100 |                   
 src/tools         |    86.1 |    84.89 |   88.42 |    86.1 |                   
  ...erQuestion.ts |   89.71 |    80.76 |   91.66 |   89.71 | ...66-367,374-375 
  ...-registrar.ts |    77.7 |    66.66 |   66.66 |    77.7 | ...72-277,292-294 
  ...ub-session.ts |   89.67 |     91.3 |   81.81 |   89.67 | ...03-304,315-322 
  cron-create.ts   |   90.64 |    92.85 |   72.72 |   90.64 | ...,73-74,223-231 
  cron-delete.ts   |   97.56 |      100 |   83.33 |   97.56 | 31-32             
  cron-list.ts     |   98.23 |    95.34 |    87.5 |   98.23 | 57-58             
  diffOptions.ts   |     100 |      100 |     100 |     100 |                   
  display-image.ts |   87.42 |    84.84 |   88.88 |   87.42 | ...29-134,194-195 
  edit.ts          |    82.7 |    86.77 |   81.25 |    82.7 | ...43-744,863-913 
  ...r-worktree.ts |   83.14 |    67.56 |    87.5 |   83.14 | ...84-187,278-279 
  enterPlanMode.ts |      85 |     82.6 |    87.5 |      85 | ...28-133,161-175 
  exit-worktree.ts |   83.29 |    83.65 |   94.44 |   83.29 | ...14-515,537-538 
  exitPlanMode.ts  |      95 |    85.29 |     100 |      95 | ...21-325,344,378 
  ...permission.ts |     100 |      100 |     100 |     100 |                   
  glob.ts          |   96.33 |     88.5 |     100 |   96.33 | ...24-225,373,376 
  grep.ts          |   90.73 |    86.61 |   85.71 |   90.73 | ...76-677,727-728 
  ...adTracking.ts |     100 |      100 |     100 |     100 |                   
  image-gen.ts     |   91.66 |    77.41 |    90.9 |   91.66 | ...13-214,221-222 
  list-agents.ts   |   94.02 |    82.35 |   83.33 |   94.02 | 31-32,47-48       
  loop-wakeup.ts   |   99.27 |    92.85 |     100 |   99.27 | 45                
  ls.ts            |   96.74 |    90.27 |     100 |   96.74 | 176-181,212,216   
  lsp.ts           |   72.71 |     59.5 |   90.32 |   72.71 | ...1212,1214-1215 
  ...nt-manager.ts |   81.49 |     80.1 |   85.71 |   81.49 | ...3217,3219-3220 
  mcp-client.ts    |   79.87 |    85.58 |   89.47 |   79.87 | ...2259,2263-2266 
  ...ry-timeout.ts |     100 |      100 |     100 |     100 |                   
  mcp-errors.ts    |     100 |      100 |     100 |     100 |                   
  ...pool-entry.ts |   77.56 |    84.11 |   77.14 |   77.56 | ...1291,1299-1300 
  ...ool-events.ts |       8 |        0 |       0 |       8 | 132-158           
  mcp-pool-key.ts  |   97.46 |    93.93 |     100 |   97.46 | 175-176           
  ...ce-content.ts |   96.55 |    91.17 |     100 |   96.55 | 80-82             
  mcp-retry.ts     |   97.67 |    95.65 |     100 |   97.67 | 131-132           
  mcp-status.ts    |     100 |      100 |     100 |     100 |                   
  mcp-tool.ts      |   98.34 |    93.65 |     100 |   98.34 | ...-982,1037-1038 
  ...sport-pool.ts |   83.49 |    80.15 |   84.61 |   83.49 | ...1409,1416-1420 
  ...ace-budget.ts |   87.27 |     82.6 |     100 |   87.27 | ...00-305,340-345 
  memory-config.ts |     100 |      100 |     100 |     100 |                   
  ...iable-tool.ts |     100 |    84.61 |     100 |     100 | 101,108           
  monitor.ts       |   91.74 |    84.28 |   88.46 |   91.74 | ...93,606,804-809 
  notebook-edit.ts |   85.55 |    77.39 |   81.25 |   85.55 | ...86-902,948-949 
  ...escendants.ts |   36.17 |    64.51 |   55.55 |   36.17 | ...46-310,385-390 
  ...nforcement.ts |   81.45 |    89.74 |     100 |   81.45 | 147-158,207-220   
  read-file.ts     |   95.49 |    88.52 |   86.66 |   95.49 | ...49,464,536-537 
  ...p-resource.ts |   96.85 |      100 |   91.66 |   96.85 | 92-96             
  ...d-artifact.ts |   91.18 |    86.71 |    87.5 |   91.18 | ...26-427,441-453 
  ripGrep.ts       |    94.6 |    87.26 |   95.23 |    94.6 | ...33-734,740-741 
  ...-transport.ts |   71.42 |    55.55 |   71.42 |   71.42 | ...36-137,143-144 
  send-message.ts  |   81.13 |    89.74 |    62.5 |   81.13 | ...80-286,363-371 
  ...n-mcp-view.ts |   93.57 |     92.3 |      90 |   93.57 | 122-130           
  shell.ts         |   78.67 |    84.04 |   91.91 |   78.67 | ...5019,5082-5083 
  skill-utils.ts   |     100 |      100 |     100 |     100 |                   
  skill.ts         |   91.39 |    92.55 |      90 |   91.39 | ...84,488,534-556 
  ...eticOutput.ts |   95.12 |      100 |      80 |   95.12 | 87-88             
  task-create.ts   |    94.4 |    93.33 |   81.81 |    94.4 | 45-49,63-64,95    
  task-list.ts     |   73.38 |    77.77 |   83.33 |   73.38 | ...02,105,109-116 
  task-stop.ts     |   93.14 |    96.15 |   85.71 |   93.14 | 39-40,54-64       
  task-update.ts   |   82.89 |    83.92 |    92.3 |   82.89 | ...14-422,454-465 
  team-create.ts   |   97.22 |    85.71 |   83.33 |   97.22 | 48-49,129-130     
  team-delete.ts   |   86.74 |    83.33 |   83.33 |   86.74 | 37-38,42-48,72-73 
  ...n-approval.ts |   92.14 |    96.77 |   77.77 |   92.14 | 38-39,42-43,93-99 
  todoWrite.ts     |   95.13 |    87.85 |   93.33 |   95.13 | ...23-527,540-545 
  tool-error.ts    |     100 |      100 |     100 |     100 |                   
  tool-names.ts    |     100 |      100 |     100 |     100 |                   
  tool-registry.ts |   78.57 |    79.59 |    82.6 |   78.57 | ...89-990,998-999 
  tool-search.ts   |   96.19 |    89.72 |   93.33 |   96.19 | ...09,259-264,426 
  tools.ts         |   93.11 |    92.53 |   91.66 |   93.11 | ...69-570,586-592 
  ...reapproved.ts |   99.27 |    94.11 |     100 |   99.27 | 170               
  web-fetch.ts     |   96.05 |    90.54 |   96.77 |   96.05 | ...85-786,800-801 
  web-search.ts    |   90.53 |    83.57 |      80 |   90.53 | ...1007,1065-1068 
  write-file.ts    |    86.7 |    84.92 |   88.88 |    86.7 | ...24-827,864-899 
  zoom-image.ts    |   95.76 |    93.75 |      90 |   95.76 | 54-59,203-204     
 src/tools/agent   |   87.22 |    87.68 |   88.69 |   87.22 |                   
  agent.ts         |   85.84 |    86.59 |   86.31 |   85.84 | ...4315,4337-4347 
  fork-profile.ts  |   93.65 |       90 |     100 |   93.65 | ...33-134,171-174 
  fork-subagent.ts |   98.73 |       95 |     100 |   98.73 | 101-102,173       
 ...tools/artifact |   95.78 |    92.51 |   88.63 |   95.78 |                   
  artifact-tool.ts |   91.46 |    88.46 |   71.42 |   91.46 | ...13-314,322-325 
  ...-publisher.ts |     100 |    85.71 |     100 |     100 | 32                
  ...-publisher.ts |   96.74 |    97.72 |    87.5 |   96.74 | 29-30,156-157     
  html.ts          |     100 |    96.77 |     100 |     100 | 122               
  ...-publisher.ts |     100 |       80 |     100 |     100 | 30                
  oss-publisher.ts |    98.1 |    91.48 |     100 |    98.1 | 43-45             
  publisher.ts     |     100 |      100 |     100 |     100 |                   
 ...s/computer-use |   90.21 |    82.17 |   78.08 |   90.21 |                   
  bootstrap.ts     |   59.42 |    80.95 |   41.66 |   59.42 | ...35-339,341-345 
  client.ts        |   80.11 |       90 |   77.77 |   80.11 | ...97,242-243,274 
  constants.ts     |     100 |    94.73 |     100 |     100 | 129,256           
  downloader.ts    |   65.29 |    52.77 |   58.33 |   65.29 | ...99-300,316-355 
  index.ts         |     100 |      100 |     100 |     100 |                   
  install-state.ts |   94.44 |    72.72 |     100 |   94.44 | 44-45             
  ...n-detector.ts |     100 |     87.5 |     100 |     100 | 50                
  schemas.ts       |     100 |      100 |     100 |     100 |                   
  tool.ts          |    96.3 |    85.71 |     100 |    96.3 | 75-76,184,252-258 
 ...tools/workflow |   86.24 |    84.81 |      75 |   86.24 |                   
  workflow.ts      |   86.24 |    84.81 |      75 |   86.24 | ...61,506,508-509 
 src/utils         |   92.84 |    89.61 |   96.85 |   92.84 |                   
  LruCache.ts      |     100 |      100 |     100 |     100 |                   
  ...Controller.ts |     100 |      100 |     100 |     100 |                   
  ...ssageQueue.ts |     100 |      100 |     100 |     100 |                   
  ...cFileWrite.ts |   94.94 |    92.47 |     100 |   94.94 | ...43-544,651-655 
  bareMode.ts      |   81.81 |      100 |      50 |   81.81 | 18-19             
  ...ry-content.ts |   98.45 |    95.45 |     100 |   98.45 | 132-133,159-160   
  browser.ts       |   86.84 |    78.94 |     100 |   86.84 | 34,36-37,65-66    
  btwUtils.ts      |   13.95 |      100 |       0 |   13.95 | 17-31,34-55       
  bundlePaths.ts   |     100 |      100 |     100 |     100 |                   
  ...on-context.ts |     100 |      100 |     100 |     100 |                   
  ...ncyLimiter.ts |   94.64 |    95.23 |     100 |   94.64 | 64-66             
  ...igResolver.ts |     100 |      100 |     100 |     100 |                   
  ...engthError.ts |   91.06 |    89.47 |     100 |   91.06 | ...46-147,154-155 
  ...n-branches.ts |   95.81 |    93.95 |      95 |   95.81 | ...91-492,504-517 
  ...tion-chain.ts |     100 |      100 |     100 |     100 |                   
  cronDisplay.ts   |     100 |    97.61 |     100 |     100 | 46                
  cronParser.ts    |   95.34 |    93.33 |     100 |   95.34 | 41-42,47-48,70-71 
  debugLogger.ts   |   96.66 |    96.66 |   88.88 |   96.66 | 192-196           
  editHelper.ts    |   93.63 |     83.9 |     100 |   93.63 | ...27-428,462-463 
  editor.ts        |   97.65 |    95.45 |     100 |   97.65 | ...35-336,338-339 
  encoding.ts      |     100 |      100 |     100 |     100 |                   
  env.ts           |     100 |      100 |     100 |     100 |                   
  ...arResolver.ts |   94.28 |    88.88 |     100 |   94.28 | 28-29,125-126     
  ...entContext.ts |   96.63 |    90.13 |   96.66 |   96.63 | ...42,444-445,512 
  errorParsing.ts  |     100 |      100 |     100 |     100 |                   
  ...rReporting.ts |   95.65 |    93.33 |     100 |   95.65 | 37-38             
  errors.ts        |   82.62 |    94.32 |    61.9 |   82.62 | ...62-378,382-388 
  fetch.ts         |   90.68 |    82.51 |     100 |   90.68 | ...72,483-484,503 
  fileUtils.ts     |   94.87 |    92.95 |   96.15 |   94.87 | ...1907,1915-1916 
  forkedAgent.ts   |   92.45 |    82.35 |   93.75 |   92.45 | ...34,642,647-654 
  formatters.ts    |     100 |      100 |     100 |     100 |                   
  ...eUtilities.ts |    92.4 |    86.95 |     100 |    92.4 | ...52-158,168-169 
  ...rStructure.ts |   94.39 |    94.28 |     100 |   94.39 | ...29-132,343-348 
  getPty.ts        |   31.57 |       50 |     100 |   31.57 | 26-38             
  git-branches.ts  |    91.6 |    84.21 |    92.3 |    91.6 | ...90,405-410,570 
  gitDiff.ts       |   95.19 |    81.36 |     100 |   95.19 | ...1073,1419-1420 
  gitDirect.ts     |   98.84 |    94.28 |     100 |   98.84 | 234,318           
  ...noreParser.ts |   94.48 |    93.22 |     100 |   94.48 | ...23-124,158-159 
  gitUtils.ts      |   78.02 |    81.25 |   85.71 |   78.02 | ...22-123,147-198 
  github-prs.ts    |   95.74 |    82.27 |     100 |   95.74 | 216,314-322       
  iconvHelper.ts   |     100 |      100 |     100 |     100 |                   
  ...rePatterns.ts |     100 |      100 |     100 |     100 |                   
  image-view.ts    |   95.12 |    93.33 |     100 |   95.12 | ...68-172,240-244 
  ...ionManager.ts |     100 |     90.9 |     100 |     100 | 27                
  ...lPromptIds.ts |     100 |      100 |     100 |     100 |                   
  ...on-context.ts |     100 |      100 |     100 |     100 |                   
  jsonl-utils.ts   |   95.27 |     93.1 |     100 |   95.27 | ...16-317,359-362 
  ...-detection.ts |     100 |      100 |     100 |     100 |                   
  ...iconv-lite.ts |     100 |      100 |     100 |     100 |                   
  ...simple-git.ts |   96.77 |    91.66 |     100 |   96.77 | 38                
  ...m-headless.ts |      96 |    88.88 |     100 |      96 | 34                
  ...iagnostics.ts |    96.4 |     94.2 |     100 |    96.4 | ...66,293-294,376 
  ...yDiscovery.ts |    92.4 |    89.13 |     100 |    92.4 | ...28,331,522-525 
  ...tProcessor.ts |   94.01 |       90 |     100 |   94.01 | ...47-353,445-446 
  ...Inspectors.ts |     100 |      100 |     100 |     100 |                   
  modelId.ts       |   98.96 |    98.21 |     100 |   98.96 | 153               
  ...kerChecker.ts |    90.9 |    91.66 |     100 |    90.9 | 73-79             
  notebook.ts      |   94.57 |    89.91 |   95.83 |   94.57 | ...21,333,385-387 
  openaiLogger.ts  |   91.66 |    89.74 |     100 |   91.66 | ...26-228,251-256 
  osc8.ts          |   54.26 |    64.86 |   83.33 |   54.26 | ...72-195,197-257 
  partUtils.ts     |     100 |    98.64 |     100 |     100 | 211               
  pathReader.ts    |     100 |      100 |     100 |     100 |                   
  paths.ts         |   93.99 |    92.85 |     100 |   93.99 | ...88-489,491-493 
  pdf.ts           |   92.17 |    85.81 |     100 |   92.17 | ...64-565,606-611 
  projectPath.ts   |     100 |      100 |     100 |     100 |                   
  projectRoot.ts   |   71.73 |    78.57 |     100 |   71.73 | 54-66             
  ...ectSummary.ts |   89.62 |    72.41 |     100 |   89.62 | ...40-145,196-199 
  ...tIdContext.ts |     100 |      100 |     100 |     100 |                   
  proxyUtils.ts    |     100 |      100 |     100 |     100 |                   
  ...rDetection.ts |   71.15 |       86 |     100 |   71.15 | ...-90,96-101,147 
  ...noreParser.ts |   92.63 |    91.66 |     100 |   92.63 | ...77-178,197-198 
  rateLimit.ts     |   93.75 |    89.62 |     100 |   93.75 | ...13,218-219,262 
  ...text-range.ts |   96.98 |    87.15 |     100 |   96.98 | ...87-688,763-764 
  readManyFiles.ts |   95.75 |    80.86 |     100 |   95.75 | ...05,558,568-572 
  retry.ts         |   96.09 |    92.52 |     100 |   96.09 | ...67,558-559,577 
  retryContext.ts  |     100 |      100 |     100 |     100 |                   
  ...sification.ts |   97.63 |    97.02 |     100 |   97.63 | ...17,251-252,278 
  retryPolicy.ts   |   97.72 |    90.56 |     100 |   97.72 | 130-131           
  ripgrepUtils.ts  |   90.04 |    93.43 |   95.45 |   90.04 | ...55-565,598-599 
  ...sDiscovery.ts |   97.46 |    93.05 |     100 |   97.46 | ...04,182-183,202 
  ...iagnostics.ts |   83.08 |     67.5 |   92.59 |   83.08 | ...23,543-544,550 
  ...tchOptions.ts |   84.87 |    86.61 |   96.29 |   84.87 | ...71,696,725-734 
  ...odelPrefix.ts |     100 |      100 |     100 |     100 |                   
  runtimeStatus.ts |    97.5 |    89.74 |     100 |    97.5 | 162-163           
  safe-mode.ts     |     100 |      100 |     100 |     100 |                   
  safeJsonParse.ts |     100 |      100 |     100 |     100 |                   
  ...nStringify.ts |     100 |      100 |     100 |     100 |                   
  ...-child-env.ts |     100 |      100 |     100 |     100 |                   
  ...aConverter.ts |   98.03 |    97.75 |     100 |   98.03 | 100,102-103       
  ...aValidator.ts |   92.09 |    83.65 |   90.47 |   92.09 | ...60,882-883,896 
  ...r-launcher.ts |   96.35 |    93.97 |   85.71 |   96.35 | ...35-336,347-348 
  sedEditParser.ts |   91.78 |    92.18 |     100 |   91.78 | ...66-569,645-646 
  ...nIdContext.ts |     100 |      100 |     100 |     100 |                   
  ...orageUtils.ts |   95.98 |    83.96 |     100 |   95.98 | ...70,386,466,485 
  ...-pager-env.ts |     100 |      100 |     100 |     100 |                   
  ...fety-rules.ts |     100 |     89.7 |     100 |     100 | ...01,304,309-311 
  shell-utils.ts   |   86.07 |    88.33 |     100 |   86.07 | ...2269,2276-2280 
  ...lAstParser.ts |   98.16 |    91.91 |     100 |   98.16 | ...1244-1246,1256 
  ...ContextEnv.ts |     100 |       92 |     100 |     100 | 50-52             
  ...nlyChecker.ts |   96.33 |    96.57 |     100 |   96.33 | ...83-284,292-293 
  sideQuery.ts     |   86.82 |    86.66 |     100 |   86.82 | ...79-185,187-193 
  ...pEventSink.ts |     100 |       80 |     100 |     100 | 61                
  ...tGenerator.ts |     100 |      100 |     100 |     100 |                   
  ...ameContext.ts |     100 |      100 |     100 |     100 |                   
  symlink.ts       |   77.77 |       50 |     100 |   77.77 | 44,54-59          
  ...e-encoding.ts |   85.96 |    76.47 |     100 |   85.96 | 58-61,64-65,78-79 
  ...emEncoding.ts |   96.36 |    91.17 |     100 |   96.36 | 59-60,124-125     
  terminalSafe.ts  |     100 |      100 |     100 |     100 |                   
  ...Serializer.ts |   98.72 |       90 |     100 |   98.72 | 42-43,134,201-203 
  testUtils.ts     |   53.33 |      100 |   33.33 |   53.33 | ...53,59-64,70-72 
  ...-constants.ts |     100 |      100 |     100 |     100 |                   
  textUtils.ts     |      65 |      100 |      75 |      65 | 56-75             
  thoughtUtils.ts  |     100 |    95.65 |     100 |     100 | 99                
  ...-converter.ts |   95.23 |    85.71 |     100 |   95.23 | 36-37             
  ...name-utils.ts |     100 |      100 |     100 |     100 |                   
  ...-finalizer.ts |   97.66 |     90.9 |     100 |   97.66 | 165-166,168-172   
  tool-utils.ts    |    95.2 |    93.61 |     100 |    95.2 | ...58-159,162-163 
  ...ultCleanup.ts |   54.62 |       64 |      75 |   54.62 | ...03-105,108-134 
  ...Compaction.ts |   96.13 |    96.42 |     100 |   96.13 | ...34-339,341-346 
  ...pt-records.ts |   85.89 |    83.63 |     100 |   85.89 | ...91-395,425-440 
  truncation.ts    |   90.56 |    90.43 |     100 |   90.56 | ...35-443,480-486 
  windowsPath.ts   |   89.47 |    79.31 |     100 |   89.47 | ...57-58,62,90-91 
  ...aceContext.ts |   95.81 |    89.39 |     100 |   95.81 | ...74-275,299-301 
  xml.ts           |    97.8 |    87.69 |     100 |    97.8 | 98-99             
  yaml-parser.ts   |   83.87 |    77.27 |     100 |   83.87 | ...31-234,239-240 
 ...ils/filesearch |   83.94 |    80.72 |   94.73 |   83.94 |                   
  crawlCache.ts    |     100 |      100 |     100 |     100 |                   
  crawler.ts       |    82.9 |    76.81 |   95.08 |    82.9 | ...1563,1597-1598 
  fileSearch.ts    |   93.78 |    87.67 |     100 |   93.78 | ...71-272,274-275 
  fzfWorker.ts     |       0 |        0 |       0 |       0 | 1-109             
  ...rkerHandle.ts |   84.05 |    75.43 |   89.47 |   84.05 | ...30-334,340-341 
  ignore.ts        |     100 |    97.36 |     100 |     100 | 187               
  result-cache.ts  |     100 |    93.75 |     100 |     100 | 49                
 ...uest-tokenizer |   69.76 |    75.47 |   85.29 |   69.76 |                   
  ...eTokenizer.ts |   65.72 |    74.02 |    92.3 |   65.72 | ...65-466,479-533 
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...tTokenizer.ts |   68.39 |    69.49 |    90.9 |   68.39 | ...24-325,327-328 
  ...ageFormats.ts |   76.92 |      100 |   33.33 |   76.92 | 46-49,56-57       
  textTokenizer.ts |     100 |      100 |     100 |     100 |                   
  types.ts         |       0 |        0 |       0 |       0 | 1                 
-------------------|---------|----------|---------|---------|-------------------

For detailed HTML reports, please see the 'coverage-reports-22.x-ubuntu-latest' artifact from the main CI run.

@qwen-code-ci-bot

Copy link
Copy Markdown
Collaborator

Confidence: 3/5 — clean review across every stage, but the Stage 0 core-path size escalation needs a maintainer's sign-off, and CI had not landed green at review time.

This is a genuinely good PR, and I want to be clear that the 3/5 is policy, not doubt. Stepping back:

  • The problem is real and acknowledged — a default-config regression that the project already spent two PRs (fix(cli): add ui.mouseTracking setting to restore right-click and URL clicks #8198, feat(cli): add TUI image display tool #8217) mitigating, and this finishes that work without the escape hatch's costs.
  • The implementation matches my independent proposal for this problem almost exactly, and beats it where it counts: the selection is paused rather than cleared, the selected text is snapshotted at menu-open so streaming can't stale it, tracking only upgrades while the menu is open, and the geometry helpers are shared so the overlay and the hit-tester can't disagree.
  • The two prior failure modes (command injection, coordinate drift) are eliminated by construction — the code reuses the battle-tested secure launcher and the selection stack's own coordinate path. I looked for a hole in the URL path from frame cell to launcher and didn't find one.
  • Every edit earns its place; the test suite is substantive (edge-case terminators, drag rejection, keyboard nav), not smoke.
  • The author has a strong track record of merged VP/terminal fixes; this reads like the same domain expertise.

What keeps this from an approval: the gate flags any non-maintainer PR touching a core path with 500+ production lines for maintainer awareness — here the core touch is only a 4-line settings-description change, but the rule is mechanical, so the call belongs to a human. Separately, the unit suite was still running at review time, and the interactive gesture matrix rests on the author's macOS E2E (their claim, not re-run here).

⏸️ Deferring to @wenshao — the review itself found no blockers; this needs your sign-off on the Stage 0 escalation. If you want live-behavior evidence beyond the author's report, @qwen-code /tmux would exercise the gesture matrix in an isolated job.

中文说明

置信度:3/5 —— 各阶段审查都很干净,但 Stage 0 的核心路径规模升级需要维护者拍板,且审查时 CI 尚未全绿。

这是一个质量很高的 PR,3/5 是规则使然,并非存疑。整体来看:

  • 问题真实且已被项目承认——默认配置下的回归,项目已用两个 PR(fix(cli): add ui.mouseTracking setting to restore right-click and URL clicks #8198feat(cli): add TUI image display tool #8217)缓解,本 PR 在不付出逃生开关代价的前提下补全了这项工作。
  • 实现与我独立给出的方案几乎一致,且在关键处更好:选择只暂停不清除、选中文本在菜单打开时快照(流式输出不会让复制内容过期)、仅在菜单打开期间升级鼠标跟踪等级、几何辅助函数共享使浮层与命中测试不会不一致。
  • 此前两次失败模式(命令注入、坐标漂移)在构造上被消除——复用经过考验的安全启动器与选择栈自身的坐标路径。我从帧单元格到启动器完整检查了 URL 路径,未找到漏洞。
  • 每处改动都必要;测试套件有实质内容(边界终止符、拖拽拒绝、键盘导航),不是走过场。
  • 作者在 VP/终端修复上有大量已合并记录,本 PR 体现了同样的领域功底。

不予批准的原因:gate 规则要求任何触及核心路径且生产代码 500+ 行的非维护者 PR 提请维护者知悉——本次核心触面仅 4 行设置描述,但规则是机械的,决定权应交还人类。另外,审查时单元测试仍在运行,交互手势矩阵目前依赖作者的 macOS E2E(作者自述,未在此独立复跑)。

⏸️ 转交 @wenshao —— 审查本身未发现阻塞问题;需要你对 Stage 0 升级拍板。如需独立的行为证据,可触发 @qwen-code /tmux 在隔离环境中验证手势矩阵。

Qwen Code · qwen3.8-max

Reviewed at 5a189e7d35fcbd9caf082c66e11895b9d3b30c69 · re-run with @qwen-code /triage

@chiga0

chiga0 commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator Author

@qwen-code /takeover

@chiga0

chiga0 commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator Author

Visual evidence (before / menu open / after)

Screenshots rendered from the real ANSI output via the project's terminal-capture pipeline (node-pty → xterm.js → Playwright), scenario committed as integration-tests/terminal-capture/scenarios/vp-context-menu.ts. Run against the bundled CLI + mock model replying with a markdown link; mouse injected as raw SGR bytes with the app in VP mode + mouse tracking on.

1. Rendered link (before): the assistant line shows Example Domain as an OSC 8 hyperlink (link-colored/underlined).

rendered link

2. Right-click → context menu: right-press/release on the link label raises the in-app menu at the click cell — Open Link (highlighted) and Copy Link Address — painted over the content underneath.

menu open

3. Escape → menu dismissed: the overlay is gone, the full link renders, and the composer is back to normal.

menu closed

@qwen-code-dev-bot qwen-code-dev-bot added the autofix/takeover Summon the autofix loop to manage this PR (remove to release; needs triage+) label Aug 3, 2026
@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤝 Takeover engaged: the autofix loop now manages this PR — it will address new review feedback and resolve base conflicts until the label is removed or the round cap is reached. Remove the autofix/takeover label (or comment @qwen-code /takeover stop) to release.

中文说明

🤝 已接管:autofix 循环现在管理此 PR —— 将持续处理新的评审反馈与 base 冲突,直到移除标签或达到轮次上限。移除 autofix/takeover 标签(或评论 @qwen-code /takeover stop)即可释放。

@qwen-code-dev-bot

qwen-code-dev-bot commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator

⚠️ AutoFix round 5 ended without publishing a reportview run.

中文说明

⚠️ AutoFix 第 5 轮结束但未发布报告 —— 查看运行

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤖 Reviewed the latest feedback — no changes needed. Why, point by point: · 已审阅最新反馈——无需改动。逐点说明原因如下:

Autofix review round: no action required

This round's feedback for PR #8439 contains no actionable items:

  • Reviews: none received.
  • Inline comments: none received.
  • Failed checks: none; no still-red checks persist either.
  • Issue-level comments: two comments from the PR author — the E2E test report (tmux + mock-server verification, 14/14 checks passed) and the visual evidence summary (before / menu-open / after screenshots). Both are informational reports of verification already performed on this branch; they raise no findings and request no changes.

No code changes were made this round, and nothing was committed.

中文说明

Autofix 审查轮次:无需处理

本轮针对 PR #8439 的反馈中没有任何可操作的项目:

  • 审查(Reviews): 未收到。
  • 行内评论(Inline comments): 未收到。
  • 失败的检查(Failed checks): 无;也没有持续未通过的检查。
  • Issue 级评论: PR 作者的两条评论 —— E2E 测试报告(tmux + mock 服务器验证,14/14 项检查全部通过)和视觉证据摘要(修改前 / 菜单打开 / 修改后的截图)。这两条评论均为对本分支已完成验证工作的信息性报告,未提出任何问题,也未要求任何改动。

本轮未修改任何代码,也未提交任何内容。

Base-conflict check · 基分支冲突检查: no conflict with main. · 与 main 无冲突。


🧠 Handled by Qwen Code · model/模型 qwen3.8-max

@qwen-code-ci-bot

Copy link
Copy Markdown
Collaborator

Qwen Code review timed out. Qwen review timed out after 14400 seconds (of the 240-minute budget). This run already used the maximum 240 minute timeout. See workflow logs.

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤖 Reviewed the latest feedback — no changes needed. Why, point by point: · 已审阅最新反馈——无需改动。逐点说明原因如下:

🤖 Reviewed the latest feedback — no changes needed this round.

What arrived since the last evaluation (2026-08-03T08:17:28Z):

  1. Review timeout notification (@qwen-code-ci-bot): the automated Qwen Code review used its entire 240-minute budget (14,400 s) and timed out without producing findings (workflow logs).
  2. Failed check review-pr — this is the timed-out review job itself, not a code check.

Why no code changes were made:

  • There are no review findings to address: zero inline comments, zero review bodies, and no new maintainer feedback in this round. The only new item is the timeout notification itself.
  • All code checks on the current head are green — Test (ubuntu-latest, Node 22.x), Desktop Shell (ubuntu-22.04), web-shell E2E Smoke (ubuntu-latest, Node 22.x), and coverage all succeeded (11 succeeded, 12 skipped, no other failures).
  • A review-job timeout is a workflow-side event: the review process ran out of budget before emitting a verdict. It cannot be remedied by a code change on this branch; the workflow itself retries the review. Nothing in the timeout report attributes the timeout to this PR's content.

No commits were made; the branch remains at 3aab5f3c2. The next automated review round will re-evaluate the PR as-is.

中文说明

🤖 已审阅最新反馈 —— 本轮无需修改。

自上次评估(2026-08-03T08:17:28Z)以来收到的反馈:

  1. 评审超时通知(@qwen-code-ci-bot):自动化的 Qwen Code 评审用尽了 240 分钟的全部预算(14,400 秒),未产出任何评审结论即超时(工作流日志)。
  2. 失败的检查 review-pr —— 即上述超时的评审任务本身,并非代码检查。

为何未做任何代码修改:

  • 没有任何需要处理的评审发现:本轮反馈中内联评论为零、评审意见为零,也没有维护者的新反馈。唯一的新条目就是超时通知本身。
  • 当前分支头上的所有代码检查均为绿色 —— Test (ubuntu-latest, Node 22.x)Desktop Shell (ubuntu-22.04)web-shell E2E Smoke (ubuntu-latest, Node 22.x) 和覆盖率均已通过(11 项通过、12 项跳过,无其他失败)。
  • 评审任务超时属于工作流侧事件:评审进程在给出结论前耗尽了预算。这不是本分支上的代码修改能解决的问题,工作流会自行重试评审。超时报告中也没有任何内容将超时归因于本 PR 的内容。

本轮未提交任何 commit;分支保持在 3aab5f3c2。下一轮自动评审将按现状重新评估该 PR。

Base-conflict check · 基分支冲突检查: no conflict with main. · 与 main 无冲突。


🧠 Handled by Qwen Code · model/模型 qwen3.8-max

@yiliang114

Copy link
Copy Markdown
Collaborator

@qwen-code /review --timeout=240

@github-actions

github-actions Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor
_Qwen Code review request accepted. Review is queued in [workflow run](https://github.com/QwenLM/qwen-code/actions/runs/30835644523)._

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🔀 Base updated: red check(s) [review-pr] pass on current main — merged current main via update-branch; CI will re-run.

中文说明

🔀 已更新 base:红色检查 [review-pr] 在当前 main 上通过 —— 已通过 update-branch 合入当前 main,CI 将重新运行。

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤖 Addressed the latest review feedback (round 1/100). What changed, and what I pushed back on: · 已处理最新评审反馈(第 1/100 轮)。改动内容与我反驳保留之处如下:

Autofix review round: failed check addressed

Feedback triage

  • Reviews: none received.
  • Inline comments: none received.
  • Issue-level comments: none received.
  • Failed checks: Test (ubuntu-latest Node 22.x) — addressed, see below.

What failed and why

The failing step is Run tests and generate reports (verified via the GitHub
job API for job 91801012339: steps 1–31 all succeeded, step 32 failed). That
step runs npm run test:ci, which is all workspace unit tests plus
npm run test:scripts
.

Root cause (reproduced locally, evidence-backed):

  1. With the CI-equivalent environment (CI=true, clean HOME, SANDBOX and
    QWEN_*/model env vars unset, API keys cleared), every workspace unit test
    passes. The two AuthDialog key-input failures seen in a local run without
    CI=true are skipped in CI by design (itWhenTuiInputReliable skips when
    process.env.CI === 'true'), so they are not the CI failure.
  2. npm run test:scripts fails deterministically on 3 assertions in
    scripts/tests/qwen-resolve-workflow.test.js. The main-branch commit
    ci: externalize review timeout to repository variables (#8460) rewrote
    .github/workflows/qwen-code-pr-review.yml to read
    QWEN_REVIEW_JOB_TIMEOUT_MINUTES / QWEN_REVIEW_MAX_TIMEOUT_MINUTES
    repository variables instead of the hardcoded 300 / 240 values, but did
    not update the test that pins that workflow text. The failures:
    • timeout-minutes: 300 no longer exists (now
      timeout-minutes: '${{ fromJSON(vars.QWEN_REVIEW_JOB_TIMEOUT_MINUTES) }}');
    • timeout_minutes must not exceed 240 minutes no longer exists (now
      ... ${MAX_TIMEOUT_MINUTES} minutes with
      MAX_TIMEOUT_MINUTES="${{ vars.QWEN_REVIEW_MAX_TIMEOUT_MINUTES }}");
    • EFFECTIVE_TIMEOUT_MINUTES=240 no longer exists (now
      EFFECTIVE_TIMEOUT_MINUTES="${{ vars.QWEN_REVIEW_MAX_TIMEOUT_MINUTES }}");
    • the fallback-comment strings @qwen-code /review --timeout=240 and
      This run already used the maximum 240 minute timeout. are now
      ${MAX_TIMEOUT_MINUTES} interpolations.
  3. This branch merged current main (8e9c98f5e) right before the failing CI
    run, inheriting the broken test — so the PR's Test check failed on a
    main-branch defect, not on this PR's own code.

Change made

scripts/tests/qwen-resolve-workflow.test.js only (test-only fix, 1 file,
+22/−7): updated the five stale assertions to pin the externalized forms
exactly as they appear in the workflow, added assertions for the two new
vars. reads so the externalization itself stays covered, and refreshed one
stale comment. No assertion was removed or weakened; the not.toContain
guards are unchanged.

Commit: f6f87a67b fix(ci): align review timeout workflow tests with externalized vars (#8439)

Conflict notes

--conflict false — no base merge performed; not needed.

Verification

Commands actually run this round (results):

  • npm run build — passed (exit 0)
  • npm run typecheck — passed (exit 0)
  • npm run lint — passed (exit 0)
  • npx vitest run --config ./scripts/tests/vitest.config.ts scripts/tests/qwen-resolve-workflow.test.js — 29 passed (29)
  • npm run test:scripts (full) — 44/45 files passed; the only failures are 5 install-script.test.js cases that fail with spawnSync zip ENOENT because this sandbox container has no zip binary (CI runners ship zip; these same tests passed in CI before ci: externalize PR review timeout settings to repository variables #8460, and they are unrelated to this change)
  • npm run test:ci full run with the CI-equivalent environment (CI=true, clean HOME, no SANDBOX/QWEN_*/API-key env leakage) — all workspace suites passed (cli 750 files, core 567, web-shell, sdk, external-context, …); test:scripts shows only the 5 zip-binary environment failures above
  • Additional checks reproduced from the failing CI job and passed locally: npm run check:lockfile, npm run check:desktop-isolation, npm run audit:runtime:critical, npm run check-i18n, npm run generate:settings-schema + schema-freshness check (clean), npm run generate:notices --workspace=qwen-code-vscode-ide-companion + freshness check (clean)

Not run: integration tests — the change is a workflow-text test under
scripts/tests/; no CLI/runtime behavior was touched, so nothing is only
exercisable through the bundled CLI.

中文说明

Autofix 评审轮次:已处理失败的检查

反馈分类

  • 评审(Reviews): 无。
  • 行内评论: 无。
  • Issue 级评论: 无。
  • 失败检查: Test (ubuntu-latest Node 22.x) —— 已处理,见下文。

失败原因

失败的步骤是 Run tests and generate reports(已通过 GitHub Job API 核实:
job 91801012339 的第 1–31 步全部成功,第 32 步失败)。该步骤执行
npm run test:ci,即所有 workspace 单元测试 加上 npm run test:scripts

根因(已在本地复现,有证据支撑):

  1. 在与 CI 等效的环境下(CI=true、干净的 HOME、未设置 SANDBOX
    QWEN_*/模型相关环境变量、清空 API key),所有 workspace 的单元测试全部
    通过。本地不带 CI=true 运行时出现的两个 AuthDialog 按键输入失败,在 CI
    中按设计被跳过(process.env.CI === 'true'itWhenTuiInputReliable
    会 skip),因此不是 CI 失败的原因。
  2. npm run test:scriptsscripts/tests/qwen-resolve-workflow.test.js
    中有 3 处断言确定性失败。main 分支的提交
    ci: externalize review timeout to repository variables (#8460)
    .github/workflows/qwen-code-pr-review.yml 改为从仓库变量
    QWEN_REVIEW_JOB_TIMEOUT_MINUTES / QWEN_REVIEW_MAX_TIMEOUT_MINUTES
    读取超时,替代了硬编码的 300 / 240,但没有同步更新锁定该 workflow
    文本的测试。失败点:
    • timeout-minutes: 300 已不存在(现为
      timeout-minutes: '${{ fromJSON(vars.QWEN_REVIEW_JOB_TIMEOUT_MINUTES) }}');
    • timeout_minutes must not exceed 240 minutes 已不存在(现为
      ... ${MAX_TIMEOUT_MINUTES} minutes,且
      MAX_TIMEOUT_MINUTES="${{ vars.QWEN_REVIEW_MAX_TIMEOUT_MINUTES }}");
    • EFFECTIVE_TIMEOUT_MINUTES=240 已不存在(现为
      EFFECTIVE_TIMEOUT_MINUTES="${{ vars.QWEN_REVIEW_MAX_TIMEOUT_MINUTES }}");
    • 兜底评论中的 @qwen-code /review --timeout=240
      This run already used the maximum 240 minute timeout. 现在都是
      ${MAX_TIMEOUT_MINUTES} 插值形式。
  3. 本分支在失败的 CI 运行之前刚合并了最新 main(8e9c98f5e),从而继承了这个
    坏掉的测试 —— 所以本 PR 的 Test 检查实际上是被 main 分支上的缺陷弄红的,
    而非本 PR 自身代码的问题。

所做更改

仅修改 scripts/tests/qwen-resolve-workflow.test.js(纯测试修复,1 个文件,
+22/−7):把 5 处过期断言更新为与 workflow 中实际文本完全一致的外部化形式,
新增两条断言锁定两处新的 vars. 读取(保证外部化本身仍受覆盖),并更新一条
过期注释。没有删除或弱化任何断言;not.toContain 守卫保持不变。

提交:f6f87a67b fix(ci): align review timeout workflow tests with externalized vars (#8439)

冲突说明

--conflict false —— 未执行 base 合并,无需合并。

验证

本轮实际执行的命令(结果):

  • npm run build —— 通过(exit 0)
  • npm run typecheck —— 通过(exit 0)
  • npm run lint —— 通过(exit 0)
  • npx vitest run --config ./scripts/tests/vitest.config.ts scripts/tests/qwen-resolve-workflow.test.js —— 29 通过(29)
  • npm run test:scripts(全量)—— 44/45 个文件通过;仅有的失败是
    install-script.test.js 的 5 个用例,因本沙箱容器缺少 zip 二进制而报
    spawnSync zip ENOENT(CI runner 自带 zip;这些用例在 ci: externalize PR review timeout settings to repository variables #8460 之前的 CI
    中一直通过,且与本次更改无关)
  • 以 CI 等效环境完整运行 npm run test:ciCI=true、干净 HOME、无
    SANDBOX/QWEN_*/API key 环境变量泄漏)—— 所有 workspace 套件通过
    (cli 750 个文件、core 567、web-shell、sdk、external-context 等);
    test:scripts 仅剩上述 5 个缺 zip 二进制的失败
  • 另外复现了失败 CI job 中的其余检查并通过:npm run check:lockfile
    npm run check:desktop-isolationnpm run audit:runtime:critical
    npm run check-i18nnpm run generate:settings-schema + schema
    新鲜度检查(干净)、npm run generate:notices --workspace=qwen-code-vscode-ide-companion + 新鲜度检查(干净)

未运行集成测试:本次更改是 scripts/tests/ 下的 workflow 文本测试,没有触及
任何 CLI/运行时行为,不存在只能通过打包 CLI 验证的内容。

Base-conflict check · 基分支冲突检查: no conflict with main. · 与 main 无冲突。

Re-review when you have a moment. After round 100 this bot stops and leaves the PR for a human. · 有空请复审;第 100 轮后本 bot 停止并将 PR 交给人工。


🧠 Handled by Qwen Code · model/模型 qwen3.8-max

@wenshao

wenshao commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator

@qwen-code /resolve

…parity

# Conflicts:
#	scripts/tests/qwen-resolve-workflow.test.js
@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤖 Addressed the latest review feedback (round 2/100). What changed, and what I pushed back on: · 已处理最新评审反馈(第 2/100 轮)。改动内容与我反驳保留之处如下:

Autofix address-review round — PR #8439

Feedback triage

The prepared feedback file contained no actionable items this round: no reviews, no inline comments, no issue-level comments, no failed checks, and no still-red checks. Nothing to address, decline, or escalate.

Conflict resolution (--conflict true)

Merged origin/main into feat/vp-native-mouse-parity. One conflict occurred in scripts/tests/qwen-resolve-workflow.test.js.

  • Both sides of the conflict: the branch's commit f6f87a67b (this PR's CI fix for the externalized review-timeout variables) and main's newly merged commit d6f55a1c9 (fix(ci): align review workflow tests with externalized timeout variables #8486) made the same fix on the same base — aligning the workflow-text assertions with the QWEN_REVIEW_JOB_TIMEOUT_MINUTES / QWEN_REVIEW_MAX_TIMEOUT_MINUTES repository variables.
  • Resolution: adopted main's version of the file verbatim. It is a strict superset of the branch's assertions (it additionally pins the if [ "$TIMEOUT_MINUTES" -gt "$MAX_TIMEOUT_MINUTES" ] guard, the full fail "..." line, and the fallback-step if [ "$TIMEOUT_MINUTES" -lt "$MAX_TIMEOUT_MINUTES" ] guard) and is the version validated upstream against the current workflow file. Neither side touched the workflow YAML itself, so the merged tree's tests must match main's workflow text — taking main's test file is the understanding-both-sides resolution, not a blind side pick. After resolution the file is byte-identical to origin/main (git diff origin/main -- <file> is empty).
  • Merge committed as eda904cf8 (additive merge commit, no history rewrite).

No other files conflicted and no other files were modified this round.

Verification

Commands actually run this round and their results:

  • npx vitest run --config ./scripts/tests/vitest.config.ts scripts/tests/qwen-resolve-workflow.test.js — passed (1 file, 29/29 tests)
  • npm run build — passed (exit 0)
  • npm run typecheck — passed (exit 0)
  • npm run lint — passed (exit 0)
  • npm run generate:settings-schema — passed (exit 0); produced no diff, confirming the committed settings.schema.json is up to date (the PR touches settingsSchema.ts; the merge did not change any settings source)
  • Focused Vitest for touched packages: the only file changed this round is scripts/tests/qwen-resolve-workflow.test.js (covered above); the merge brought no packages/ changes from main (d6f55a1c9 touches only that one file), so no package-level Vitest run was applicable
  • Integration tests: not applicable (no bundled-CLI/integration-harness behavior touched by this round's change)
  • Re-read the staged merge diff as a skeptical reviewer: the delta is exactly the upstream superset assertions and comment rewrap; no new defects, no bloat
中文说明

Autofix address-review 轮次 — PR #8439

反馈分类

本轮准备的反馈文件中没有可处理的项目:没有评审意见、没有行内评论、没有 issue 级评论、没有失败的检查,也没有持续失败的检查。没有需要处理、拒绝或升级的内容。

冲突解决(--conflict true

已将 origin/main 合并到 feat/vp-native-mouse-parity。唯一的冲突发生在 scripts/tests/qwen-resolve-workflow.test.js

  • 冲突双方: 分支上的提交 f6f87a67b(本 PR 针对外置评审超时变量的 CI 修复)与 main 上新合入的提交 d6f55a1c9fix(ci): align review workflow tests with externalized timeout variables #8486)在相同基础上做了同一个修复——把工作流文本断言与 QWEN_REVIEW_JOB_TIMEOUT_MINUTES / QWEN_REVIEW_MAX_TIMEOUT_MINUTES 仓库变量对齐。
  • 解决方式: 逐字采用 main 版本的文件。它是分支断言的严格超集(额外固定了 if [ "$TIMEOUT_MINUTES" -gt "$MAX_TIMEOUT_MINUTES" ] 守卫、完整的 fail "..." 行,以及 fallback 步骤中的 if [ "$TIMEOUT_MINUTES" -lt "$MAX_TIMEOUT_MINUTES" ] 守卫),并且是上游针对当前工作流文件验证过的版本。双方都没有修改工作流 YAML 本身,因此合并后树中的测试必须与 main 的工作流文本一致——采用 main 的测试文件是理解双方后的解决方式,而不是盲目选择某一边。解决后该文件与 origin/main 逐字节一致(git diff origin/main -- <file> 为空)。
  • 合并以 eda904cf8 提交(附加式合并提交,未重写历史)。

本轮没有其他文件冲突,也没有修改其他文件。

验证

本轮实际执行的命令及结果:

  • npx vitest run --config ./scripts/tests/vitest.config.ts scripts/tests/qwen-resolve-workflow.test.js — 通过(1 个文件,29/29 个测试)
  • npm run build — 通过(退出码 0)
  • npm run typecheck — 通过(退出码 0)
  • npm run lint — 通过(退出码 0)
  • npm run generate:settings-schema — 通过(退出码 0);未产生任何 diff,确认已提交的 settings.schema.json 是最新的(本 PR 修改过 settingsSchema.ts;本次合并未改动任何 settings 源文件)
  • 涉及包的聚焦 Vitest:本轮唯一改动的文件是 scripts/tests/qwen-resolve-workflow.test.js(已在上面覆盖);合并未从 main 带来任何 packages/ 改动(d6f55a1c9 只改动了这一个文件),因此不适用包级 Vitest 运行
  • 集成测试:不适用(本轮改动未触及打包 CLI / 集成测试框架所验证的行为)
  • 以怀疑性审阅者身份重新通读了暂存的合并 diff:改动恰好是上游的超集断言和注释换行;无新缺陷、无冗余代码

Base-conflict check · 基分支冲突检查: conflicted with main — resolved in this push. · 与 main 有冲突——已在本次推送中解决。

Re-review when you have a moment. After round 100 this bot stops and leaves the PR for a human. · 有空请复审;第 100 轮后本 bot 停止并将 PR 交给人工。


🧠 Handled by Qwen Code · model/模型 qwen3.8-max

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

Qwen Code did not run conflict resolution for this request.

PR #8439 does not currently have merge conflicts with main.

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤖 Reviewed the latest feedback — no changes needed. Why, point by point: · 已审阅最新反馈——无需改动。逐点说明原因如下:

Autofix address-review round — PR #8439

No code changes this round. The only feedback item is the failed review-pr check — the automated Qwen Code review job itself, not a code/build/test gate on this PR. The evidence shows it failing on the workflow/runner side, which no change on this branch can address.

Feedback triage

  • Reviews: none. Inline comments: none. Issue-level comments: none from trusted maintainers or the automated reviewer since the last evaluation.
  • Failed checks: review-pr ("🧐 Qwen Pull Request Review", run 30866607874, job 91871746845) — FAILURE.

Evidence

  1. All code checks are green on the current head (eda904cf8): Test (ubuntu-latest, Node 22.x), Desktop Shell (ubuntu-22.04), web-shell E2E Smoke (ubuntu-latest, Node 22.x), and coverage all succeeded; the remaining checks are skipped by CI design.
  2. The failing job is the reviewer, not the code. review-pr runs the Qwen CLI agent (/review <PR URL> --comment) against this PR; it does not compile or test this branch.
  3. Third consecutive failure, on the maximum budget. This PR changes 2075 lines (+2006/−69), so the workflow's size-aware logic already grants it the maximum review budget (QWEN_REVIEW_MAX_TIMEOUT_MINUTES, 240 minutes):
    • Run 30796805219 explicitly reported: "Qwen Code review timed out. Qwen review timed out after 14400 seconds (of the 240-minute budget). This run already used the maximum 240 minute timeout."
    • The maintainer retry @qwen-code /review --timeout=240 (run 30835644523) also never completed or posted a result.
    • Run 30866607874 ran ~4h37m (02:03:34 → 06:40:28 UTC) and failed. Notably it posted no fallback comment even though the branch head did not move during the run (last push eda904cf8, 00:31 UTC), so the head-moved skip guard does not apply — the job died before or without reaching its comment-posting path, consistent with an early-step or job-level stop on the self-hosted runner. Pinning the exact step needs the runner logs, which are not accessible from this checkout.
  4. Nothing attributes the failure to this PR's content. No failure output references the diff, and the workflow itself documents that large-PR reviews can legitimately exceed the budget (its size-aware timeout comment cites fix(qqbot): restore per-group session isolation under thread scope #8241).

Why no code change

The review agent's time budget and self-hosted runner health are workflow-side configuration/infrastructure. No edit on this branch can influence either. The earlier automatic base-update also cannot help here: review-pr is not a code check, so "it passes on main" does not mean this branch is stale.

Maintainer decision needed

The automated review has now failed three times on this PR, and how to proceed is a maintainer call. Options, with my recommendation first:

  1. Inspect the logs of run 30866607874, job 91871746845 to confirm whether this was another budget timeout or a runner/infra failure — the missing fallback comment makes this worth verifying before anything else.
  2. If it is a timeout: raise the budget via the QWEN_REVIEW_MAX_TIMEOUT_MINUTES / QWEN_REVIEW_JOB_TIMEOUT_MINUTES repository variables — the durable fix if large PRs keep exceeding 240 minutes. A cheap immediate attempt is another @qwen-code /review --timeout=240 retry under lower load, though the previous same-budget attempt did not finish.
  3. Otherwise, override/merge (all code checks are green) or split the PR so each part fits the review budget.

No changes were made and nothing was committed this round; the branch remains at eda904cf8.

中文说明

Autofix address-review 轮次 — PR #8439

本轮未做任何代码改动。 本轮唯一的反馈项是失败的 review-pr 检查——即自动化 Qwen Code 评审任务本身,而不是针对本 PR 的代码/构建/测试门禁。证据表明它失败在工作流/运行器(runner)一侧,本分支上的任何改动都无法解决。

反馈分类

  • 评审(Reviews):无。行内评论:无。自上次评估以来,来自可信维护者或自动评审器的 issue 级评论:无。
  • 失败检查:review-pr("🧐 Qwen Pull Request Review",run 30866607874,job 91871746845)— FAILURE。

证据

  1. 当前 head(eda904cf8)上所有代码检查均为绿色Test (ubuntu-latest, Node 22.x)Desktop Shell (ubuntu-22.04)web-shell E2E Smoke (ubuntu-latest, Node 22.x) 和覆盖率均已通过;其余检查是 CI 设计上跳过(SKIPPED)。
  2. 失败的是评审任务本身,而不是代码。 review-pr 运行的是 Qwen CLI 智能体对本 PR 执行 /review <PR URL> --comment;它并不编译或测试本分支。
  3. 连续第三次失败,且都在最大预算上。 本 PR 改动 2075 行(+2006/−69),工作流的按规模分级逻辑已经给了它最大评审预算(QWEN_REVIEW_MAX_TIMEOUT_MINUTES,240 分钟):
    • Run 30796805219 明确报告:"Qwen Code review timed out. Qwen review timed out after 14400 seconds (of the 240-minute budget). This run already used the maximum 240 minute timeout."(评审在 14400 秒即用尽 240 分钟预算后超时,且该次运行已使用最大的 240 分钟超时。)
    • 维护者重试 @qwen-code /review --timeout=240(run 30835644523)同样未能完成,也没有发布任何结果。
    • Run 30866607874 运行约 4 小时 37 分(02:03:34 → 06:40:28 UTC)后失败。值得注意的是:尽管评审运行期间分支 head 没有变动(最后一次推送为 eda904cf8,00:31 UTC),它却没有发布任何兜底(fallback)评论,因此"head 已移动"的跳过守卫并不适用——任务是在到达发布评论的路径之前(或未经该路径)就终止了,这与自托管运行器上早期步骤失败或任务级终止相符。要确定具体是哪一步,需要运行器日志,而本检出环境中无法访问。
  4. 没有任何内容把失败归因于本 PR 的内容。 所有失败输出都未提及本 PR 的 diff;工作流自身也记录了大型 PR 的评审可能合理地超出预算(其按规模分级超时的注释中引用了 fix(qqbot): restore per-group session isolation under thread scope #8241)。

为何不做代码改动

评审智能体的时间预算和自托管运行器的健康状况属于工作流侧的配置/基础设施问题,本分支上的任何改动都无法影响二者。此前的自动 base 更新在这里同样无济于事:review-pr 不是代码检查,"它在 main 上通过"并不意味着本分支落后于 base。

需要维护者决策

自动化评审在本 PR 上已连续失败三次,接下来如何处理需要维护者决定。选项如下(按我的建议排序):

  1. 查看日志run 30866607874,job 91871746845,确认这次究竟是又一次预算超时,还是运行器/基础设施故障——由于兜底评论缺失,在做任何其他处理之前值得先核实这一点。
  2. 如果是超时:通过仓库变量 QWEN_REVIEW_MAX_TIMEOUT_MINUTES / QWEN_REVIEW_JOB_TIMEOUT_MINUTES 提高预算——如果大型 PR 持续超出 240 分钟,这是持久的修复方式。一个低成本的即时尝试是在负载较低时再执行一次 @qwen-code /review --timeout=240,不过上一次相同预算的重试并未完成。
  3. 否则,覆盖检查并合并(所有代码检查均为绿色),或拆分 PR,使每一部分都能装进评审预算。

本轮未做任何改动、未提交任何 commit;分支保持在 eda904cf8

Base-conflict check · 基分支冲突检查: no conflict with main. · 与 main 无冲突。


🧠 Handled by Qwen Code · model/模型 qwen3.8-max

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🔀 Base updated: red check(s) [review-pr] pass on current main — merged current main via update-branch; CI will re-run.

中文说明

🔀 已更新 base:红色检查 [review-pr] 在当前 main 上通过 —— 已通过 update-branch 合入当前 main,CI 将重新运行。

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤖 Reviewed the latest feedback — no changes needed. Why, point by point: · 已审阅最新反馈——无需改动。逐点说明原因如下:

Autofix address-review round — PR #8439

No code changes this round. The only feedback item is the failed Test (ubuntu-latest, Node 22.x) check (CI run 30912746158, failed 2026-08-04T13:28:45Z). A full local reproduction of that job's steps on the exact PR tree found no defect caused by this PR; the failure is consistent with a transient CI-runner/test flake, which this repository's automated flaky-rerun patrol is designed to re-run.

Feedback triage

  • Reviews: none. Inline comments: none. Issue-level comments: none from trusted maintainers or the automated reviewer since the last evaluation.
  • Failed checks: Test (ubuntu-latest, Node 22.x) — FAILURE. This is the only item to address.

Evidence

  1. The failing run is the first CI run after an automated update-branch merge of main (13:13:15Z). The pre-merge head (eda904cf8) had every code check green hours earlier, and the 10 commits that merge brought in touch none of the code paths exercised by this PR or by the checks below. CI logs are not retrievable from this runner (no GitHub credentials), so the job was reproduced step by step locally instead.
  2. Every deterministic step of the Test job passes on this tree (clean, CI-equivalent environment: CI=true, fresh HOME, API-key/auth/sandbox env vars unset):
    • npm run lint (ESLint, repo + integration-tests) — passed
    • Prettier check on all changed files — passed
    • npm run check:lockfile, npm run check:desktop-isolation, sensitive-keyword lint — passed
    • npm run check-i18n — passed
    • npm run generate:settings-schema + freshness diff — schema already up to date
    • VS Code companion generate:notices + freshness diff — notices already up to date
    • npm run check:serve-fast-path-bundle (clean build + bundle + closure check) — passed
    • npm run typecheck — passed
  3. The full unit-test leg passes. npm run test:ci ran to its test:scripts leg (the && chain proves every workspace suite exited 0): packages/cli 17166 tests / 0 failures, packages/core 19202 / 0, packages/web-shell 2776 / 0. The only local failures anywhere were artifacts of this analysis container, not the tree:
    • an initial dirty-env CLI run showed 32 failures, all reproduced away once the agent runner's leaked SANDBOX / QWEN_HOME / QWEN_CODE_CUSTOM_SANDBOX_IMAGE / OPENAI_* env vars were unset (CI clears these); the one remaining failure is skipped by design when CI=true;
    • 5 scripts/tests/install-script.test.js failures are spawnSync zip ENOENT — this container has no zip binary; CI ubuntu runners do.
  4. The no-AK integration gate passes 128/129 locally. The single failure (qwen serve — daemon Todo Stop Guard replay) is fully explained by this checkout's own .qwen/settings.json leaking into the test daemon session: its workspace tools.core allowlist omits todo_write, so the fake model's tool call is rejected as disabled and the guard never arms (exactly the observed 2 of 4 expected model calls). Daemon sessions load workspace settings via loadSettings(cwd); a CI checkout has no .qwen (the workflow removes leaked ones before checkout), and the identical code was green on CI hours earlier. This failure cannot recur on CI because of this PR.
  5. Not reproducible here: the Chrome extension package/scan:artifacts step needs the zip binary, which this container lacks (CI itself skips the step when zip is absent). This PR touches nothing in the extension, so the step has no new surface to fail on.

Why no code change

There is no evidence-backed code-level hypothesis: every runnable surrogate of the failed job passes on this exact tree, the only local failures are proven container artifacts, and the merge delta touches no code path that could explain the red check. Inventing a speculative change would only grow the diff without addressing a demonstrated defect (AGENTS.md, Simplicity First). Transient Test failures of this shape are handled by the repository's Qwen CI Failure Patrol, which re-runs stale failed checks every 10 minutes.

中文说明

Autofix address-review 轮次 — PR #8439

本轮不做任何代码改动。 唯一的反馈项是失败的 Test (ubuntu-latest, Node 22.x) 检查(CI 运行 30912746158,失败于 2026-08-04T13:28:45Z)。在与 PR 完全一致的代码树上对该 CI 任务的各个步骤做了完整本地复现,未发现任何由本 PR 引起的缺陷;该失败与 CI 运行器/测试的瞬时性抖动(flake)特征一致,而本仓库的自动化 flaky 重跑巡检机制正是用来重跑此类失败的。

反馈分类

  • 评审(Reviews):无。行内评论(Inline comments):无。自上次评估以来,来自可信维护者或自动评审器的 issue 级评论:无。
  • 失败的检查:Test (ubuntu-latest, Node 22.x) — FAILURE。这是唯一需要处理的项。

证据

  1. 失败的这次运行是自动化 update-branch 合并 main(13:13:15Z)之后的第一次 CI 运行。 合并前的 head(eda904cf8)在数小时前所有代码检查均为绿色,而这次合并带入的 10 个提交没有触及本 PR 或下列检查所执行的任何代码路径。本运行器无法获取 CI 日志(没有 GitHub 凭据),因此改为在本地逐步复现该 CI 任务。
  2. Test 任务中的每一个确定性步骤在该代码树上均通过(使用干净的、与 CI 等价的环境:CI=true、全新 HOME、未设置 API key/鉴权/沙箱相关环境变量):
    • npm run lint(ESLint,仓库 + integration-tests)— 通过
    • 对所有变更文件执行 Prettier 检查 — 通过
    • npm run check:lockfilenpm run check:desktop-isolation、敏感关键词 lint — 通过
    • npm run check-i18n — 通过
    • npm run generate:settings-schema + 新鲜度 diff — schema 已是最新
    • VS Code companion generate:notices + 新鲜度 diff — notices 已是最新
    • npm run check:serve-fast-path-bundle(清理构建 + bundle + 闭包检查)— 通过
    • npm run typecheck — 通过
  3. 完整的单元测试部分通过。 npm run test:ci 一直执行到 test:scripts 阶段(&& 链证明每个 workspace 的测试套件都以 0 退出):packages/cli 17166 个测试 / 0 失败,packages/core 19202 / 0,packages/web-shell 2776 / 0。本地出现的全部失败都是本分析容器自身的产物,而非代码树的问题:
    • 首次在脏环境下运行 CLI 套件出现 32 个失败,一旦取消设置来自 agent 运行器泄漏的 SANDBOX / QWEN_HOME / QWEN_CODE_CUSTOM_SANDBOX_IMAGE / OPENAI_* 环境变量后全部复现消失(CI 会清空这些变量);剩余的那 1 个失败在 CI=true 时按设计被跳过;
    • scripts/tests/install-script.test.js 的 5 个失败均为 spawnSync zip ENOENT —— 本容器没有 zip 二进制,而 CI 的 ubuntu 运行器有。
  4. no-AK 集成门禁本地通过 128/129。 唯一的失败(qwen serve — daemon Todo Stop Guard replay)完全可以由本 checkout 自身的 .qwen/settings.json 泄漏进测试守护进程会话来解释:其工作区 tools.core 白名单不含 todo_write,因此假模型的该工具调用被以"已禁用"拒绝,守卫从未进入待发状态(恰好对应观察到的 4 次期望模型调用只出现 2 次)。守护进程会话通过 loadSettings(cwd) 加载工作区设置;CI 的 checkout 中不存在 .qwen(工作流在 checkout 前会删除遗留的 .qwen),且相同代码数小时前在 CI 上是绿色的。该失败不可能因本 PR 而在 CI 上复现。
  5. 本地无法复现的部分: Chrome 扩展的 package/scan:artifacts 步骤需要 zip 二进制,本容器缺失(CI 自身在缺少 zip 时会跳过该步骤)。本 PR 未触及该扩展的任何内容,因此该步骤没有新的失败面。

为什么不做代码改动

不存在有证据支撑的代码层面假设:该失败任务的每一个可运行替代验证都在这棵完全相同的代码树上通过,仅有的本地失败已被证明是容器产物,合并带入的变更也未触及任何能解释该红色检查的代码路径。臆测性的改动只会增大 diff,却无法解决任何被证实的缺陷(AGENTS.md,Simplicity First 原则)。此类形态的瞬时性 Test 失败由本仓库的 Qwen CI Failure Patrol 处理,它每 10 分钟重跑一次停留在失败状态的检查。

Base-conflict check · 基分支冲突检查: no conflict with main. · 与 main 无冲突。


🧠 Handled by Qwen Code · model/模型 qwen3.8-max

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🔀 Base updated: red check(s) [Test (ubuntu-latest, Node 22.x)] pass on current main — merged current main via update-branch; CI will re-run.

中文说明

🔀 已更新 base:红色检查 [Test (ubuntu-latest, Node 22.x)] 在当前 main 上通过 —— 已通过 update-branch 合入当前 main,CI 将重新运行。

@qwen-code-ci-bot

Copy link
Copy Markdown
Collaborator

Qwen Code review timed out. Qwen review timed out after 21600 seconds (of the 360-minute budget). This run already used the maximum 360 minute timeout. See workflow logs.

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🔀 Base updated: red check(s) [review-pr] pass on current main — merged current main via update-branch; CI will re-run.

中文说明

🔀 已更新 base:红色检查 [review-pr] 在当前 main 上通过 —— 已通过 update-branch 合入当前 main,CI 将重新运行。

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤖 Reviewed the latest feedback — no changes needed. Why, point by point: · 已审阅最新反馈——无需改动。逐点说明原因如下:

Autofix review round — no code changes required

This round's feedback contained no review comments and no inline findings — only a bot comment and two failed checks. After a full evidence-based investigation, no code-level defect was found, so no changes were made.

Feedback triage

Item Classification Disposition
@qwen-code-ci-bot: "Qwen Code review timed out" (issue comment) Workflow-level: the automated Qwen review consumed its full 360-minute budget and timed out Nothing to change in PR code; the review workflow re-runs independently
Failed check review-pr Same review timeout (check run for the review workflow) Not addressable from this branch's code
Failed check Test (ubuntu-latest Node 22.x) Investigated end-to-end (see below) No reproducible defect; every step of that CI job was reproduced locally in a CI-equivalent environment and passes

Investigation of the failed Test check

No CI logs were reachable from this runner (no GitHub credentials), so the entire Test job was reproduced step by step locally on the exact PR head (6761b3f74), in a CI-equivalent environment (fresh HOME, NO_COLOR=true, empty API keys, SANDBOX/QWEN_HOME/CI unset):

  • Lint/format/freshness steps — all pass: npm run lint:ci (--max-warnings 0), repo-wide Prettier, sensitive-keywords lint, npm run check-i18n, settings-schema regeneration (committed schema is fresh), VS Code companion notices (fresh), npm run check:lockfile, npm run audit:runtime:critical (0 critical), npm run check:desktop-isolation, npm run check:serve-fast-path-bundle, .github/scripts helper tests (206/206).
  • Unit tests — all 9 workspaces green: cli 17260 passed, core 19226 passed, sdk-typescript 1444, web-shell 2784, webui 427, vscode-ide-companion 480, acp-bridge 1053, chrome-extension 76, audio-capture 2; plus root test:scripts 884 passed.
  • Build/typechecknpm run build and npm run typecheck pass.
  • No-AK integration gate (test:integration:no-ak:sandbox:none) — 128/129 pass; the single local failure was proven to be a sandbox artifact (below).

Local-only failures encountered during reproduction, each proven environmental (none exist in CI):

  1. Footer snapshots + ideCommand early-return — caused by this sandbox's SANDBOX env var (CI sets none).
  2. 12 settings.test.ts failures — caused by this sandbox's ambient QWEN_HOME env var (absent in CI's unit-test step); pass when unset.
  3. AuthDialog TUI-input tests — skipped in CI by design (CI=true gate in the test file); the local flake is irrelevant to CI.
  4. 5 install-script.test.js failures — spawnSync zip ENOENT: this sandbox lacks the zip binary, which ubuntu-latest runners ship.
  5. qwen-serve-streaming.test.ts Todo Stop Guard replay — the daemon session loaded this sandbox checkout's git-ignored .qwen/settings.json, whose tools.core allowlist does not contain todo_write, so the tool was absent from the session registry and the guard never armed. Proven by rerunning the scenario against a clean workspace directory: all 4 expected model requests arrived within 5 seconds. CI checkouts never contain .qwen/settings.json (it is git-ignored, and the Test job cleans stale .qwen before checkout), so this cannot occur in CI.

Conclusion: the red Test check is consistent with a transient/flaky failure on the self-hosted runner rather than a defect introduced by this PR; a CI re-run is the appropriate next step.

Verification

Commands actually run this round (on PR head 6761b3f74):

  • npm run build — passed
  • npm run typecheck — passed
  • npm run lint and npm run lint:ci (--max-warnings 0) — passed
  • npx prettier --check on changed files, then repo-wide node scripts/lint.js --prettier — passed
  • node scripts/lint.js --sensitive-keywords — passed
  • npm run check-i18n — passed
  • npm run generate:settings-schema + git status on the schema — fresh, no drift
  • npm run generate:notices --workspace=qwen-code-vscode-ide-companion + git status — fresh, no drift
  • npm run check:lockfile — passed
  • npm run audit:runtime:critical — passed (0 critical)
  • npm run check:desktop-isolation — passed
  • npm run check:serve-fast-path-bundle — passed
  • .github/scripts helper tests (node --test, 13 files) — 206 passed, 0 failed
  • Focused Vitest, CI-equivalent env: packages/cli — 17260 passed / 0 failed (13 local-only failures proven environmental, see above); packages/core — 19226 passed; sdk-typescript — 1444; web-shell — 2784; webui — 427; vscode-ide-companion — 480; acp-bridge — 1053; chrome-extension — 76; audio-capture — 2; root test:scripts — 884 passed (5 zip ENOENT sandbox-only failures)
  • Integration (no-AK gate equivalent, after fresh build) — 128/129 passed; the 1 failure proven to be this sandbox's .qwen/settings.json leaking into the test workspace (clean-workspace rerun: guard flow completes, 4/4 requests in 5s)

No code was changed; the working tree remains clean at the PR head.

中文说明

Autofix 审查轮次 — 无需修改代码

本轮反馈没有任何审查评论或行内发现 — 只有一条机器人评论和两个失败的检查。经过完整的基于证据的排查,未发现代码层面的缺陷,因此未做任何改动。

反馈分类

项目 分类 处理
@qwen-code-ci-bot:“Qwen Code review timed out”(issue 评论) 工作流层面:自动化 Qwen 审查用满了 360 分钟预算后超时 PR 代码中无可修改项;审查工作流会独立重跑
失败检查 review-pr 同上述审查超时(审查工作流的 check run) 无法通过本分支代码解决
失败检查 Test (ubuntu-latest Node 22.x) 已端到端排查(见下文) 无可复现缺陷;该 CI job 的每个步骤都已在 CI 等效环境下本地复现且全部通过

对失败 Test 检查的排查

本 runner 无法获取 CI 日志(没有 GitHub 凭据),因此在 PR head(6761b3f74)上逐步本地复现了整个 Test job,并使用 CI 等效环境(全新 HOMENO_COLOR=true、空 API key、未设置 SANDBOX/QWEN_HOME/CI):

  • Lint/格式/产物新鲜度步骤 — 全部通过:npm run lint:ci--max-warnings 0)、全仓库 Prettier、敏感词 lint、npm run check-i18n、settings-schema 重新生成(已提交的 schema 为最新)、VS Code companion notices(最新)、npm run check:lockfilenpm run audit:runtime:critical(0 个严重漏洞)、npm run check:desktop-isolationnpm run check:serve-fast-path-bundle.github/scripts 辅助测试(206/206)。
  • 单元测试 — 全部 9 个 workspace 通过:cli 17260 通过、core 19226 通过、sdk-typescript 1444、web-shell 2784、webui 427、vscode-ide-companion 480、acp-bridge 1053、chrome-extension 76、audio-capture 2;另有根目录 test:scripts 884 通过。
  • 构建/类型检查npm run buildnpm run typecheck 通过。
  • 无 AK 集成门禁test:integration:no-ak:sandbox:none)— 128/129 通过;唯一的本地失败已证明是沙箱环境问题(见下文)。

复现过程中遇到的仅限本地的失败,均已证明为环境问题(CI 中均不存在):

  1. Footer 快照 + ideCommand 提前返回 — 由本沙箱的 SANDBOX 环境变量导致(CI 不设置该变量)。
  2. 12 个 settings.test.ts 失败 — 由本沙箱环境中的 QWEN_HOME 变量导致(CI 的单元测试步骤中不存在);取消设置后即通过。
  3. AuthDialog TUI 输入测试 — 在 CI 中按设计被跳过(测试文件内的 CI=true 门控);本地的偶发失败与 CI 无关。
  4. 5 个 install-script.test.js 失败 — spawnSync zip ENOENT:本沙箱缺少 zip 二进制,而 ubuntu-latest runner 自带。
  5. qwen-serve-streaming.test.ts 的 Todo Stop Guard 重放 — daemon 会话加载了本沙箱 checkout 中被 git 忽略的 .qwen/settings.json,其 tools.core 白名单不含 todo_write,导致该工具不在会话注册表中、guard 从未触发。用干净的工作区目录重跑该场景即证明:预期的 4 个模型请求在 5 秒内全部到达。CI 的 checkout 永远不会包含 .qwen/settings.json(它被 git 忽略,且 Test job 在 checkout 前会清理残留的 .qwen),因此 CI 中不可能出现此问题。

结论:红色的 Test 检查与自托管 runner 上的瞬时/偶发失败相符,而非本 PR 引入的缺陷;下一步应当重跑 CI。

验证

本轮实际执行的命令(基于 PR head 6761b3f74):

  • npm run build — 通过
  • npm run typecheck — 通过
  • npm run lintnpm run lint:ci--max-warnings 0)— 通过
  • 对改动文件执行 npx prettier --check,随后全仓库 node scripts/lint.js --prettier — 通过
  • node scripts/lint.js --sensitive-keywords — 通过
  • npm run check-i18n — 通过
  • npm run generate:settings-schema + 对该 schema 的 git status — 最新,无漂移
  • npm run generate:notices --workspace=qwen-code-vscode-ide-companion + git status — 最新,无漂移
  • npm run check:lockfile — 通过
  • npm run audit:runtime:critical — 通过(0 个严重)
  • npm run check:desktop-isolation — 通过
  • npm run check:serve-fast-path-bundle — 通过
  • .github/scripts 辅助测试(node --test,13 个文件)— 206 通过,0 失败
  • 定向 Vitest(CI 等效环境):packages/cli — 17260 通过 / 0 失败(13 个仅限本地的失败已证明为环境问题,见上文);packages/core — 19226 通过;sdk-typescript — 1444;web-shell — 2784;webui — 427;vscode-ide-companion — 480;acp-bridge — 1053;chrome-extension — 76;audio-capture — 2;根目录 test:scripts — 884 通过(5 个 zip ENOENT 为仅限沙箱的失败)
  • 集成测试(无 AK 门禁等效,全新构建后)— 128/129 通过;唯一失败已证明是本沙箱的 .qwen/settings.json 泄漏进测试工作区(干净工作区重跑:guard 流程完成,5 秒内 4/4 请求)

未改动任何代码;工作树在 PR head 上保持干净。

Base-conflict check · 基分支冲突检查: no conflict with main. · 与 main 无冲突。


🧠 Handled by Qwen Code · model/模型 qwen3.8-max

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🔀 Base updated: red check(s) [Test (ubuntu-latest, Node 22.x), review-pr] pass on current main — merged current main via update-branch; CI will re-run.

中文说明

🔀 已更新 base:红色检查 [Test (ubuntu-latest, Node 22.x), review-pr] 在当前 main 上通过 —— 已通过 update-branch 合入当前 main,CI 将重新运行。

@qwen-code-ci-bot

Copy link
Copy Markdown
Collaborator

Qwen Code review timed out. Qwen review timed out after 21600 seconds (of the 360-minute budget). This run already used the maximum 360 minute timeout. See workflow logs.

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤖 AutoFix ran out of time before finishing (timeout (1080000ms)) (attempt 3/100) — it will retry on the next scan.

What I found before stopping:
Qwen failed during address-review: timeout (1080000ms).

See the Qwen Autofix agent step logs for model/tool output.

Run log: https://github.com/QwenLM/qwen-code/actions/runs/30996516909


🧠 Handled by Qwen Code · model/模型 qwen3.8-max

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤖 AutoFix ran out of time before finishing (timeout (1080000ms)) (attempt 4/100) — it will retry on the next scan.

What I found before stopping:
Qwen failed during address-review: timeout (1080000ms).

See the Qwen Autofix agent step logs for model/tool output.

Run log: https://github.com/QwenLM/qwen-code/actions/runs/31000060856


🧠 Handled by Qwen Code · model/模型 qwen3.8-max

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🤖 AutoFix stopped: this counting window now contains 3 time-budget exhaustions (pushed rounds in between included; this round itself may have failed differently). That is 3 full agent runs that pushed nothing. A human should split or reduce the PR (or raise the agent time budget AND its step backstop together), then comment @qwen-code /retry to re-arm. Until then future scans will skip this PR.

What I found before stopping:
Qwen failed during address-review: timeout (1080000ms).

See the Qwen Autofix agent step logs for model/tool output.

Run log: https://github.com/QwenLM/qwen-code/actions/runs/31002906776


🧠 Handled by Qwen Code · model/模型 qwen3.8-max

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

⏸️ Takeover paused: this PR reached its round cap (100/100). Comment @qwen-code /takeover to re-arm a fresh window and continue management, or @qwen-code /takeover stop to release.

中文说明

⏸️ 托管已暂停:本 PR 达到轮次上限(100/100)。评论 @qwen-code /takeover 可重新武装、开启新窗口继续托管;或评论 @qwen-code /takeover stop 释放。

@wenshao

wenshao commented Aug 5, 2026

Copy link
Copy Markdown
Collaborator

Review: Ctrl+click hyperlinks and right-click context menu in VP mode

Overview

Restores the two native terminal affordances that SGR mouse tracking takes away in VP mode:

  • ContentMouseController — a headless mouse consumer that (a) opens the OSC 8 link under the pointer on Ctrl+press/release in the same cell, and (b) raises an in-app context menu on right-press.
  • hyperlink-at.ts — reads the URL straight out of the composited frame cell's per-cell styles, so the hit-test needs no markdown re-parsing / column math / CJK handling.
  • ContextMenuContext + ContextMenuOverlay — menu state, shared geometry helpers (contextMenuSize / clampMenuPosition), and an absolutely-positioned overlay drawn last in DefaultAppLayout.
  • Every other mouse/keyboard consumer is gated while the menu is open (scroll list hasFocus, RowMouseController, TextInputMouseController, ClickableThinkMessage, InputPrompt nav keys); the selection controller is paused rather than deactivated so "Copy Selection" still has something to copy.

The architecture is the right one. Reading the URL from the frame instead of re-parsing markdown is a genuinely good call — it makes soft-wrap and wide-char drift impossible by construction. Reusing openBrowserSecurely (execFile, no shell, http/https allowlist, control-char rejection) and copyToClipboard (stdin-piped, no shell interpolation) closes the injection holes the earlier attempt had. Docs are updated in all four places (settingsSchema.ts, settings.md, keyboard-shortcuts.md, troubleshooting.md, vscode schema) and stay consistent with each other. Geometry helpers are shared between the renderer and the hit-tester, which is exactly how you avoid the two disagreeing.

Two issues below look blocking; the rest are suggestions.


1. The menu box does not paint its own interior — transcript text bleeds through it

ContextMenuOverlay renders each item as {` ${item.label} `}, so a short row is narrower than the box, and the leftover interior columns are never written. Ink's absolute box only overwrites the cells it actually paints, so whatever is underneath shows through inside the border.

Reproduced against the same ink (7.0.3) with the PR's exact markup (border round, paddingX={0}, three Open Link / Copy Link Address / Copy Selection rows over a filled background):

╭───────────────────╮XXXXXXX0
│ Open Link XXXXXXXX│XXXXXXX1     ← 8 columns of the transcript leak inside the box
│ Copy Link Address │XXXXXXX2
│ Copy Selection XXX│XXXXXXX3     ← 3 columns leak
╰───────────────────╯XXXXXXX4

Every menu that mixes label lengths hits this, i.e. the link menu (Open Link is 8 columns narrower than Copy Link Address) — which is the primary case. The same defect also makes the selected-row highlight ragged: the background only covers the label, not the row.

Fix is one line — pad to the width contextMenuSize already computes:

const longest = Math.max(...menu.items.map((i) => i.label.length));
...
{` ${item.label.padEnd(longest)} `}

The E2E screenshots probably missed it because the cells behind the short row happened to be blank.

2. Esc-to-dismiss still fires the global Escape handler (can cancel an in-flight response)

InputPrompt swallows up/down/return/escape while the menu is open, but that only gates InputPrompt. KeypressContext.broadcast calls every subscriber with no early-stop (packages/cli/src/ui/contexts/KeypressContext.tsx:774), and AppContainer registers handleGlobalKeypress with { isActive: true } unconditionally (AppContainer.tsx:4200). Its Escape branch is not guarded by anything the menu sets — dialogsVisibleRef is false for a context menu — so pressing Esc to dismiss the menu also:

  • cancels the streaming request when the composer is empty and streamingState === Responding (AppContainer.tsx:~4012),
  • otherwise feeds the double-Esc rewind-selector path, or arms the "Press Esc again to clear" prompt when the composer has text.

Dismissing a context menu should have no side effect at all. Note the fix isn't purely local: ContextMenuProvider is rendered inside AppContainer's JSX (AppContainer.tsx:4769), so handleGlobalKeypress cannot useContextMenu(). Either lift the menu state into AppContainer and pass it down to the provider, or expose a module-scoped ref the global handler can read, then early-return on escape/up/down/return while a menu is open.

Same mechanism, smaller blast radius: Enter while the menu is open still reaches the global "dismiss completed btw on Space/Enter" branch.


Suggestions

  • console.warn as a user-facing notice (ContentMouseController.tsx:1235-1247) — in an ink app with patchConsole on (default; startInteractiveUI.tsx:233 doesn't disable it) and alternateScreen: true, this lands outside the frame and is effectively invisible or a one-frame artifact. The non-http path is then a silent clipboard copy. Prefer the app's own message channel (a history/info item) so "copied instead of opened" is actually seen.
  • Phishing surface. Ctrl+click / Open Link act on a URL that need not match the visible link text ([Trusted Site](https://evil.example)), and the menu shows neither. This is the one new "one gesture → network action on model-supplied data" path. Rendering the (truncated) target in the Open Link row, or as a hint line, would give the user what a browser status bar gives them. The PR defers hover-preview; a URL in the menu item is cheaper and covers the same risk.
  • Clicking the menu's own border closes ititemIndexOf returns -1 / items.length for the border rows, which falls through to menu.closeMenu() (ContentMouseController.tsx:1291-1301). Treat in-menu-but-not-on-an-item as a no-op.
  • Context churn. menu and selectedIndex share one context value, so every hover change re-renders MainContent (whole virtualized transcript), InputPrompt, both mouse controllers, and every ClickableThinkMessage. Splitting state/actions into two contexts (or keeping selectedIndex in a separate one) keeps hover off the transcript's render path.
  • item.label.length in contextMenuSize is a code-unit count; the rest of the UI uses string-width. Fine for today's ASCII labels, worth a comment or the shared helper before the first localized/emoji label.
  • Resize while open — the position isn't re-clamped and the menu isn't closed, so it can end up clipped or off-frame. Closing on a useTerminalSize change is the cheap fix (same class as the existing close-on-scroll).
  • Ctrl+click isn't exclusive. The controller returns early, but TextSelectionController and ClickableThinkMessage are separate subscribers that still see the same press, so a Ctrl+click over a thought row can open the link and toggle the thought, and it clears any active selection. "Plain clicks keep their exact current behavior" holds; Ctrl+click doing two things does not.
  • macOS caveat worth documenting. Control-click is the system secondary click; on some macOS terminals it arrives as right-press, in which case Ctrl+click raises the menu instead of opening the link. That is a fine degradation, but the docs currently promise the open.
  • integration-tests/terminal-capture/scenarios/vp-context-menu.ts depends on a mock server at /tmp/vpm-final2/mock-openai-server.js that isn't in the repo, plus hard-coded row/col geometry for a 120x40 terminal. As written nobody else can run it — either land the mock alongside it or label it explicitly as a local-only evidence scenario.

Tests

Good unit coverage for the parts that are easy to get wrong: OSC 8 terminator variants (BEL/ST/C1-ST/tmux doubled-ESC), params section, wide-char snap, the geometry helpers including edge flipping, the provider state machine, controller gestures (ctrl press/release same cell, drag cancel, non-http fallback, viewport rejection, scroll dismiss), overlay keyboard, and the new eventsPaused selection behavior. Gaps worth closing:

  • Nothing asserts the rendered menu actually covers the cells it occupies — that's what let issue 1 through. An overlay test with non-blank content underneath and a frame assertion would catch it and any regression.
  • No test for the key gating (InputPrompt swallow + whatever fixes issue 2).
  • hyperlinkAtCell returning undefined for the link-close code (\x1b]8;;\x07, which @alcalzone/ansi-tokenize does push onto the style stack of following cells) is load-bearing for "no link after the link ends" — worth an explicit test since it depends on tokenizer internals.

Verdict

Solid design and a real regression fixed the right way. Issues 1 and 2 should land before merge — the first is visible on the main path, the second can cancel a user's in-flight response. Everything else is follow-up material.

@qwen-code-ci-bot

Copy link
Copy Markdown
Collaborator

Qwen Code review timed out. Qwen review timed out after 21600 seconds (of the 360-minute budget). This run already used the maximum 360 minute timeout. See workflow logs.

@QwenLM QwenLM deleted a comment Aug 5, 2026

@qwen-code-ci-bot qwen-code-ci-bot left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not reviewed: build-and-test — Integration Tests (CLI, No Sandbox) was skipped in CI and its suite did not run locally.

Not reviewed: reverse audit — stopped before round 4 by the review time budget.

中文说明

未审查:build-and-test — Integration Tests (CLI, No Sandbox) was skipped in CI and its suite did not run locally。

未审查:反向审计——评审时间预算不足,未能开始第 4 轮。

— qwen3.8-max via Qwen Code /review (v0.21.6)

Comment thread packages/cli/src/ui/components/InputPrompt.tsx
Comment thread packages/cli/src/ui/selection/use-text-selection.tsx
Comment thread packages/cli/src/ui/context-menu/ContentMouseController.tsx
Comment thread packages/cli/src/ui/utils/hyperlink-at.ts Outdated
Comment thread packages/cli/src/ui/context-menu/ContextMenuOverlay.tsx
Comment thread docs/users/support/troubleshooting.md Outdated
Comment thread packages/cli/src/config/settingsSchema.ts Outdated
Comment thread packages/cli/src/config/settingsSchema.ts Outdated
Comment thread docs/users/configuration/settings.md Outdated
Comment thread docs/users/configuration/settings.md Outdated
@qwen-code-dev-bot qwen-code-dev-bot added the autofix/needs-human The autofix loop stopped on this PR — a human must re-arm, split, merge, or close it label Aug 15, 2026
@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

🔓 Takeover auto-released: the autofix loop paused on this PR 10 day(s) ago (🤖 AutoFix stopped: this counting window now contains 3 time-budget exhaustions (pushed rounds in between included; this ) and no re-arm followed, so the autofix/takeover label is removed to keep the managed pool honest. autofix/needs-human stays as the reminder that this PR needs a human decision: merge it, close it, or split/reduce it and comment @qwen-code /takeover to re-engage with a fresh round window.

中文说明

🔓 已自动释放接管:autofix 循环在 10 天前暂停于此 PR(🤖 AutoFix stopped: this counting window now contains 3 time-budget exhaustions (pushed rounds in between included; this ),此后无人重新武装,现移除 autofix/takeover 标签以保持托管池真实可用。保留 autofix/needs-human 作为待办提醒 —— 本 PR 需要人工决策:合并、关闭,或拆分/缩小后评论 @qwen-code /takeover 以全新轮次窗口重新接管。

@qwen-code-dev-bot qwen-code-dev-bot removed the autofix/takeover Summon the autofix loop to manage this PR (remove to release; needs triage+) label Aug 15, 2026
@chiga0
chiga0 marked this pull request as draft August 19, 2026 02:47
chiga0 added 2 commits August 27, 2026 08:46
- InputPrompt: fall through after closing the context menu so the
  dismissing key keeps reaching vim/paste/shell-mode interceptors
- use-text-selection: pause gate above the scroll-clear branch (wheel
  ticks while paused keep the selection) and finish an in-flight drag
  on a paused left-release (no stale dragging leak)
- hyperlink-at: stop OSC 8 URL extraction on DEL and the full C1 range
- ContextMenuContext: closeMenu clears the ref mirror synchronously;
  provider gains onMenuChange for AppContainer's global keypress gate
- AppContainer: skip the ESCAPE / btw-dismiss global branches while
  the context menu is open
- ContentMouseController: close the menu on unmount and on terminal
  resize while open
- HistoryItemDisplay: ignore Ctrl-modified mouse events (reserved for
  the OSC 8 link gesture)
- ContextMenuOverlay: pad rows to the longest label so the absolute
  box paints its own interior
@chiga0 chiga0 closed this Aug 28, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

autofix/needs-human The autofix loop stopped on this PR — a human must re-arm, split, merge, or close it

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants