Skip to content

fix(web-shell): keep a manual session name across /clear (#8977) - #9260

Open
yiliang114 wants to merge 43 commits into
mainfrom
fix/8977-clear-keeps-manual-session-name
Open

fix(web-shell): keep a manual session name across /clear (#8977)#9260
yiliang114 wants to merge 43 commits into
mainfrom
fix/8977-clear-keeps-manual-session-name

Conversation

@yiliang114

@yiliang114 yiliang114 commented Aug 16, 2026

Copy link
Copy Markdown
Collaborator

What this PR does

A manually chosen Web Shell session name now survives /clear. The successor session persists that name before it attaches and before its first prompt, so automatic title generation cannot replace the user's label.

Title provenance now survives live updates, page reloads, session reloads, daemon restarts, and every cold-restore path. Only names explicitly marked manual are carried; automatic titles and legacy names with unknown provenance are not. /new, /reset, workspace changes, opening another session, and a newer in-flight session intent invalidate the carry-over.

Why it's needed

Fixes #8977. A name deliberately chosen by the user is session identity, and losing it during /clear makes labeled sessions indistinguishable. The previous implementation also applied the rename after attach, which left the first prompt and auto-title generation ahead of the manual write.

Reviewer Test Plan

How to verify

  1. Rename the current Web Shell session with the sidebar or /rename foo, run /clear, and send the first prompt. Expected: the successor is already named foo, and the later automatic-title pass does not replace it.
  2. Reload or reconnect to a previously renamed session, then run /clear and send a prompt. Expected: the persisted manual name still carries to the successor.
  3. Run /clear on a session that has never been manually renamed. Expected: no name is carried and the automatic title is generated normally.
  4. Run /new or /reset, switch workspaces, or open another session after /clear. Expected: the old manual name is not applied to the unrelated session.

Evidence (Before & After)

Before: a browser reproduction against current main showed the manually chosen name replaced by an automatic title after the successor's first prompt.

After: the same browser flow passes for /clear (manual title persisted before the prompt and remains authoritative), while the /new control still receives an automatic title. No visual layout changed, so screenshots are N/A.

Tested on

OS Status
🍏 macOS ✅ tested
🪟 Windows ⚠️ not tested locally
🐧 Linux ⚠️ not tested locally

Environment (optional)

Browser E2E: 2/2 passed with the local Web Shell and mock daemon. Focused regression suites for Web Shell, bridge, serve, SDK, and WebUI passed. Repository-wide npm run build, npm run typecheck, and npm run lint passed.

Risk & Scope

  • Main risk or tradeoff: title and provenance must remain a consistent tuple across live events and cold restore; legacy records without provenance stay conservatively unknown.
  • Not validated / out of scope: local Windows and Linux runs; /new and /reset intentionally retain fresh-session behavior.
  • Breaking changes / migration notes: none.

Linked Issues

Fixes #8977

中文说明

本 PR 做了什么

Web Shell 中用户手动设置的会话名现在会在 /clear 后保留。后继会话会在 attach 和第一条 prompt 之前完成名称持久化,因此自动标题生成不会覆盖用户设置的名称。

标题来源现在能够跨实时更新、页面刷新、会话重载、daemon 重启以及所有冷恢复路径保留。只有明确标记为 manual 的名称才会继承;自动标题和来源未知的旧版名称不会继承。/new/reset、切换 workspace、打开其它会话,以及更新的并发会话意图都会使旧的继承失效。

为什么需要

Fixes #8977。用户主动选择的名称就是会话身份;在 /clear 时丢失名称会让已经标记的会话重新变得难以区分。此前的实现还在 attach 之后才重命名,使第一条 prompt 和自动标题生成先于手动名称写入。

Reviewer Test Plan

How to verify

  1. 通过侧边栏或 /rename foo 重命名当前 Web Shell 会话,执行 /clear,然后发送第一条 prompt。预期:后继会话已经命名为 foo,后续自动标题不会覆盖它。
  2. 刷新或重新连接到一个之前已重命名的会话,然后执行 /clear 并发送 prompt。预期:持久化的手动名称仍会继承到后继会话。
  3. 对从未手动重命名的会话执行 /clear。预期:不会继承名称,自动标题正常生成。
  4. /clear 后执行 /new/reset、切换 workspace,或打开其它会话。预期:旧的手动名称不会应用到无关会话。

Evidence (Before & After)

Before:针对当前 main 的浏览器复现显示,手动设置的名称会在后继会话第一条 prompt 后被自动标题替换。

After:同一浏览器流程中,/clear 场景通过(手动标题在 prompt 前持久化并保持权威),/new 对照场景仍会正常获得自动标题。没有视觉布局变化,因此截图不适用。

Tested on

OS Status
🍏 macOS ✅ 已测试
🪟 Windows ⚠️ 本地未测试
🐧 Linux ⚠️ 本地未测试

Environment (optional)

使用本地 Web Shell 和 mock daemon 的浏览器 E2E 2/2 通过。Web Shell、bridge、serve、SDK 与 WebUI 的定向回归测试通过。仓库级 npm run buildnpm run typechecknpm run lint 通过。

Risk & Scope

  • Main risk or tradeoff:标题和来源必须在实时事件与冷恢复路径中始终作为一致元组;缺少来源的旧记录会保守地保持为未知。
  • Not validated / out of scope:本地 Windows 与 Linux 运行;/new/reset 按设计继续保持全新会话行为。
  • Breaking changes / migration notes:无。

Linked Issues

Fixes #8977

/clear starts a brand-new deferred session, so a name the user chose via
/rename or the sidebar stays on the old session and the successor gets an
auto-generated title after the first turn.

Carry a manual name over to the successor session:
- daemon rename publications now stamp titleSource:'manual' (the child-side
  title-update path already forwarded it; the HTTP rename path did not)
- webui connection state tracks titleSource alongside displayName and
  clears it with the rest of the session-scoped fields on clear
- the /clear handler stashes the manual name and re-applies it via
  renameSession once the new session attaches (ensureSessionForPrompt
  success path); auto-generated titles are never carried forward, and
  /new and /reset deliberately keep today's "start untitled" behavior

Tests: bridge stamps titleSource on rename publications; mappers keep it
from session_metadata_updated (manual/auto/unknown); connection clear
drops it; App-level /clear carry-over positive + auto-title negative.
@qwen-code-ci-bot

qwen-code-ci-bot commented Aug 16, 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

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

Copy link
Copy Markdown
Collaborator

Re-run on request (@qwen-code /triage) — round-6 gate against head cdbca33b51 (round-5 closeout).

Template: complete ✓ — all required sections present, including the bilingual details block.

Problem: observed bug, not theory. #8977 is a user report from v0.21.10: a manually named Web Shell session loses its name after /clear when the successor's first prompt triggers auto-title generation. Proceed.

Direction: aligned — a deliberately chosen session name is session identity, and losing it on /clear makes labeled sessions indistinguishable. The area is live in comparable products (claude-code's CHANGELOG carries repeated session-naming work). No direction concerns.

Size: 2,085 additions / 96 deletions across 44 files — ~512 production logic lines, ~1,643 test lines, and a 26-line design doc. The change spans six packages (acp-bridge, cli, core, sdk-typescript, web-shell, webui) and touches packages/core/src/services/sessionService.ts, so the core-module two-tier rule applies: this is a fix (not a refactor) authored by a maintainer, so there is no size block; the 500+ production-line awareness threshold is crossed and recorded here, and the Tier-2 100%-confidence bar holds — in practice that means green CI on the reviewed head (Stage 2).

Approach: unchanged from round 3 and still right — title and provenance are a tuple, and every path that touches the title (cold-restore routes, ACP dispatch, branch, keepalive, live coordinator, SDK, WebUI provider) must carry both fields or the tuple desyncs. Cutting 80% of the files would reintroduce the reported bug through a surviving path. Nothing to split out; the design doc under docs/design/ records the invariants.

Risk: one Stage-1e match — packages/cli/src/acp-integration/acpAgent.ts sits on the acp-integration high-risk path from the revert-history analysis. The change there remains small (fork options stamp titleSource), but per policy no Stage-2 enrichment is skipped and CI evidence is required before any approval.

Moving on to code review. 🔍

中文说明

@qwen-code /triage 请求重跑 —— 第 6 轮门禁,针对 head cdbca33b51(第 5 轮收尾)。

**模板:**完整 ✓ —— 所有必需小节齐全,包含中文 details。

**问题:**已观测到的 bug,不是理论问题。#8977 是 v0.21.10 上的用户报告:手动命名的 Web Shell 会话在 /clear 后,后继会话首条 prompt 触发自动标题生成时丢失名称。通过。

**方向:**对齐——用户主动选择的会话名就是会话身份,在 /clear 时丢失会让已标记的会话无法区分。该领域在同类产品中持续投入(claude-code 的 CHANGELOG 有多次会话命名相关改动)。方向无异议。

**规模:**44 个文件 +2,085/-96,其中约 512 行生产逻辑、约 1,643 行测试、26 行设计文档。跨 6 个包(acp-bridge、cli、core、sdk-typescript、web-shell、webui)并触及 packages/core/src/services/sessionService.ts,适用核心模块两级规则:这是 fix(非 refactor)且作者为维护者,不做规模拦截;已记录越过 500 行生产关注阈值,Tier-2 的 100% 信心标准仍然有效——实际上意味着被审 head 上 CI 全绿(见 Stage 2)。

**方案:**与第 3 轮判断一致且仍然正确——标题与来源是一个元组,任何触及标题的路径(冷恢复路由、ACP dispatch、branch、keepalive、live coordinator、SDK、WebUI provider)都必须同时携带两个字段,否则元组失同步。砍掉 80% 的文件只会让幸存路径重新引入该 bug。无可拆分内容;docs/design/ 下的设计文档记录了这些不变量。

**风险:**Stage-1e 命中一项——packages/cli/src/acp-integration/acpAgent.ts 位于回滚历史分析的 acp-integration 高风险路径。该处改动仍然很小(fork 选项打上 titleSource),但按政策不跳过任何 Stage-2 增强项,且批准前必须有 CI 证据。

进入代码审查。🔍

Qwen Code · qwen3.8-max

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

@qwen-code-ci-bot

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

Copy link
Copy Markdown
Collaborator

Round-6 review at cdbca33b51 — focused on the round-5 ledger, with a fresh pass over the fix sites.

Round-5 findings: all three verified fixed at this head.

  • R5-1 / R5-2 (Critical) — fixed. Both persisted-title reads now use the case-corrected storage id, matching every adjacent persisted read. I confirmed the resolution chain at this head, not just the call site: in acp-http/dispatch.ts the storageSessionId fed to getSessionTitleInfo comes from findSessionIdIgnoringCase (guard → persisted-id fallback), and in routes/session.ts the same is true of restoredStorageSessionId. The raw request spelling could miss the title file on case-sensitive filesystems; that hole is closed on both the ACP and REST restore paths, for load and resume alike. New wire-level regressions pin it: transport.test.ts stores the transcript under an uppercase id, requests it lowercase, and asserts getSessionTitleInfo is called with the corrected id and the restore request carries displayName + titleSource: 'manual'; server.test.ts pins the same for the REST routes. Reverting either fix site fails the assertions — the shape of test that actually holds the fix.
  • R5-3 (Suggestion) — fixed. App.test.tsx gains keeps the carry when a fold landing load fails with no creation in flight: no creation in flight, landing loadSession rejects, and the next deferred creation still renames with the carried name. The production code matches — carry invalidation sits in the load's .then() (not .finally()), additionally guarded by !createSessionPromiseRef.current so an in-flight creation keeps ownership of the token.
  • R4-1 (Critical) — still standing, confirmed at this head. The MCP rename tool's absent-name branch now sends titleSource: 'auto', but bridge.updateSessionMetadata only acts inside if (metadata.displayName !== undefined), so that intent is a silent no-op end-to-end: the daemon returns 200 with the unchanged fields. Two mitigating facts from the diff: the guard predates this PR (the no-op shape exists on main, so this is not a regression), and clearing via an empty displayName does work (nextTitleSource drops with the name). What remains is a contract question the author has explicitly left human-gated — honour titleSource-only updates in the bridge vs 400-rejecting a displayName-less PATCH — because either answer changes the public daemon API. That decision is the reason for this run's defer (Stage 3), not a code defect I can resolve from the diff.

Nothing new surfaced in the rest of the diff: the carry-over ordering in App.tsx (value-gated rename, identity-gated cleanup), the same-text manualauto downgrade guard in bridge.ts protecting keepalive re-names, the restoreSessionTitleFields helper, and the core forkSession provenance default (manual when omitted — prior behavior preserved) all read as the minimal consistent set.

Testing — the PR's own CI at this head, fetched once via the API (no PR code executed by this gate). At fetch time the primary unit gate had not finished; the table is updated in place by the finalize job once CI settles. One red check, classified below.

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

Check Conclusion
Live Host (macos-latest) ❌ failure
Capture web-shell visuals (ubuntu-latest, Node 22.x) ✅ success
Classify PR ✅ success
Dependency CVE audit ✅ success
Desktop Shell (ubuntu-22.04) ✅ success
Desktop Shell (windows-2022) ✅ success
macos-latest / Java 21 ✅ success
Post Coverage Comment (ubuntu-latest, 22.x) ✅ success
Real daemon E2E / Java 11 ✅ success
Secret scan (TruffleHog) ✅ success
Serve A/B (ubuntu-latest, Node 22.x) ✅ success
Test (ubuntu-latest, Node 22.x) ✅ success
ubuntu-latest / Java 11 ✅ success
ubuntu-latest / Java 17 ✅ success
ubuntu-latest / Java 21 ✅ success
web-shell E2E Smoke (ubuntu-latest, Node 22.x) ✅ success
windows-latest / Java 21 ✅ success

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

The Live Host (macos-latest) failure is not this PR's: the job dies in Install desktop dependencies with bun install --frozen-lockfileerror: lockfile had changes, but lockfile is frozen. Both the live-host.yml workflow and the entire packages/desktop tree (including that bun.lock) were added to main today in #9491 (5715782, 16:27 UTC) — after this branch's last main-merge — and this PR's 44 changed files contain no desktop files and no dependency manifests. The mismatch lives entirely inside files that PR imported; any PR touching serve/live/** or daemon/types.ts today hits the same wall. It does need a maintainer's eye for the merge queue, but as a finding against #9260 it is noise.

Not verified: no local build/test execution — this gate never runs PR code; the author's closeout claims (mutation-verified regressions, server.test.ts 1048 passed, App.test.tsx 501/501, tsc/eslint clean) are the author's own and rest on CI + the sandboxed lane below for independent confirmation.

Sandboxed verification would settle the remaining behavioural claim: @qwen-code /verify — that a manual name actually survives /clear end-to-end at this head. The prior A/B load-bearing proof ran on the round-3 head (f99837bd); rounds 4–5 reworked the restore-path reads, so the behavioural guarantee does not automatically carry over to cdbca33b51.

中文说明

第 6 轮审查(head cdbca33b51)——聚焦第 5 轮台账,并对修复点重新走查。

第 5 轮三项发现均已在本 head 验证修复:

  • **R5-1 / R5-2(Critical)已修复。**两处持久化标题读取现在都使用大小写校正后的 storage id。我确认的是解析链而不仅是调用点:dispatch.ts 中传给 getSessionTitleInfostorageSessionId 来自 findSessionIdIgnoringCase(guard → 持久化 id 回退),routes/session.ts 中的 restoredStorageSessionId 同理。原先按请求原始拼写读取,在大小写敏感文件系统上可能漏掉标题文件;ACP 与 REST 两条恢复路径(load/resume)的漏洞都已关闭。新增的 wire 级回归钉住了该行为:大写存储、小写请求,断言读取用的是校正后的 id,且恢复请求携带 displayName + titleSource: 'manual'。还原任一修复点都会让断言失败——是真正能托住修复的测试。
  • R5-3(建议)已修复。App.test.tsx 新增折叠落地加载失败场景测试;生产代码与之一致——carry 失效放在加载成功的 .then() 中(而非 .finally()),并额外以 !createSessionPromiseRef.current 守卫,避免与在途创建竞争 token。
  • **R4-1(Critical)仍然悬挂,已在本 head 确认。**MCP 重命名工具的缺名分支现在会发送 titleSource: 'auto',但 bridge.updateSessionMetadata 仅在 displayName !== undefined 分支内生效,因此该意图端到端是静默 no-op:daemon 返回 200 且字段不变。两点来自 diff 的缓解事实:该守卫早于本 PR(no-op 形态在 main 上已存在,不构成回归);通过空 displayName 清除名称仍然有效。剩下的是一个作者明确留给人工决策的契约问题——bridge 接受仅 titleSource 的更新,还是对无 displayName 的 PATCH 返回 400——两者都改变公开 daemon API。该决策是本轮 defer 的原因(见 Stage 3),不是我能从 diff 判定的代码缺陷。

diff 其余部分未发现新问题:App.tsx 的 carry 顺序(按值门禁的重命名、按身份门禁的清理)、bridge.ts 中防止 keepalive 重名降级 manual 的同文本守卫、restoreSessionTitleFields 助手、core forkSession 的来源默认值(缺省为 manual,保持原行为)都读起来是最小且自洽的集合。

**测试——本 head 上 PR 自身的 CI,经 API 一次性获取(门禁不执行 PR 代码)。**获取时主测试门禁尚未完成;表格由 finalize 任务在 CI 落定后就地更新。一项红色检查,分类见下。

Live Host (macos-latest) 的失败与本 PR 无关:任务死于 Install desktop dependenciesbun install --frozen-lockfilelockfile had changes, but lockfile is frozenlive-host.yml 工作流与整个 packages/desktop 树(含该 bun.lock)都是今天经 #94915715782)进入 main 的——晚于本分支最后一次合并 main——而本 PR 的 44 个变更文件中没有任何 desktop 文件或依赖清单。失配完全位于 #9491 导入的文件内部;今天任何触及 serve/live/**daemon/types.ts 的 PR 都会撞上同一堵墙。它需要维护者为合并队列关注,但作为对 #9260 的发现,它是噪音。

未验证:不做本地构建/测试执行——本门禁从不运行 PR 代码;作者收尾声明(mutation 验证的回归、server.test.ts 1048 通过、App.test.tsx 501/501、tsc/eslint 干净)属于作者自述,独立确认依赖 CI 与下方沙箱通道。

沙箱验证可以补齐剩下的行为性主张:@qwen-code /verify —— 在 head 上端到端证明手动名称确实能跨 /clear 保留。此前的 A/B 承载性证明跑在第 3 轮 head(f99837bd)上;第 4–5 轮重构了恢复路径的读取,行为保证不会自动延续到 cdbca33b51

Qwen Code · qwen3.8-max

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

@qwen-code-ci-bot

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

Copy link
Copy Markdown
Collaborator

Confidence: 3/5 — the code itself would score higher: all three round-5 findings are verifiably fixed at this head with regression tests that actually pin them, and six rounds have worn the design down to the minimal fix. What keeps this at 3 is not code — it is one human-gated contract decision that a bot must not make, and a primary CI gate that had not finished when this pass ran.

Stepping back: this is the cleanest this PR has ever been. My independent read of the problem — persist title provenance as a tuple, restore it before attach on every cold path, carry a manual name across /clear client-side, invalidate on any competing intent — is exactly what the diff does, and I found no simpler path that survives the restore matrix (cold routes, ACP dispatch, branch, keepalive, live coordinator, sub-session, WebUI reconnect). The round-5 fixes are the right kind: case-corrected storage ids at both read sites, asserted at the wire, mutation-shaped. R4-1's no-op predates this PR, so nothing here regresses main; it is a gap in the new titleSource surface, real but bounded.

Why defer instead of approve, plainly:

  1. R4-1 is a public-contract decision, and it is unresolved. Honouring a titleSource-only metadata update in the bridge vs 400-rejecting a displayName-less PATCH both change the public daemon API. The author — a maintainer — explicitly left this human-gated across both review threads, and no maintainer has ruled yet. Approving now would let that decision be made by default (keep the silent no-op), which is exactly the outcome the finding warns about.
  2. The evidence is not complete on this head. Test (ubuntu-latest, Node 22.x) was still running at fetch time for a six-package, ~512-production-line change touching core session storage, and the behavioural guarantee from the earlier A/B verify belongs to the round-3 head, not this one. The Live Host red is pre-existing noise from today's feat(review): post --comment reviews to Aone Code via the a1 CLI #9491 desktop import — not this PR's fault, but a maintainer should confirm it won't sit on the merge queue.

⏸️ Deferring to @wenshao — two human calls are needed: (a) the R4-1 daemon-contract choice above, and (b) confirming the Live Host lockfile failure (owned by #9491's import) should not block this PR once the unit suite lands green. Once R4-1 is decided and CI is green on the reviewed head, re-run @qwen-code /triage — on everything I could verify, this is ready to approve at that point.

中文说明

退一步看:这是这个 PR 历轮以来状态最好的一次。我对问题的独立方案——把标题与来源作为元组持久化、在每条冷恢复路径上于 attach 前恢复、客户端在 /clear 时继承 manual 名称、任何竞争意图都使其失效——与 diff 完全一致,且我找不到能穿过恢复矩阵(冷恢复路由、ACP dispatch、branch、keepalive、live coordinator、sub-session、WebUI 重连)的更简路径。第 5 轮的修复是正确的形态:两处读取点使用大小写校正后的 storage id,在 wire 层断言,具备 mutation 形状。R4-1 的 no-op 早于本 PR,因此本 PR 没有让 main 回归;它是新 titleSource 面上的缺口,真实但有限。

为什么 defer 而不是批准,直说:

  1. **R4-1 是公开契约决策,且尚未解决。**bridge 接受仅 titleSource 的元数据更新,或对无 displayName 的 PATCH 返回 400——两者都改变公开 daemon API。作者(维护者)已在两条审查线程中明确将其留给人工决策,目前尚无维护者拍板。此时批准等于让该决策以默认方式(保留静默 no-op)落地——正是该发现所警告的结果。
  2. **本 head 上的证据尚不完整。**获取时 Test (ubuntu-latest, Node 22.x) 仍在运行——对一个跨 6 个包、约 512 行生产改动且触及 core 会话存储的 PR 而言不能省略;且此前 A/B verify 的行为保证属于第 3 轮 head,不自动延续到本 head。Live Host 的红色是今天 feat(review): post --comment reviews to Aone Code via the a1 CLI #9491 桌面导入带来的既有噪音——不是本 PR 的问题,但需要维护者确认它不会卡在合并队列上。

⏸️ 转交 @wenshao —— 需要两个人工决策:(a) 上述 R4-1 的 daemon 契约选择;(b) 确认 Live Host 的 lockfile 失败(归 #9491 的导入)在单元测试全绿后不阻塞本 PR。R4-1 决策且被审 head 上 CI 全绿后,重跑 @qwen-code /triage——按我能验证的一切,届时可以批准。

Qwen Code · qwen3.8-max

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

@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.

Requesting changes — the branch carries an accidental revert, not just the fix.

Every production file at head matches the pre-#8817 checkout byte-for-byte except the small intended hunks (verified by direct comparison): merging would roll back #8817 "fork from any conversation" and #9180 "composer text attachments" (both merged yesterday) plus part of #9052, and strip the admission-time branch/rewind guards. The revert is also silent at runtime — atRecordId is still accepted upstream and dropped in the bridge. CI confirms: tsc --build fails on the stale bridge.ts (TS2322, bridge.ts:8645) across every job that builds.

The ~90 lines implementing the /clear name carry-over are good and worth keeping. Please recreate the branch from current main with only those hunks (details in my Stage 2 comment) and I'll re-review. 🙏


请求修改 —— 该分支携带的是意外回滚,而不仅是修复。

head 上的每个生产文件除小块预期改动外,与 #8817 之前的检出逐字节一致(已直接比对验证):合并将回滚 #8817"从任意对话 fork"与 #9180"输入框文本附件"(均为昨天合并)外加 #9052 的一部分,并移除 branch/rewind 的准入期保护。回滚在运行时还是静默的 —— 上游仍接受 atRecordId,在 bridge 层被丢弃。CI 证实:过期的 bridge.ts 导致 tsc --build 在所有构建 job 中失败(TS2322,bridge.ts:8645)。

实现 /clear 名称继承的约 90 行是好的、值得保留。请基于当前 main 重建分支、只携带这些改动块(详见我的 Stage 2 评论),我会重新审查。🙏

yiliang114 and others added 2 commits August 16, 2026 09:35
The branch rework deleted the persisted-only branch path (branchSession
now always restores or throws), but its return type still carried the
persisted-only union member. createSideTaskSession destructures the
union and returns the rest, which the persisted member left short of
BridgeRestoredSession's fields — the TS2322 that failed CI at
bridge.ts:8645. Collapse the union to BridgeBranchedSession (the only
shape the implementation can produce; the removed type had no
consumers) so the side-task handler typechecks again.
The branch rework left dangling references that broke the webui build:
- DaemonPromptFile was deleted from types.ts but still re-exported by
  session/index.ts, daemon/index.ts, daemon-react-sdk.ts and imported
  by promptContent.ts; complete the removal (the files attachment path
  has no remaining caller) and drop the file-token/resource logic plus
  its now-obsolete tests
- branchSession's checkpoint arg and switchStarted field are gone;
  update the two DaemonSessionProvider tests to the new
  (name?) => {sessionId, displayName} contract
- restore the branchInFlight concurrency guard the rewrite dropped:
  without it a concurrent branchSession no longer rejects with
  InvalidStateError (pinned by the existing concurrent-branch test),
  and the declaration was removed along with its usages

webui vite build green; 276 + 443 + 17 tests green; eslint clean.
@yiliang114
yiliang114 marked this pull request as draft August 16, 2026 10:54
@yiliang114

Copy link
Copy Markdown
Collaborator Author

Closeout summary: restored the PR body to the repository template, including Risk & Scope, Linked Issues, and the Chinese details section. No code changes were made in this pass.

…eline (#8977)

CI failed on four type errors after the webui submit path lost file
attachments:
- handleEditorSubmit now accepts the composer's files argument in
  position and drops it (the pipeline past the composer no longer
  carries files)
- the two rawEnqueuePrompt calls pass an explicit undefined files slot
  so onComplete/inputAnnotations land in their own positions
- the queued-prompt submit no longer forwards files (SubmitPromptOptions
  has no such field anymore); queued prompts keep files for edit/restore
- App.test.tsx direct onSubmit calls updated to the new positions

Composer DOM/mobile and queued-prompt suites pin the composer contract
with files in position 3, so the files parameter stays in the
ChatEditor/useComposerCore signature; the files stop at the App
boundary. 443 + 89 tests green, eslint clean.
@qwen-code-ci-bot

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

Copy link
Copy Markdown
Collaborator

🖼️ web-shell visual preview

Rendered against a mock daemon (no real backend): the PR base vs this PR head c2093f5. Only screenshots that changed are shown (flows below, if any, are head-only) — refreshes on every push.

Screenshots · before / after

⚠️ No preview: one or more scenarios failed to render on this head — see the workflow run. This is not "no visual change" — a scenario that times out or throws produces no image. Fix the failing scenario (or a genuine regression it caught) and the preview returns on the next push.

Full-resolution recordings (.webm) are attached to the workflow run.

Qwen Code · web-shell visuals

@github-actions

github-actions Bot commented Aug 16, 2026

Copy link
Copy Markdown
Contributor

Code Coverage Summary

Package Lines Statements Functions Branches
CLI 85.34% 85.34% 90.67% 84.35%
Core 88.5% 88.5% 90.23% 86.98%
CLI Package - Full Text Report
-------------------|---------|----------|---------|---------|-------------------
File               | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s 
-------------------|---------|----------|---------|---------|-------------------
All files          |   85.34 |    84.35 |   90.67 |   85.34 |                   
 src               |   85.82 |    81.89 |   88.03 |   85.82 |                   
  cli.ts           |   95.68 |    84.11 |     100 |   95.68 | ...60-561,565-566 
  gemini.tsx       |   73.34 |    78.04 |   80.76 |   73.34 | ...1336-1340,1467 
  ...ractiveCli.ts |   88.26 |    82.64 |   88.88 |   88.26 | ...3135,3141,3207 
  ...liCommands.ts |   88.93 |    83.21 |      80 |   88.93 | ...97-599,615,721 
  ...ActiveAuth.ts |     100 |     87.5 |     100 |     100 | 66-80             
 ...cp-integration |   73.52 |    76.28 |   93.17 |   73.52 |                   
  acpAgent.ts      |    72.4 |    75.98 |   92.27 |    72.4 | ...90,12301,12347 
  ...k-reporter.ts |     100 |       80 |     100 |     100 | 81,84,119,141     
  authMethods.ts   |      92 |       60 |     100 |      92 | 33-34             
  ...heap-probe.ts |   97.39 |    96.66 |     100 |   97.39 | 243,264-265       
  errorCodes.ts    |     100 |      100 |     100 |     100 |                   
  ...ion-skills.ts |     100 |    88.23 |     100 |     100 | 17,32             
  generation.ts    |    97.1 |    81.25 |     100 |    97.1 | 109,112           
  ...figuration.ts |     100 |     91.3 |     100 |     100 | 73,124            
  ...DirContext.ts |     100 |      100 |     100 |     100 |                   
  ...ersistence.ts |   94.95 |    92.24 |     100 |   94.95 | ...13-118,227-228 
  ...management.ts |   74.75 |     66.3 |     100 |   74.75 | ...92-496,505-509 
  ...e-download.ts |    64.7 |    62.24 |    87.5 |    64.7 | ...08-609,615-619 
 ...tegration/live |    97.5 |       88 |   92.85 |    97.5 |                   
  ...en-context.ts |   95.74 |    82.35 |     100 |   95.74 | ...0,66-67,99-100 
  ...structions.ts |     100 |      100 |     100 |     100 |                   
  ...ak-to-user.ts |   96.66 |      100 |    87.5 |   96.66 | 37-38             
  ...task-tools.ts |   98.97 |      100 |   88.88 |   98.97 | 201-202           
 ...ration/service |    97.1 |    95.89 |   93.75 |    97.1 |                   
  filesystem.ts    |    97.1 |    95.89 |   93.75 |    97.1 | ...22-123,246-247 
 ...ration/session |   91.05 |    86.57 |   95.75 |   91.05 |                   
  Session.ts       |    90.4 |    85.32 |   95.13 |    90.4 | ...50,12677-12681 
  ...entTracker.ts |   96.81 |    89.36 |      90 |   96.81 | 137-143,222       
  ...projection.ts |   98.85 |    91.59 |     100 |   98.85 | 234,250,262       
  ...stop-guard.ts |     100 |    98.07 |     100 |     100 | 37,127            
  ...eplay-page.ts |   94.16 |    86.36 |     100 |   94.16 | ...43,347,427,431 
  ...y-replayer.ts |   83.41 |    93.22 |   94.11 |   83.41 | ...29-147,265-267 
  index.ts         |       0 |        0 |       0 |       0 | 1-40              
  ...ssionUtils.ts |   89.76 |    87.32 |     100 |   89.76 | ...54-270,326-328 
  ...oal-update.ts |   98.61 |    97.29 |     100 |   98.61 | 64                
  ...lure-guard.ts |   98.32 |    97.72 |     100 |   98.32 | 294-295,340-341   
  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.62 |    92.73 |   97.05 |   95.62 |                   
  ...ageEmitter.ts |   95.25 |    93.54 |     100 |   95.25 | ...08-115,128-129 
  PlanEmitter.ts   |     100 |       90 |     100 |     100 | 66                
  base-emitter.ts  |   78.26 |    77.77 |     100 |   78.26 | 23-24,26-28       
  index.ts         |       0 |        0 |       0 |       0 | 1-10              
  ...ll-emitter.ts |   98.57 |    94.84 |     100 |   98.57 | 75-76,394-395     
 ...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 |    81.59 |   91.53 |      89 |                   
  attach-lease.ts  |     100 |    96.96 |     100 |     100 | 173               
  ...t-cli-argv.ts |     100 |      100 |     100 |     100 |                   
  ...ged-detach.ts |     100 |     90.9 |     100 |     100 | 40,64             
  protocol.ts      |     100 |      100 |     100 |     100 |                   
  pty-host-env.ts  |     100 |      100 |     100 |     100 |                   
  ...st-process.ts |   87.99 |     77.6 |   94.28 |   87.99 | ...1219,1309-1311 
  pty-host.ts      |   84.51 |    85.04 |   90.69 |   84.51 | ...14-516,531-532 
  ...sor-client.ts |   80.38 |    72.81 |   77.41 |   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.54 |   83.33 |   93.98 | 228-238           
  ...r-sideband.ts |   95.37 |    86.44 |     100 |   95.37 | 203-204,228-233   
 src/commands      |   90.66 |    78.53 |   65.62 |   90.66 |                   
  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.85 |      100 |      50 |   98.85 | 98                
  serve.ts         |   89.46 |    76.02 |     100 |   89.46 | ...12-915,927,938 
  sessions.ts      |     100 |      100 |      50 |     100 |                   
  update.ts        |   98.13 |    94.44 |   66.66 |   98.13 | 82-83             
 ...mmands/channel |   89.06 |    88.57 |   90.64 |   89.06 |                   
  channel-cwd.ts   |     100 |      100 |     100 |     100 |                   
  ...l-registry.ts |   94.88 |    95.49 |      90 |   94.88 | ...20-323,368-371 
  ...entry-path.ts |      75 |       50 |     100 |      75 | 8-9               
  config-utils.ts  |   95.83 |    96.35 |     100 |   95.83 | ...03-208,266-269 
  configure.ts     |    14.7 |      100 |       0 |    14.7 | 18-21,23-84       
  daemon-worker.ts |   93.91 |    85.61 |   94.33 |   93.91 | ...1264,1271-1272 
  loop-runtime.ts  |   91.66 |      100 |      50 |   91.66 | 15,22             
  ...classifier.ts |   98.53 |    96.66 |     100 |   98.53 | 115-116,161       
  ...tact-store.ts |   93.51 |    87.65 |     100 |   93.51 | ...71,288-289,337 
  pairing.ts       |      75 |      100 |      50 |      75 | 22-28,59-70       
  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.85 |    87.91 |   87.09 |   88.85 |                   
  consent.ts       |   72.53 |    90.32 |   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.63 |    57.14 |     100 |   75.63 | ...30-134,136-140 
 ...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.25 |    84.61 |   83.33 |   90.25 |                   
  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.9 |    84.84 |      80 |    92.9 | ...79-181,199-200 
  reconnect.ts     |   78.85 |    66.66 |   85.71 |   78.85 | 42-55,169-191     
  remove.ts        |     100 |       80 |     100 |     100 | 21-25             
 ...ommands/review |   91.63 |       90 |   92.84 |   91.63 |                   
  agent-prompt.ts  |   94.89 |    92.99 |   97.95 |   94.89 | ...3286,3621-3701 
  base-tree.ts     |   77.02 |    80.76 |   77.77 |   77.02 | ...63-384,386-399 
  capture-local.ts |   73.58 |     90.9 |      75 |   73.58 | 112-116,163-186   
  ...k-coverage.ts |   50.71 |       35 |   66.66 |   50.71 | ...40-245,279-289 
  cleanup.ts       |   92.18 |    89.69 |    90.9 |   92.18 | ...1061,1063-1064 
  comment-body.ts  |   67.85 |    87.09 |   66.66 |   67.85 | ...30,157,159-164 
  ...ent-status.ts |   94.22 |    87.32 |    90.9 |   94.22 | ...96,462,738-758 
  ...ose-review.ts |   97.11 |    93.74 |   98.52 |   97.11 | ...5378-5422,5697 
  cost-ledger.ts   |   94.58 |     94.4 |   81.25 |   94.58 | ...53-654,694-704 
  drive.ts         |    94.1 |    92.85 |   92.85 |    94.1 | ...80-782,787-789 
  extract-step.ts  |   91.36 |    90.62 |   88.88 |   91.36 | ...90-707,714-729 
  fetch-diff.ts    |   73.75 |      100 |   66.66 |   73.75 | 77-97             
  fetch-pr.ts      |   97.24 |    92.05 |     100 |   97.24 | ...1548,1705-1710 
  findings.ts      |   96.02 |    92.15 |     100 |   96.02 | ...1249,1258-1259 
  issue-context.ts |   88.15 |     93.1 |   85.71 |   88.15 | 249-276           
  load-rules.ts    |   26.41 |      100 |   16.66 |   26.41 | ...41-153,155-156 
  match-remote.ts  |   85.55 |     92.3 |   66.66 |   85.55 | 74-79,144-150     
  meta.ts          |   79.43 |    93.75 |   66.66 |   79.43 | 123-128,147-162   
  mock-provider.ts |   95.44 |    90.25 |   89.47 |   95.44 | 145,690-709       
  parse-args.ts    |   99.49 |    95.66 |     100 |   99.49 | 585,856,912       
  plan-diff.ts     |   71.42 |      100 |   66.66 |   71.42 | 162-197           
  pr-context.ts    |   96.03 |    87.58 |     100 |   96.03 | ...2233,2333-2349 
  presubmit.ts     |   94.32 |    90.83 |   94.11 |   94.32 | ...1214,1249-1280 
  ...ish-assets.ts |    81.3 |    82.22 |   85.71 |    81.3 | ...75-479,506-552 
  ...r-findings.ts |   90.74 |    83.75 |     100 |   90.74 | ...17-422,429-430 
  repo-context.ts  |   94.62 |    90.75 |     100 |   94.62 | ...66-467,482-487 
  ...ve-anchors.ts |   78.34 |    89.28 |      75 |   78.34 | ...83-188,200-217 
  run.ts           |   82.66 |    88.54 |   94.11 |   82.66 | ...22,638-692,706 
  save-artifact.ts |    93.7 |    91.66 |   94.11 |    93.7 | ...71-574,667-670 
  scratch-tree.ts  |   95.93 |       86 |     100 |   95.93 | ...91-392,461-464 
  script-lint.ts   |   83.78 |    78.57 |   88.88 |   83.78 | ...69-783,785-807 
  submit.ts        |   94.11 |    89.38 |   94.44 |   94.11 | ...1673,1701-1738 
  test-delta.ts    |    86.4 |       92 |      60 |    86.4 | 177-208,471-479   
  test-efficacy.ts |   85.62 |    81.26 |      96 |   85.62 | ...3120,3128-3148 
  test-plan.ts     |   94.61 |    91.79 |      95 |   94.61 | ...29-832,873-874 
 ...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 |   97.37 |     94.8 |   98.75 |   97.37 |                   
  agent-briefs.ts  |   99.08 |      100 |      50 |   99.08 | 821-822           
  ...t-identity.ts |     100 |      100 |     100 |     100 |                   
  anchors.ts       |     100 |    97.04 |     100 |     100 | ...39,175,184,231 
  assets.ts        |     100 |      100 |     100 |     100 |                   
  audit-layers.ts  |   98.67 |    96.15 |     100 |   98.67 | 288-290           
  authorization.ts |   93.48 |    93.45 |     100 |   93.48 | ...79-385,583-584 
  budget.ts        |     100 |    97.95 |     100 |     100 | 887,940           
  build-budget.ts  |     100 |      100 |     100 |     100 |                   
  certification.ts |     100 |      100 |     100 |     100 |                   
  convergence.ts   |   99.46 |    97.17 |    90.9 |   99.46 | 590,808           
  coverage.ts      |   98.97 |    95.11 |     100 |   98.97 | ...1103,1648-1649 
  deadline.ts      |   98.03 |    91.66 |     100 |   98.03 | ...20,752,820,837 
  diff-flags.ts    |     100 |        0 |     100 |     100 | 75                
  diff-plan.ts     |   98.77 |    93.26 |     100 |   98.77 | ...78,301,327-328 
  disk.ts          |     100 |      100 |     100 |     100 |                   
  effort.ts        |     100 |      100 |     100 |     100 |                   
  failing-files.ts |     100 |    93.33 |     100 |     100 | 41                
  gh.ts            |   89.53 |    95.52 |   78.94 |   89.53 | ...47,384-385,412 
  git.ts           |   96.77 |    93.93 |     100 |   96.77 | 234-235,272-273   
  heavy.ts         |     100 |      100 |     100 |     100 |                   
  import-graph.ts  |   96.68 |     95.4 |     100 |   96.68 | 180-182,211-212   
  ...ntal-scope.ts |     100 |      100 |     100 |     100 |                   
  inline-counts.ts |     100 |      100 |     100 |     100 |                   
  ...audit-gate.ts |     100 |     97.5 |     100 |     100 | 135               
  ledger.ts        |     100 |      100 |     100 |     100 |                   
  local-diff.ts    |   84.86 |    90.38 |     100 |   84.86 | ...63-473,475-483 
  ...ry-context.ts |   96.61 |    95.48 |     100 |   96.61 | ...47-450,496-499 
  md-field.ts      |     100 |      100 |     100 |     100 |                   
  merge-base.ts    |     100 |      100 |     100 |     100 |                   
  narrow-diff.ts   |     100 |      100 |     100 |     100 |                   
  npm-toolchain.ts |   98.23 |    95.29 |     100 |   98.23 | ...,819,1200,1217 
  path-rules.ts    |     100 |      100 |     100 |     100 |                   
  paths.ts         |   96.96 |       95 |     100 |   96.96 | 32-33             
  prompt-record.ts |   98.03 |    94.23 |     100 |   98.03 | 293-294,300       
  receipt.ts       |     100 |      100 |     100 |     100 |                   
  remote-match.ts  |   98.03 |    94.73 |     100 |   98.03 | 109-110           
  report.ts        |   92.92 |    86.66 |     100 |   92.92 | 213-214,216-220   
  ...ry-context.ts |     100 |    98.66 |     100 |     100 | 187               
  resume.ts        |     100 |      100 |     100 |     100 |                   
  retirement.ts    |     100 |    94.36 |     100 |     100 | ...58-559,760,917 
  review-footer.ts |   99.55 |     98.1 |     100 |   99.55 | 548-549           
  ...w-settings.ts |     100 |    94.73 |     100 |     100 | 79                
  roster.ts        |     100 |    97.14 |     100 |     100 | 177,222           
  round-model.ts   |     100 |      100 |     100 |     100 |                   
  run-ledger.ts    |    98.2 |    93.87 |     100 |    98.2 | ...23,541,647,670 
  same-file.ts     |     100 |    94.11 |     100 |     100 | 35                
  shell-quote.ts   |     100 |      100 |     100 |     100 |                   
  stale-bundle.ts  |   98.18 |    94.04 |     100 |   98.18 | 431,472,512-513   
  test-utils.ts    |     100 |      100 |     100 |     100 |                   
  toolchain.ts     |     100 |      100 |     100 |     100 |                   
  transcripts.ts   |   98.09 |    95.07 |     100 |   98.09 | ...92,438,707-708 
  ...pace-scope.ts |     100 |    96.96 |     100 |     100 | 186               
  workspaces.ts    |     100 |    96.85 |     100 |     100 | 222,452,499,512   
  ...ree-reader.ts |     100 |      100 |     100 |     100 |                   
  worktree.ts      |   89.39 |    81.78 |     100 |   89.39 | ...1813-1814,1827 
 ...w/lib/platform |   94.71 |    87.89 |   97.05 |   94.71 |                   
  aone-client.ts   |   94.94 |     87.3 |     100 |   94.94 | ...92-293,299-302 
  aone.ts          |   93.06 |    89.86 |   94.73 |   93.06 | ...34,598-603,655 
  github.ts        |   99.08 |     75.8 |     100 |   99.08 | 249-250           
  registry.ts      |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...mands/sessions |   94.11 |    90.62 |   89.47 |   94.11 |                   
  common.ts        |     100 |      100 |     100 |     100 |                   
  list.ts          |   90.96 |    88.88 |   81.81 |   90.96 | 213-224,226-227   
  ps.ts            |     100 |    94.44 |     100 |     100 | 58                
 src/config        |   94.29 |    90.26 |   95.01 |   94.29 |                   
  ...l-fallback.ts |     100 |      100 |     100 |     100 |                   
  auth.ts          |   93.36 |    88.37 |     100 |   93.36 | ...06-307,330-331 
  ...eMcpImport.ts |   87.91 |    81.52 |     100 |   87.91 | ...63-371,453-454 
  compile-cache.ts |     100 |      100 |     100 |     100 |                   
  config.ts        |   89.37 |    89.89 |   83.78 |   89.37 | ...2497,2499-2507 
  ...cy-monitor.ts |      90 |    77.27 |     100 |      90 | ...72-73,90-92,98 
  ...ust-policy.ts |   83.02 |    88.88 |     100 |   83.02 | ...02-209,232-240 
  ...heme-names.ts |     100 |      100 |     100 |     100 |                   
  ...ScopeUtils.ts |   97.56 |    88.88 |     100 |   97.56 | 67                
  environment.ts   |    96.5 |    93.51 |      95 |    96.5 | ...85-586,640-641 
  ...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.4 |       50 |     100 |    97.4 | 240-243           
  ...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.96 |     100 |   98.97 | 85                
  mcpApprovals.ts  |   78.57 |       92 |   86.66 |   78.57 | ...18-319,324-326 
  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.93 |     100 |   99.15 | 63                
  sandboxConfig.ts |   93.33 |    93.33 |     100 |   93.33 | ...42-147,216-217 
  session-id.ts    |     100 |      100 |     100 |     100 |                   
  ...ings-cache.ts |   96.52 |    93.93 |     100 |   96.52 | 90-91,201-202     
  settings.ts      |   91.16 |    92.71 |      90 |   91.16 | ...1027,1029-1030 
  ...ingsSchema.ts |     100 |      100 |     100 |     100 |                   
  settingsUtils.ts |   80.82 |     89.2 |   85.18 |   80.82 | ...85-603,610-618 
  ...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 
  ...precedence.ts |   98.79 |     92.3 |     100 |   98.79 | 62                
  ...tedFolders.ts |   92.53 |    93.54 |     100 |   92.53 | ...36-337,373-384 
 ...nfig/migration |   95.23 |    78.94 |   85.71 |   95.23 |                   
  index.ts         |   95.65 |     87.5 |     100 |   95.65 | 117-118           
  scheduler.ts     |   96.55 |       80 |     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    |   75.08 |    67.64 |   71.42 |   75.08 |                   
  ...tputBridge.ts |   75.33 |    68.18 |   73.68 |   75.33 | ...09-410,418-421 
  ...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          |   89.68 |    88.66 |   93.02 |   89.68 |                   
  index.ts         |   73.45 |    77.77 |      90 |   73.45 | ...70-271,294-299 
  languageUtils.ts |   98.88 |    97.01 |     100 |   98.88 | 184-185           
  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 |   87.37 |    83.73 |   89.32 |   87.37 |                   
  ...ng-failure.ts |     100 |      100 |     100 |     100 |                   
  ...iveHelpers.ts |   94.95 |    91.05 |     100 |   94.95 | ...30-431,529,542 
  ...uggestions.ts |   84.29 |    70.83 |     100 |   84.29 | 70-76,92-103      
  session.ts       |   84.97 |    76.31 |   96.07 |   84.97 | ...1048,1057-1067 
  ...iagnostics.ts |    95.8 |     87.5 |   93.75 |    95.8 | ...03,277-278,289 
  types.ts         |    42.5 |      100 |   33.33 |    42.5 | ...33-634,637-638 
 ...active/control |   75.54 |    89.83 |      80 |   75.54 |                   
  ...rolContext.ts |    6.06 |        0 |       0 |    6.06 | 57-99             
  ...Dispatcher.ts |   91.95 |    92.98 |   88.88 |   91.95 | ...54-372,392,395 
  ...rolService.ts |    6.89 |        0 |       0 |    6.89 | 46-188            
 ...ol/controllers |   57.47 |     66.3 |   73.68 |   57.47 |                   
  ...Controller.ts |    42.4 |      100 |   83.33 |    42.4 | 101-105,140-223   
  ...Controller.ts |       0 |        0 |       0 |       0 | 1-56              
  ...Controller.ts |   70.04 |    62.92 |   91.66 |   70.04 | ...11-620,635-640 
  ...Controller.ts |   49.23 |       60 |      50 |   49.23 | ...07-108,111-121 
  ...Controller.ts |   53.96 |    67.08 |   66.66 |   53.96 | ...78-690,699-728 
 .../control/types |       0 |        0 |       0 |       0 |                   
  serviceAPIs.ts   |       0 |        0 |       0 |       0 | 1                 
 ...Interactive/io |   98.18 |    94.09 |   95.34 |   98.18 |                   
  ...putAdapter.ts |   98.07 |    93.18 |   98.11 |   98.07 | ...1448,1464-1465 
  ...putAdapter.ts |   96.22 |    91.66 |   85.71 |   96.22 | 52-53             
  ...nputReader.ts |     100 |    94.73 |     100 |     100 | 67                
  ...putAdapter.ts |   98.51 |      100 |   90.47 |   98.51 | 90-91,131-132     
  ...projection.ts |     100 |      100 |     100 |     100 |                   
  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.69 |    96.28 |     100 |   99.69 |                   
  ...livery-ipc.ts |     100 |    91.17 |     100 |     100 | 94,106,134        
  ...l-delivery.ts |     100 |      100 |     100 |     100 |                   
  cpu-percent.ts   |     100 |      100 |     100 |     100 |                   
  ...ion-source.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.25 |    84.45 |    90.8 |   87.25 |                   
  ...extra-args.ts |     100 |      100 |     100 |     100 |                   
  ...tp-enabled.ts |     100 |      100 |     100 |     100 |                   
  ...ion-bridge.ts |     100 |      100 |     100 |     100 |                   
  auth.ts          |   93.99 |     91.5 |     100 |   93.99 | ...29-430,433-435 
  ...em-adapter.ts |     100 |      100 |     100 |     100 |                   
  capabilities.ts  |     100 |    98.07 |     100 |     100 | 702               
  ...cp-command.ts |     100 |      100 |     100 |     100 |                   
  ...horization.ts |   92.79 |    93.54 |    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 |    94.1 |    86.98 |     100 |    94.1 | ...75-477,484,486 
  ...-selection.ts |     100 |      100 |     100 |     100 |                   
  ...ings-store.ts |   89.64 |    94.16 |   96.55 |   89.64 | ...57-269,521-524 
  ...ebhook-ipc.ts |    98.5 |     87.5 |     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 
  ...horization.ts |     100 |      100 |     100 |     100 |                   
  ...tartup-ipc.ts |   97.72 |    96.66 |     100 |   97.72 | 88-89             
  ...supervisor.ts |   92.54 |    84.53 |   97.14 |   92.54 | ...1489,1543-1547 
  ...e-grouping.ts |     100 |    94.28 |     100 |     100 | 71,137            
  core-runtime.ts  |     100 |      100 |     100 |     100 |                   
  ...ub-session.ts |   90.88 |    78.75 |   94.73 |   90.88 | ...1029,1050-1055 
  ...tree-guard.ts |   92.89 |    87.55 |     100 |   92.89 | ...2766,2836-2840 
  daemon-logger.ts |   82.82 |    78.68 |   92.04 |   82.82 | ...1775,1802-1808 
  ...y-pressure.ts |     100 |    96.96 |     100 |     100 | 135               
  ...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.69 |    91.96 |     100 |   98.69 | ...1590,1592-1593 
  debug-mode.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 |    87.09 |     100 |   92.06 | ...72,287-293,316 
  ...h-settings.ts |   94.94 |    90.45 |     100 |   94.94 | ...30,708,724,734 
  fast-path.ts     |   91.38 |       82 |   95.45 |   91.38 | ...46-555,633-634 
  ...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-149             
  ...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 
  ...pp-sandbox.ts |   96.72 |    95.23 |     100 |   96.72 | 41-42             
  ...iders-edit.ts |     100 |    82.14 |     100 |     100 | 58-60,65,81       
  ...ory-picker.ts |     100 |    86.95 |     100 |     100 | 36,66,92          
  ...-with-auth.ts |     100 |      100 |     100 |     100 |                   
  ...sion-audit.ts |     100 |      100 |   93.33 |     100 |                   
  ...nal-ledger.ts |    94.9 |     85.1 |     100 |    94.9 | ...81,302,361-362 
  rate-limit.ts    |   92.68 |    88.29 |     100 |   92.68 | ...89-291,303-305 
  ...qwen-serve.ts |   84.05 |    80.69 |   76.06 |   84.05 | ...7998,8016-8020 
  ...tup-errors.ts |     100 |      100 |     100 |     100 |                   
  sandbox.ts       |   45.52 |    59.42 |   76.92 |   45.52 | ...1050,1062-1085 
  ...-keepalive.ts |   94.38 |    88.28 |     100 |   94.38 | ...45,549-550,590 
  ...-lifecycle.ts |     100 |      100 |     100 |     100 |                   
  ...-lifecycle.ts |   89.16 |    90.29 |   86.95 |   89.16 | ...24-325,330-334 
  serve-token.ts   |     100 |      100 |     100 |     100 |                   
  server.ts        |   91.16 |    90.45 |   71.42 |   91.16 | ...3012,3042-3043 
  ...-admission.ts |   99.13 |    95.94 |     100 |   99.13 | 308-309           
  ...on-helpers.ts |     100 |      100 |     100 |     100 |                   
  ...tore-title.ts |     100 |      100 |     100 |     100 |                   
  ...-redaction.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.72 |    77.93 |     100 |   93.72 | ...51,854,867-869 
  ...l-resolver.ts |   90.32 |    66.66 |     100 |   90.32 | 16,45-46          
  ...ell-static.ts |   93.45 |    86.88 |     100 |   93.45 | ...77-280,323-326 
  ...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.6 |     79.8 |     100 |    98.6 | 108,136,179,182   
  ...tion-store.ts |   89.67 |    88.27 |   92.59 |   89.67 | ...91-400,411-414 
  ...e-registry.ts |   94.98 |    90.55 |     100 |   94.98 | ...67-568,575-576 
  ...e-remember.ts |   98.23 |    92.56 |     100 |   98.23 | ...36,340-345,386 
  ...te-runtime.ts |    89.4 |    90.55 |     100 |    89.4 | ...89-190,258-279 
  ...me-storage.ts |     100 |      100 |     100 |     100 |                   
  ...visibility.ts |     100 |      100 |     100 |     100 |                   
  ...management.ts |   72.63 |    72.83 |   96.15 |   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 |   80.36 |    80.22 |    94.5 |   80.36 |                   
  ...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 |   93.03 |    84.13 |   98.52 |   93.03 | ...1624,1671-1682 
  dispatch.ts      |   75.56 |    77.21 |   93.33 |   75.56 | ...5522,5579-5585 
  index.ts         |   82.68 |    79.74 |   91.22 |   82.68 | ...2424,2510-2511 
  json-rpc.ts      |     100 |    96.96 |     100 |     100 | 92                
  ...ach-budget.ts |     100 |      100 |     100 |     100 |                   
  safe-ws-send.ts  |   52.94 |    71.42 |     100 |   52.94 | 33-42,47-55       
  sse-stream.ts    |   98.26 |    88.75 |     100 |   98.26 | 87-88,117         
  ...ort-stream.ts |       0 |        0 |       0 |       0 | 1                 
  ws-stream.ts     |   94.06 |    89.09 |     100 |   94.06 | 50,55,134,138-141 
 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             
 .../conversations |   90.17 |    85.32 |      95 |   90.17 |                   
  ...e-activity.ts |     100 |      100 |     100 |     100 |                   
  ...ime-errors.ts |     100 |      100 |     100 |     100 |                   
  ...me-manager.ts |     100 |      100 |     100 |     100 |                   
  ...-ownership.ts |   87.33 |    83.58 |   88.46 |   87.33 | ...57-558,601-602 
  ...-workspace.ts |   89.09 |    78.66 |     100 |   89.09 | ...91-292,339-340 
 src/serve/fs      |   87.77 |    82.34 |     100 |   87.77 |                   
  audit.ts         |     100 |    96.29 |     100 |     100 | 211               
  errors.ts        |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...x-registry.ts |     100 |      100 |     100 |     100 |                   
  paths.ts         |   77.64 |    74.01 |     100 |   77.64 | ...65,594-598,611 
  policy.ts        |   90.52 |    89.18 |     100 |   90.52 | 172-180           
  text-cursor.ts   |   88.23 |       90 |     100 |   88.23 | 74-77,92-95       
  ...ile-system.ts |   88.02 |    81.85 |     100 |   88.02 | ...3027,3037-3038 
 src/serve/live    |   77.25 |     70.5 |   90.46 |   77.25 |                   
  discovery.ts     |   85.89 |    82.05 |    91.3 |   85.89 | ...73-579,592-593 
  ...oordinator.ts |   82.67 |    76.63 |   97.01 |   82.67 | ...1319,1351-1353 
  ...-installer.ts |    64.3 |    82.35 |   80.76 |    64.3 | ...45-446,460-472 
  ...oordinator.ts |   76.77 |    67.47 |   85.71 |   76.77 | ...1890,1981-1982 
  ...controller.ts |   67.82 |    79.66 |      75 |   67.82 | ...66-278,287-295 
  ...sk-service.ts |   87.48 |    65.93 |   95.65 |   87.48 | ...1189-1190,1218 
  ...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.85 |    77.39 |     100 |   94.85 | ...18,327-330,350 
  types.ts         |     100 |      100 |     100 |     100 |                   
 .../local-control |   82.89 |    88.77 |      90 |   82.89 |                   
  credentials.ts   |   96.42 |    95.45 |     100 |   96.42 | 109-110           
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...interfaces.ts |   43.58 |    82.75 |   42.85 |   43.58 | ...09-117,130-142 
  ...r-identity.ts |     100 |    85.71 |     100 |     100 | 61                
  service.ts       |    93.4 |       90 |     100 |    93.4 | ...20-222,313-315 
 src/serve/routes  |   85.91 |    81.06 |   95.27 |   85.91 |                   
  a2ui-action.ts   |   96.84 |     88.5 |    87.5 |   96.84 | ...70-272,309-311 
  capabilities.ts  |   98.73 |    96.15 |     100 |   98.73 | 82                
  ...nel-notify.ts |   79.16 |    85.18 |     100 |   79.16 | ...03-104,120-126 
  ...l-webhooks.ts |   93.56 |    84.09 |     100 |   93.56 | ...42,292,332,334 
  daemon-status.ts |   85.71 |    83.33 |     100 |   85.71 | 101-108           
  goals.ts         |   98.94 |    91.17 |     100 |   98.94 | 143               
  health.ts        |   99.09 |    91.17 |     100 |   99.09 | 147               
  live-setup.ts    |   33.33 |     37.5 |      50 |   33.33 | ...18-123,130-135 
  live.ts          |   84.61 |    76.47 |     100 |   84.61 | ...04,106-111,131 
  permission.ts    |     100 |     92.3 |     100 |     100 | 50,98             
  ...uled-tasks.ts |   87.96 |    85.26 |   93.75 |   87.96 | ...1541,1586-1587 
  ...on-runtime.ts |   91.42 |       90 |     100 |   91.42 | 56-64             
  session.ts       |   86.41 |    82.46 |   93.45 |   86.41 | ...6820,6822-6823 
  sse-events.ts    |   86.85 |    85.64 |   94.11 |   86.85 | ...18-929,932,939 
  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.35 |    78.94 |     100 |   90.35 | ...52-553,576-577 
  ...d-contacts.ts |   83.62 |    94.59 |     100 |   83.62 | 123,125-142       
  ...controller.ts |   83.33 |    80.47 |      90 |   83.33 | ...1056,1061,1068 
  ...extensions.ts |    88.8 |    77.83 |   93.84 |    88.8 | ...2329,2374-2375 
  ...-file-read.ts |      91 |    80.91 |     100 |      91 | ...20-621,624-625 
  ...file-write.ts |   89.72 |    79.35 |     100 |   89.72 | ...05,719-726,807 
  ...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 
  ...al-control.ts |   74.17 |    69.23 |     100 |   74.17 | ...18,220-226,231 
  ...management.ts |   87.47 |       85 |     100 |   87.47 | ...1733,1743-1748 
  ...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.67 |       75 |     100 |   75.67 | ...15-726,732-733 
  ...tup-github.ts |   77.97 |    70.58 |   84.21 |   77.97 | ...46-352,397-398 
  ...ace-skills.ts |    76.9 |    87.15 |     100 |    76.9 | ...29-354,360-394 
  ...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 |   76.92 |     67.1 |      80 |   76.92 | ...38-343,351-352 
  ...pace-voice.ts |   91.33 |    81.02 |     100 |   91.33 | ...70-673,676-678 
 src/serve/server  |   92.75 |    89.98 |   97.22 |   92.75 |                   
  access-log.ts    |   98.73 |    97.26 |     100 |   98.73 | 119,196           
  ...-timestamp.ts |     100 |      100 |     100 |     100 |                   
  ...er-helpers.ts |   63.82 |    78.15 |   81.81 |   63.82 | ...16,330,332-347 
  ...w-registry.ts |    98.8 |    81.81 |     100 |    98.8 | 107               
  ...r-handlers.ts |   97.87 |       80 |     100 |   97.87 | 27                
  ...r-response.ts |   87.73 |    76.19 |     100 |   87.73 | ...97,814,877-886 
  fs-factory.ts    |     100 |    95.52 |     100 |     100 | 77,144,200        
  ...branch-ops.ts |     100 |      100 |     100 |     100 |                   
  ...list-cache.ts |   99.01 |    95.52 |     100 |   99.01 | 184-185           
  ...t-deadline.ts |     100 |      100 |     100 |     100 |                   
  ...iter-setup.ts |      65 |       80 |   33.33 |      65 | 30-35,38-43,47-48 
  ...st-helpers.ts |   95.13 |    95.09 |     100 |   95.13 | ...66-168,423-428 
  self-origin.ts   |   76.19 |       80 |     100 |   76.19 | 45-54             
  ...e-features.ts |      95 |     87.5 |     100 |      95 | 182-188           
  ...on-archive.ts |   91.39 |    87.04 |   97.56 |   91.39 | ...,975,1003-1004 
  ...ion-export.ts |     100 |       95 |     100 |     100 | 64                
  session-list.ts  |      97 |    93.45 |     100 |      97 | ...1068,1273-1277 
  ...ry-context.ts |    87.5 |       50 |     100 |    87.5 | 49-50             
  telemetry.ts     |   99.06 |    97.26 |     100 |   99.06 | ...04,873,952-954 
 src/serve/voice   |    92.7 |    91.53 |   97.72 |    92.7 |                   
  ...ice-config.ts |   84.81 |       30 |     100 |   84.81 | 91-100,104-105    
  voice-ws.ts      |   91.58 |    93.44 |      96 |   91.58 | ...68,483,521-523 
  ...oordinator.ts |     100 |    98.24 |     100 |     100 | 176               
 ...kspace-service |    90.9 |    88.03 |   91.66 |    90.9 |                   
  index.ts         |   90.41 |    87.29 |      90 |   90.41 | ...1505-1509,1512 
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/services      |   92.69 |    89.67 |   98.13 |   92.69 |                   
  ...mandLoader.ts |     100 |       95 |     100 |     100 | 106               
  ...killLoader.ts |   97.19 |    85.71 |     100 |   97.19 | 142,153-154       
  ...andService.ts |   98.73 |      100 |     100 |   98.73 | 107               
  ...mandLoader.ts |   87.09 |    83.07 |     100 |   87.09 | ...35-340,345-350 
  ...omptLoader.ts |   79.55 |    88.42 |   85.71 |   79.55 | ...48,178,245-246 
  ...mandLoader.ts |   97.77 |     92.3 |     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 |   92.14 |    92.42 |     100 |   92.14 | ...91-296,329-330 
  ...low-loader.ts |     100 |    96.29 |     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.77 |     100 |   98.64 | 116,142-143       
  voice-model.ts   |     100 |      100 |     100 |     100 |                   
  voice-service.ts |    90.4 |    87.87 |     100 |    90.4 | ...81,288,353-358 
  ...e-settings.ts |     100 |    95.23 |     100 |     100 | 19                
  ...ranscriber.ts |   91.77 |    87.11 |   97.22 |   91.77 | ...99-901,904-906 
 ...s/housekeeping |      93 |    88.34 |      95 |      93 |                   
  scheduler.ts     |      93 |    88.34 |      95 |      93 | ...57-359,411-415 
 ...rvices/insight |     100 |      100 |     100 |     100 |                   
  dates.ts         |     100 |      100 |     100 |     100 |                   
 ...ght/generators |   88.94 |    86.86 |   96.29 |   88.94 |                   
  DataProcessor.ts |   88.31 |    86.84 |      95 |   88.31 | ...1368,1372-1379 
  ...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.25 |     100 |   97.27 |                   
  ...tProcessor.ts |     100 |      100 |     100 |     100 |                   
  ...eProcessor.ts |   94.52 |       85 |     100 |   94.52 | 46-47,93-94       
  ...tionParser.ts |     100 |      100 |     100 |     100 |                   
  ...lProcessor.ts |   97.41 |    95.83 |     100 |   97.41 | 96-99             
  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            |   70.84 |    77.49 |   72.04 |   70.84 |                   
  App.tsx          |   33.33 |       75 |   33.33 |   33.33 | 32-86             
  AppContainer.tsx |   76.08 |       72 |   69.44 |   76.08 | ...4298,4414-4420 
  ...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        |   63.63 |      100 |   41.17 |   63.63 | ...52,54-55,60-61 
  constants.ts     |     100 |      100 |     100 |     100 |                   
  ...AutoUpdate.ts |   93.54 |    94.64 |      90 |   93.54 | 126,131,202-213   
  keyMatchers.ts   |   95.91 |    97.14 |     100 |   95.91 | 25-26             
  ...tic-colors.ts |     100 |      100 |     100 |     100 |                   
  ...one-update.ts |   39.81 |    77.44 |   62.16 |   39.81 | ...1193,1196-1215 
  ...ractiveUI.tsx |   71.53 |    75.47 |    62.5 |   71.53 | ...11,338,405-410 
  ...inePresets.ts |   96.27 |    83.87 |     100 |   96.27 | ...97,402,410-412 
  systemInfo.ts    |   95.09 |    90.27 |     100 |   95.09 | ...54-255,260-264 
  ...InfoFields.ts |    87.5 |    65.85 |     100 |    87.5 | ...24-125,146-147 
  textConstants.ts |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
  ...e-relaunch.ts |   89.61 |    86.66 |      50 |   89.61 | 56-61,83-84       
 src/ui/auth       |   58.76 |    66.66 |   51.06 |   58.76 |                   
  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.83 |       75 |     100 |   94.83 | ...33-234,253-259 
  ...rSetupFlow.ts |   43.18 |    33.33 |      50 |   43.18 | ...78-399,416-459 
 src/ui/commands   |   84.04 |     84.2 |   91.07 |   84.04 |                   
  aboutCommand.ts  |     100 |      100 |     100 |     100 |                   
  ...or-command.ts |     100 |    95.65 |     100 |     100 | 104,182           
  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 |    77.41 |     100 |   94.32 | 35-36,114-119     
  bugCommand.ts    |     100 |    77.77 |     100 |     100 | 28,62             
  cdCommand.ts     |    92.3 |    82.75 |     100 |    92.3 | ...,94-99,178,187 
  clearCommand.ts  |    80.9 |    70.83 |     100 |    80.9 | ...28-129,137-146 
  commands.ts      |   97.45 |    96.66 |     100 |   97.45 | 153-155           
  ...essCommand.ts |   68.22 |    54.05 |      75 |   68.22 | ...97-198,212-215 
  ...astCommand.ts |   84.27 |       75 |     100 |   84.27 | ...,91-97,125-130 
  ...ig-command.ts |   93.12 |    88.42 |     100 |   93.12 | ...07-315,321-323 
  ...extCommand.ts |   74.79 |    74.39 |   84.61 |   74.79 | ...89-622,633-634 
  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 |   90.56 |    87.83 |    90.9 |   90.56 | ...75-280,327-334 
  docsCommand.ts   |     100 |     90.9 |     100 |     100 | 26                
  doctorChecks.ts  |   70.31 |    74.57 |     100 |   70.31 | ...95-301,325-341 
  doctorCommand.ts |   70.16 |    84.61 |      95 |   70.16 | ...29-679,682-816 
  dreamCommand.ts  |   85.45 |    88.88 |     100 |   85.45 | 58-65             
  editorCommand.ts |     100 |      100 |     100 |     100 |                   
  ...rt-command.ts |   80.48 |       75 |     100 |   80.48 | 49-54,69-72,93-98 
  effort-utils.ts  |     100 |      100 |     100 |     100 |                   
  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   |     100 |    96.49 |     100 |     100 | 139,192           
  helpCommand.ts   |     100 |      100 |     100 |     100 |                   
  ...oryCommand.ts |     100 |      100 |     100 |     100 |                   
  hooksCommand.ts  |   81.25 |    65.71 |   85.71 |   81.25 | ...,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 |   94.44 |    90.14 |     100 |   94.44 | ...13-214,241-251 
  learn-command.ts |     100 |      100 |     100 |     100 |                   
  lspCommand.ts    |     100 |    86.95 |     100 |     100 | 31,102-103        
  mcpCommand.ts    |     100 |      100 |     100 |     100 |                   
  memoryCommand.ts |     100 |      100 |     100 |     100 |                   
  modelCommand.ts  |   86.01 |    85.76 |     100 |   86.01 | ...1093,1127-1132 
  ...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.6 |       90 |     100 |    89.6 | ...72-176,212-219 
  ...oreCommand.ts |   90.96 |    86.04 |     100 |   90.96 | ...41-146,177-178 
  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.33 |    72.13 |     100 |   77.33 | ...46-150,173-178 
  ...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    |     100 |      100 |     100 |     100 |                   
  voice-command.ts |   93.63 |       88 |     100 |   93.63 | 36,98-103         
  ...owsCommand.ts |   94.38 |    85.29 |     100 |   94.38 | ...78-183,282-287 
 src/ui/components |    73.1 |    80.02 |   77.58 |    73.1 |                   
  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 |   89.06 |    90.78 |     100 |   89.06 | ...87-289,303-305 
  Composer.tsx     |   94.54 |    66.66 |     100 |   94.54 | ...-76,88,143,158 
  ...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 |   11.28 |      100 |       0 |   11.28 | 71-598            
  DiffDialog.tsx   |    53.5 |     37.5 |   69.23 |    53.5 | ...32-737,747-760 
  ...ngsDialog.tsx |    8.44 |      100 |       0 |    8.44 | 37-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       |   81.27 |    69.23 |      50 |   81.27 | ...06,245,267-272 
  ...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.69 |    67.61 |     100 |   79.69 | ...17,520,523-529 
  ...ngeDialog.tsx |     100 |      100 |     100 |     100 |                   
  InputPrompt.tsx  |   86.26 |     83.3 |      80 |   86.26 | ...2231,2252,2348 
  ...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.88 |    96.03 |   46.15 |   95.88 | ...20,523-527,530 
  MemoryDialog.tsx |   86.59 |    80.15 |     100 |   86.59 | ...34-435,485,553 
  ...geDisplay.tsx |       0 |        0 |       0 |       0 | 1-41              
  ModelDialog.tsx  |   85.22 |    74.17 |     100 |   85.22 | ...1042,1098,1100 
  ...tsDisplay.tsx |     100 |    97.22 |     100 |     100 | 270               
  ...fications.tsx |   16.66 |      100 |       0 |   16.66 | 14-56             
  ...onsDialog.tsx |    2.13 |      100 |       0 |    2.13 | 62-133,148-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 |    8.57 |      100 |       0 |    8.57 | 24-55,58-134      
  ...geDisplay.tsx |     100 |      100 |     100 |     100 |                   
  ...ngDisplay.tsx |   21.42 |      100 |       0 |   21.42 | 13-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 | ...99,405,447-469 
  ...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.55 |    73.89 |   69.23 |   71.55 | ...1252,1258-1259 
  ...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 |      28 |      100 |       0 |      28 | 18-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-171             
  ...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.9 |    86.88 |     100 |    93.9 | ...20,282,302-304 
  ...yTodoList.tsx |   96.36 |    88.23 |     100 |   96.36 | 138-141           
  ...nsDisplay.tsx |   95.62 |    87.09 |     100 |   95.62 | ...24-125,273-275 
  ...inalImage.tsx |     100 |    93.93 |     100 |     100 | 75,129            
  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 |    7.84 |      100 |       0 |    7.84 | 24-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 |   58.69 |    70.24 |    62.5 |   58.69 |                   
  ...atContent.tsx |    9.09 |      100 |       0 |    9.09 | 54-275,281-283    
  ...tChatView.tsx |     100 |    81.81 |     100 |     100 | 82                
  ...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 |   45.51 |    70.53 |   60.86 |   45.51 |                   
  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 |    9.77 |      100 |       0 |    9.77 | 27-166            
  ...tusDialog.tsx |    5.63 |      100 |       0 |    5.63 | 33-75,80-288      
  ...topDialog.tsx |    6.17 |      100 |       0 |    6.17 | 33-213            
 ...ackground-view |   85.86 |     85.1 |   92.98 |   85.86 |                   
  ...sksDialog.tsx |   82.66 |    83.09 |   85.71 |   82.66 | ...1854,1977-1983 
  ...TasksPill.tsx |   78.84 |    94.28 |     100 |   78.84 | 64,109-129        
  ...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.7 |    52.38 |   20.83 |    50.7 |                   
  ...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.24 |      100 |       0 |    9.24 | 40-67,70-163      
 ...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.91 |    63.44 |   70.58 |   40.91 |                   
  ...ealthPill.tsx |     100 |      100 |     100 |     100 |                   
  ...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 |   90.51 |    87.35 |   85.71 |   90.51 |                   
  ...orMessage.tsx |     100 |      100 |     100 |     100 |                   
  ...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 |   94.11 |    95.91 |   76.92 |   94.11 | ...47-349,352-355 
  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.87 |    82.51 |     100 |   91.87 | ...49-651,658-660 
  ...upMessage.tsx |   98.38 |    95.38 |     100 |   98.38 | 188-191,422       
  ToolMessage.tsx  |   93.85 |    88.38 |   93.75 |   93.85 | ...1051,1096-1098 
 ...ponents/shared |   86.52 |    82.35 |   86.72 |   86.52 |                   
  ...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.95 |      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 | 73,93-95          
  ...eSelector.tsx |     100 |       60 |     100 |     100 | 40-45             
  ...lableList.tsx |   90.37 |    82.85 |   18.18 |   90.37 | ...60-63,65,73-76 
  StaticRender.tsx |     100 |      100 |     100 |     100 |                   
  TextInput.tsx    |    80.8 |    67.24 |      80 |    80.8 | ...36-240,252-258 
  ...ontroller.tsx |     100 |    81.81 |     100 |     100 | 59-62             
  ...apsedTime.tsx |     100 |      100 |     100 |     100 |                   
  ...Indicator.tsx |     100 |      100 |     100 |     100 |                   
  ...lizedList.tsx |   91.49 |    86.66 |   83.33 |   91.49 | ...18-846,859,959 
  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 |    3.96 |      100 |       0 |    3.96 |                   
  ...gerDialog.tsx |    3.96 |      100 |       0 |    3.96 | 79-137,140-681    
 ...ents/subagents |   30.87 |        0 |       0 |   30.87 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  index.ts         |       0 |        0 |       0 |       0 | 1-11              
  reducers.tsx     |    12.1 |      100 |       0 |    12.1 | 33-190            
  types.ts         |     100 |      100 |     100 |     100 |                   
  utils.ts         |   10.95 |      100 |       0 |   10.95 | ...1,56-57,60-102 
 ...bagents/create |    9.13 |      100 |       0 |    9.13 |                   
  ...ionWizard.tsx |    7.28 |      100 |       0 |    7.28 | 34-299            
  ...rSelector.tsx |   14.75 |      100 |       0 |   14.75 | 26-85             
  ...onSummary.tsx |    4.26 |      100 |       0 |    4.26 | 27-331            
  ...tionInput.tsx |    8.63 |      100 |       0 |    8.63 | 23-177            
  ...dSelector.tsx |   33.33 |      100 |       0 |   33.33 | 20-21,26-27,36-63 
  ...nSelector.tsx |    37.5 |      100 |       0 |    37.5 | 20-21,26-27,36-58 
  ...EntryStep.tsx |   12.76 |      100 |       0 |   12.76 | 34-78             
  ToolSelector.tsx |    4.16 |      100 |       0 |    4.16 | 31-253            
 ...bagents/manage |    21.6 |    59.52 |   27.27 |    21.6 |                   
  ...ctionStep.tsx |   10.25 |      100 |       0 |   10.25 | 21-103            
  ...eleteStep.tsx |   20.93 |      100 |       0 |   20.93 | 23-62             
  ...tEditStep.tsx |   25.53 |      100 |       0 |   25.53 | ...2,37-38,51-124 
  ...ctionStep.tsx |   35.61 |    59.52 |     100 |   35.61 | ...21-433,438-440 
  ...iewerStep.tsx |   13.72 |      100 |       0 |   13.72 | 18-73             
  ...gerDialog.tsx |    6.74 |      100 |       0 |    6.74 | 35-341            
 ...mponents/views |    70.1 |    72.89 |   61.11 |    70.1 |                   
  ContextUsage.tsx |   71.49 |    64.86 |      80 |   71.49 | ...30-436,473-567 
  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 |                   
 src/ui/contexts   |   86.01 |    81.62 |   86.48 |   86.01 |                   
  ...ewContext.tsx |   87.56 |       80 |      75 |   87.56 | ...37-240,246-256 
  AppContext.tsx   |      80 |       50 |     100 |      80 | 19-20             
  ...ewContext.tsx |   93.83 |    68.51 |   42.85 |   93.83 | ...44,281-285,317 
  ...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 | 237-238           
  ...deContext.tsx |      80 |     87.5 |      75 |      80 | ...11-112,118-120 
  ...rtContext.tsx |     100 |      100 |     100 |     100 |                   
 src/ui/daemon     |   88.45 |    73.87 |   95.45 |   88.45 |                   
  ...ui-adapter.ts |   88.45 |    73.87 |   95.45 |   88.45 | ...81,799-800,886 
 src/ui/editors    |   93.33 |    85.71 |   66.66 |   93.33 |                   
  ...ngsManager.ts |   93.33 |    85.71 |   66.66 |   93.33 | 49,63-64          
 src/ui/hooks      |   85.97 |     83.9 |   87.81 |   85.97 |                   
  ...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 | ...87-288,293-294 
  ...dProcessor.ts |   86.79 |    71.86 |   83.33 |   86.79 | ...1529,1558-1562 
  ...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.41 |    82.08 |   66.66 |   92.41 | ...12,514-515,670 
  ...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 |      42 |       75 |     100 |      42 | 42-44,53-59,62-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.89 |    77.55 |     100 |   94.89 | 164-168,257,263   
  ...chedScroll.ts |     100 |      100 |     100 |     100 |                   
  ...ketedPaste.ts |    23.8 |      100 |       0 |    23.8 | 19-37             
  ...nchCommand.ts |   95.53 |    83.01 |     100 |   95.53 | ...64-165,289-292 
  ...ompletion.tsx |   97.09 |    87.23 |     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   |   11.62 |      100 |       0 |   11.62 | 44-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 |    87.4 |    84.04 |   78.26 |    87.4 | ...5817-5819,5821 
  ...BranchName.ts |     100 |    94.44 |     100 |     100 | 54                
  ...oryManager.ts |   98.38 |    98.85 |     100 |   98.38 | 141-144           
  ...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  |   10.52 |      100 |       0 |   10.52 | 36-75             
  ...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 |   85.29 |    80.28 |    92.3 |   85.29 | ...36,351-361,441 
  useQwenAuth.ts   |     100 |      100 |     100 |     100 |                   
  ...lScheduler.ts |   89.13 |     86.9 |     100 |   89.13 | ...61-463,496-506 
  ...oryCommand.ts |       0 |        0 |       0 |       0 | 1-7               
  ...umeCommand.ts |    95.4 |    77.77 |     100 |    95.4 | 133-134,239-244   
  ...ompletion.tsx |   90.67 |    83.33 |     100 |   90.67 | ...02,105,138-141 
  ...ectionList.ts |   97.12 |    96.22 |     100 |   97.12 | ...92-193,247-250 
  ...sionPicker.ts |   92.87 |    90.26 |     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.79 |    85.33 |   94.73 |   82.79 | ...86-688,696-732 
  ...tateAndRef.ts |     100 |      100 |     100 |     100 |                   
  ...tatsDialog.ts |     100 |      100 |     100 |     100 |                   
  useStatusLine.ts |   97.32 |    93.93 |     100 |   97.32 | ...18-422,518-525 
  ...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 |    79.2 |    35.29 |     100 |    79.2 | ...15-116,120-121 
  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.25 |    89.47 |     100 |   91.25 |                   
  ...AppLayout.tsx |   90.99 |     87.5 |     100 |   90.99 | 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  |   93.56 |    86.19 |     100 |   93.56 |                   
  screen-buffer.ts |   94.73 |    66.66 |     100 |   94.73 | 51-52             
  ...ion-coords.ts |     100 |      100 |     100 |     100 |                   
  ...ction-span.ts |   93.81 |     92.1 |     100 |   93.81 | ...1,45-46,99-100 
  ...tion-state.ts |     100 |      100 |     100 |     100 |                   
  ...ction-text.ts |   93.85 |    93.44 |     100 |   93.85 | 30-34,130-131     
  ...selection.tsx |   91.88 |    78.57 |     100 |   91.88 | ...16-417,446-447 
 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      |   87.73 |    85.83 |   96.06 |   87.73 |                   
  ...Colorizer.tsx |   80.31 |    85.41 |     100 |   80.31 | ...00-201,313-339 
  ...nRenderer.tsx |   80.07 |     75.6 |     100 |   80.07 | ...70,274,332-333 
  ...wnDisplay.tsx |   92.87 |     93.5 |     100 |   92.87 | ...,955,1002-1020 
  ...idDiagram.tsx |   87.79 |    95.34 |     100 |   87.79 | 156-179           
  ...eRenderer.tsx |   93.63 |    81.77 |   95.23 |   93.63 | ...47-750,803-808 
  ...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.9 |    74.15 |    92.3 |    52.9 | ...29,632-641,644 
  commandUtils.ts  |   98.61 |    93.27 |     100 |   98.61 | 189,217-218,424   
  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.24 |     100 |   94.87 | 116-119           
  goal-runtime.ts  |   91.42 |       95 |     100 |   91.42 | 32-34             
  gradientUtils.ts |     100 |      100 |     100 |     100 |                   
  highlight.ts     |     100 |      100 |     100 |     100 |                   
  ...gap-notice.ts |     100 |      100 |     100 |     100 |                   
  ...oryMapping.ts |     100 |    95.65 |     100 |     100 | 45,151            
  historyUtils.ts  |   96.07 |     97.1 |     100 |   96.07 | 104-107           
  ...mage-parts.ts |   97.75 |    94.73 |     100 |   97.75 | 82-83             
  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          |   91.33 |    79.03 |     100 |   91.33 | ...73,273,277-278 
  ...red-height.ts |   98.38 |    97.14 |     100 |   98.38 | 195-197           
  ...mConstants.ts |     100 |      100 |     100 |     100 |                   
  restoreGoal.ts   |     100 |      100 |     100 |     100 |                   
  ...storyUtils.ts |   83.24 |    80.12 |     100 |   83.24 | ...02-624,755-756 
  ...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 |   95.19 |      100 |   88.88 |   95.19 | 121-126           
  ...nal-buffer.ts |     100 |      100 |     100 |     100 |                   
  ...e-renderer.ts |   90.61 |    83.44 |     100 |   90.61 | ...80,482-484,607 
  ...ize-reflow.ts |     100 |     92.3 |     100 |     100 | 57,62,209,217,347 
  ...wOptimizer.ts |     100 |    94.73 |     100 |     100 | 35,78             
  terminalSetup.ts |    4.37 |      100 |       0 |    4.37 | 44-393            
  textUtils.ts     |   98.71 |    95.68 |     100 |   98.71 | 292-293,478-479   
  ...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       
  windowTitle.ts   |   96.55 |    94.73 |     100 |   96.55 | 56-57             
  ...ow-keyword.ts |     100 |      100 |     100 |     100 |                   
 ...i/utils/export |   75.03 |     60.1 |   94.59 |   75.03 |                   
  collect.ts       |   71.27 |    65.81 |      96 |   71.27 | ...90-633,655-656 
  index.ts         |     100 |      100 |     100 |     100 |                   
  normalize.ts     |   80.42 |    51.35 |     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      |   81.24 |    79.78 |   81.69 |   81.24 |                   
  ...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 |   91.09 |     92.1 |     100 |   91.09 | ...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 |       70 |     100 |   86.79 | 16-18,48-49,59-60 
  ...am-session.ts |   88.02 |    66.66 |   84.61 |   88.02 | ...26,343-345,363 
  ...ranscriber.ts |     100 |      100 |     100 |     100 |                   
 src/utils         |   92.25 |    89.67 |   96.39 |   92.25 |                   
  ...p-profiler.ts |   98.39 |    92.59 |     100 |   98.39 | 141,185,235       
  acpModelUtils.ts |   97.36 |    95.14 |     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       
  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        
  ...y-identity.ts |   87.06 |    81.91 |     100 |   87.06 | ...70-371,378-379 
  ...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 | 50-52,58          
  ...re-runtime.ts |     100 |      100 |     100 |     100 |                   
  ...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 
  ...tyWarnings.ts |     100 |      100 |     100 |     100 |                   
  ...lationInfo.ts |   97.81 |    94.69 |     100 |   97.81 | ...03,420-421,466 
  ...projection.ts |   95.27 |    95.58 |     100 |   95.27 | 140-145           
  jsonc-editor.ts  |   93.18 |    92.66 |     100 |   93.18 | ...80-381,384-385 
  load-undici.ts   |     100 |      100 |     100 |     100 |                   
  ...npm-update.ts |   86.64 |    77.02 |     100 |   86.64 | ...03-304,335-345 
  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 
  ...-part-list.ts |     100 |      100 |     100 |     100 |                   
  osc.ts           |   97.18 |      100 |    87.5 |   97.18 | 182-183           
  package.ts       |   88.88 |    85.71 |     100 |   88.88 | 31-32             
  paths.ts         |     100 |      100 |     100 |     100 |                   
  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 |                   
  ...xImageName.ts |     100 |    77.77 |     100 |     100 | 10,18             
  sandboxMounts.ts |     100 |      100 |     100 |     100 |                   
  ...-path-argv.ts |     100 |      100 |     100 |     100 |                   
  sessionPaths.ts  |   90.84 |    90.56 |     100 |   90.84 | ...81-182,185-186 
  shell-args.ts    |     100 |      100 |     100 |     100 |                   
  spawnWrapper.ts  |     100 |      100 |     100 |     100 |                   
  ...ate-verify.ts |     100 |      100 |     100 |     100 |                   
  ...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                
  ...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 
  ...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 |                   
  ...WithBackup.ts |   65.04 |    77.77 |     100 |   65.04 | 97,112,133-172    
 ...s/housekeeping |   94.35 |    94.11 |     100 |   94.35 |                   
  cleanup.ts       |   92.59 |    93.75 |     100 |   92.59 | ...02-205,209-211 
  ...eractionAt.ts |     100 |      100 |     100 |     100 |                   
  throttledOnce.ts |   95.95 |    93.93 |     100 |   95.95 | 77-78,153-154     
-------------------|---------|----------|---------|---------|-------------------
Core Package - Full Text Report
-------------------|---------|----------|---------|---------|-------------------
File               | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s 
-------------------|---------|----------|---------|---------|-------------------
All files          |    88.5 |    86.98 |   90.23 |    88.5 |                   
 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.24 |    84.51 |   94.55 |   90.24 |                   
  ...transcript.ts |   88.49 |    84.09 |     100 |   88.49 | ...32,640,646-650 
  ...ent-resume.ts |   85.64 |       78 |    85.1 |   85.64 | ...1793-1797,1800 
  ...ound-tasks.ts |   95.19 |    90.75 |   96.42 |   95.19 | ...1889,1897-1898 
  forkedAgent.ts   |   93.18 |    83.47 |   94.44 |   93.18 | ...90,698,703-710 
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...ent-result.ts |    96.8 |    92.68 |     100 |    96.8 | 106,129-131       
  ...n-registry.ts |   95.27 |    88.23 |   98.33 |   95.27 | ...1478,1492-1494 
  ...w-snapshot.ts |   75.73 |    72.22 |    87.5 |   75.73 | ...21,445,452-454 
  worktree-pin.ts  |     100 |    88.23 |     100 |     100 | 78,99             
 src/agents/arena  |   76.96 |    68.22 |   78.94 |   76.96 |                   
  ...gentClient.ts |   79.47 |    88.88 |   81.81 |   79.47 | ...68-183,189-204 
  ArenaManager.ts  |   75.91 |     65.2 |   78.57 |   75.91 | ...1888,1894-1895 
  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.07 |    85.19 |   76.12 |   78.07 |                   
  ITermBackend.ts  |   97.97 |    93.93 |     100 |   97.97 | ...78-180,255,307 
  ...essBackend.ts |   90.87 |    85.24 |   93.18 |   90.87 | ...83,685,687-688 
  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 |   93.21 |    87.65 |   91.18 |   93.21 |                   
  agent-context.ts |     100 |      100 |     100 |     100 |                   
  agent-core.ts    |   90.27 |    80.44 |   80.95 |   90.27 | ...2525,2571-2573 
  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.38 |      100 |    92.3 |   98.38 | 85-86             
  ...low-budget.ts |     100 |      100 |     100 |     100 |                   
  ...-scheduler.ts |   97.43 |    96.36 |     100 |   97.43 | 128-130           
  ...ow-journal.ts |   92.78 |    78.12 |     100 |   92.78 | ...49-150,192-194 
  ...ta-literal.ts |   95.96 |    92.63 |     100 |   95.96 | ...78-379,395-396 
  ...chestrator.ts |   93.87 |    90.47 |   91.48 |   93.87 | ...2216,2309-2312 
  ...ow-prompts.ts |     100 |      100 |     100 |     100 |                   
  ...low-runner.ts |   95.47 |    83.47 |   94.44 |   95.47 | ...44,312,332-335 
  ...ow-sandbox.ts |   96.91 |    91.02 |     100 |   96.91 | ...1704,1710-1711 
  ...flow-saved.ts |   96.51 |    94.36 |     100 |   96.51 | 134-135,234-237   
  ...flow-stall.ts |    97.9 |    83.33 |     100 |    97.9 | 170-171,270       
 src/agents/tasks  |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/agents/team   |   84.25 |    85.18 |   91.03 |   84.25 |                   
  TeamManager.ts   |   77.21 |    83.04 |   83.87 |   77.21 | ...1832,1855-1856 
  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.29 |       83 |     100 |   89.29 | ...1000,1044-1045 
  team-events.ts   |   73.68 |      100 |   66.66 |   73.68 | 140-144,151-155   
  teamHelpers.ts   |   91.71 |    94.44 |      95 |   91.71 | ...18-319,355-365 
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...eam/test-utils |   95.06 |    95.16 |   98.21 |   95.06 |                   
  ...on-harness.ts |   96.49 |       85 |     100 |   96.49 | 128-129,141-142   
  fake-agent.ts    |     100 |    96.77 |     100 |     100 | 158,167           
  fake-backend.ts  |   86.46 |    97.61 |   95.83 |   86.46 | 124-146           
 src/config        |   85.25 |    87.57 |   77.31 |   85.25 |                   
  approval-mode.ts |     100 |      100 |     100 |     100 |                   
  ...xtDefaults.ts |     100 |      100 |     100 |     100 |                   
  config.ts        |    84.1 |    87.09 |   75.28 |    84.1 | ...8990,8997-8998 
  ...ionManager.ts |     100 |     90.9 |     100 |     100 | 27                
  models.ts        |     100 |      100 |     100 |     100 |                   
  ...sDiscovery.ts |   97.46 |    93.05 |     100 |   97.46 | ...04,182-183,202 
  storage.ts       |   94.39 |    91.57 |   88.23 |   94.39 | ...45-446,449-450 
 ...nfirmation-bus |   98.27 |    97.22 |     100 |   98.27 |                   
  message-bus.ts   |   98.14 |    97.14 |     100 |   98.14 | 42-43             
  types.ts         |     100 |      100 |     100 |     100 |                   
 src/core          |   92.71 |    88.46 |   93.76 |   92.71 |                   
  ...on-restore.ts |   88.23 |    85.41 |     100 |   88.23 | ...60,63-64,67-68 
  baseLlmClient.ts |    88.4 |    83.68 |   81.81 |    88.4 | ...59,672,678-680 
  client.ts        |    92.7 |    88.26 |   91.11 |    92.7 | ...4351,4449-4450 
  ...tGenerator.ts |   87.45 |    88.09 |   88.88 |   87.45 | ...08-509,554-560 
  ...lScheduler.ts |   89.82 |    84.83 |   94.73 |   89.82 | ...6483,6511-6527 
  ...entContext.ts |   96.63 |    90.13 |   96.66 |   96.63 | ...42,444-445,512 
  geminiChat.ts    |   95.09 |    90.39 |   96.66 |   95.09 | ...5550,5598-5599 
  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 | 46-47             
  output-styles.ts |     100 |      100 |     100 |     100 |                   
  ...on-helpers.ts |   93.49 |    78.57 |     100 |   93.49 | ...10-211,228-229 
  ...issionFlow.ts |   98.98 |    96.96 |     100 |   98.98 | 109               
  ...try-policy.ts |     100 |      100 |     100 |     100 |                   
  ...ell-policy.ts |   94.89 |    88.54 |     100 |   94.89 | ...51-252,297-298 
  prompts.ts       |   93.89 |    91.66 |      85 |   93.89 | ...1272,1475-1476 
  ...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 |    91.89 |     100 |     100 | 87,122-139        
  ...reparation.ts |     100 |      100 |     100 |     100 |                   
  ...tion-guard.ts |   90.38 |    94.73 |     100 |   90.38 | 83-87             
  ...allIdUtils.ts |   98.81 |    91.22 |     100 |   98.81 | 43,52             
  ...okTriggers.ts |   99.45 |    92.43 |     100 |   99.45 | 182,193           
  ...terruption.ts |     100 |     92.3 |     100 |     100 | 86,104            
  turn.ts          |   99.19 |    94.48 |     100 |   99.19 | 698-699,768       
  ...l-fallback.ts |     100 |      100 |     100 |     100 |                   
 ...ntentGenerator |   96.38 |    88.09 |   97.36 |   96.38 |                   
  ...tGenerator.ts |   97.38 |    86.64 |   97.29 |   97.38 | ...1403,1432,1443 
  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 |   89.24 |    72.72 |   94.11 |   89.24 |                   
  ...tGenerator.ts |   87.54 |    71.42 |   93.75 |   87.54 | ...93-294,356-362 
  index.ts         |     100 |    85.71 |     100 |     100 | 51                
 ...ntentGenerator |   96.65 |     91.3 |   95.23 |   96.65 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...tGenerator.ts |   96.59 |    90.75 |      95 |   96.59 | ...1299-1300,1328 
  ...tDetection.ts |     100 |      100 |     100 |     100 |                   
 ...ntentGenerator |   92.19 |    90.86 |   96.58 |   92.19 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  converter.ts     |   91.26 |    89.67 |   96.87 |   91.26 | ...1948,2117-2132 
  errorHandler.ts  |     100 |      100 |     100 |     100 |                   
  index.ts         |   68.25 |    82.35 |      50 |   68.25 | 44-53,74-78,90-94 
  ...tGenerator.ts |      70 |    73.33 |     100 |      70 | ...07-112,121-127 
  pipeline.ts      |   95.36 |    91.52 |     100 |   95.36 | ...1433-1434,1541 
  ...ix-caching.ts |   95.23 |    92.85 |     100 |   95.23 | 45-46,69-70       
  ...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.2 |    91.81 |   98.63 |    97.2 |                   
  dashscope.ts     |   98.42 |    95.27 |   96.55 |   98.42 | ...51-752,894-895 
  deepseek.ts      |   95.23 |    89.79 |     100 |   95.23 | ...49-150,163-164 
  default.ts       |   98.87 |       96 |     100 |   98.87 | 178,304           
  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           |      90 |    76.31 |     100 |      90 | ...,72-73,173-175 
 src/extension     |   88.71 |    86.04 |   93.41 |   88.71 |                   
  ...ive-safety.ts |   97.77 |    93.75 |     100 |   97.77 | 100-101           
  ...-converter.ts |   80.55 |    73.66 |     100 |   80.55 | ...1133,1179-1180 
  corruptFile.ts   |     100 |       50 |     100 |     100 | 40-45             
  ...-converter.ts |     100 |      100 |     100 |     100 |                   
  ...redentials.ts |   95.33 |    89.47 |     100 |   95.33 | ...21-122,173-175 
  ...me-refresh.ts |     100 |      100 |     100 |     100 |                   
  ...sion-store.ts |   92.82 |     89.1 |    98.3 |   92.82 | ...1641-1647,1691 
  ...ionManager.ts |   84.52 |    83.52 |      83 |   84.52 | ...3139,3177-3178 
  ...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 |    85.71 |   85.71 |    75.9 | ...98,202,214-248 
  github.ts        |    92.7 |     87.7 |     100 |    92.7 | ...1340-1341,1351 
  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.16 |     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.54 |     100 |   94.11 | 63-64,81-82       
  ...-converter.ts |   94.89 |    90.41 |     100 |   94.89 | ...50-151,222-224 
  redaction.ts     |     100 |      100 |     100 |     100 |                   
  settings.ts      |   66.26 |      100 |      50 |   66.26 | 81-107,141-146    
  ...ceRegistry.ts |   94.01 |    83.33 |     100 |   94.01 | ...38-344,365-366 
  storage.ts       |     100 |      100 |     100 |     100 |                   
  ...ableSchema.ts |     100 |      100 |     100 |     100 |                   
  variables.ts     |   88.95 |    84.21 |     100 |   88.95 | ...32-235,238-241 
  ...extraction.ts |   85.77 |       81 |   89.47 |   85.77 | ...02-205,260-261 
 ...ent-plugins-v1 |   84.94 |    79.51 |     100 |   84.94 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  manifest.ts      |   81.87 |    84.48 |     100 |   81.87 | ...55-156,161-174 
  mcp.ts           |   84.98 |    79.56 |     100 |   84.98 | ...88-389,419-420 
  paths.ts         |     100 |    94.44 |     100 |     100 | 59                
  skills.ts        |   82.31 |    63.88 |     100 |   82.31 | ...38-141,150-151 
 src/followup      |   84.72 |    81.87 |   86.84 |   84.72 |                   
  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   |   76.36 |     70.4 |   58.33 |   76.36 | ...42-743,750-751 
  ...onToolGate.ts |   97.97 |     87.5 |     100 |   97.97 | 105,110           
  ...nGenerator.ts |   86.11 |    87.17 |     100 |   86.11 | ...39-244,356-358 
 src/generated     |       0 |        0 |       0 |       0 |                   
  git-commit.ts    |       0 |        0 |       0 |       0 | 1-10              
 src/goals         |   92.88 |    89.34 |   94.65 |   92.88 |                   
  ...eGoalStore.ts |   87.61 |    88.88 |   86.66 |   87.61 | ...85-188,196-204 
  ...t-verifier.ts |   96.27 |    91.17 |     100 |   96.27 | ...20,143-146,163 
  ...checkpoint.ts |   81.48 |    76.19 |     100 |   81.48 | ...02-105,115-118 
  ...ion-prompt.ts |   89.13 |    83.33 |     100 |   89.13 | 52-56             
  goal-evidence.ts |   88.54 |    87.98 |   97.67 |   88.54 | ...1200,1223-1226 
  ...projection.ts |   66.66 |    72.97 |   33.33 |   66.66 | ...87,190,194-196 
  ...ersistence.ts |   87.36 |    85.71 |    87.5 |   87.36 | ...53-154,185-190 
  goal-protocol.ts |   96.87 |    95.65 |     100 |   96.87 | 215-216           
  goal-reducer.ts  |   95.25 |    92.82 |   97.29 |   95.25 | ...73,552,570-571 
  goal-runtime.ts  |   96.38 |    89.73 |   95.83 |   96.38 | ...1349-1350,1480 
  goal-tools.ts    |   98.38 |    94.17 |   95.83 |   98.38 | ...05-206,307-308 
  ...rn-context.ts |     100 |      100 |     100 |     100 |                   
  goal-verifier.ts |   92.46 |    93.02 |     100 |   92.46 | ...69-172,185-187 
  goal-wire.ts     |       0 |        0 |       0 |       0 | 1-28              
  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.07 |    86.25 |   88.54 |   88.07 |                   
  ...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 |    87.91 |     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.67 |   66.49 |   58.96 |                   
  ...nfigLoader.ts |   80.55 |    72.22 |   95.65 |   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 |    81.81 |   21.05 |   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.48 |   89.28 |   82.12 |                   
  ...en-storage.ts |     100 |      100 |     100 |     100 |                   
  ...en-storage.ts |   87.08 |    87.71 |   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        |   88.97 |    85.08 |   91.31 |   88.97 |                   
  ...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 
  dream.ts         |    64.6 |    72.22 |      50 |    64.6 | ...04-109,124-165 
  ...entPlanner.ts |     100 |    83.33 |     100 |     100 | 135,145           
  entries.ts       |   75.59 |    84.84 |   83.33 |   75.59 | ...56-157,172-180 
  extract.ts       |   93.82 |    84.09 |     100 |   93.82 | 78-83,122,154-157 
  ...entPlanner.ts |   91.55 |    76.74 |     100 |   91.55 | ...05,118-121,296 
  ...ionPlanner.ts |       0 |        0 |       0 |       0 | 1                 
  forget.ts        |   90.16 |    78.76 |   94.44 |   90.16 | ...06,629,642-648 
  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.51 |    83.16 |   77.77 |   78.51 | ...1487,1500-1502 
  ...ent-config.ts |   86.99 |    82.69 |   86.36 |   86.99 | ...69,389,396-402 
  memoryAge.ts     |   90.47 |    83.33 |     100 |   90.47 | 50-51             
  ...yDiscovery.ts |   93.42 |    90.72 |     100 |   93.42 | ...11,370,592-595 
  paths.ts         |     100 |      100 |     100 |     100 |                   
  ...ing-skills.ts |     100 |       72 |     100 |     100 | 31-35,73-78,97    
  prompt.ts        |   97.26 |    86.79 |     100 |   97.26 | ...10-218,222,225 
  recall.ts        |   86.86 |    86.23 |   92.85 |   86.86 | ...33-538,571-582 
  refresh.ts       |   93.58 |    89.58 |     100 |   93.58 | ...75-176,183-184 
  ...ceSelector.ts |    93.2 |    85.71 |     100 |    93.2 | ...45-146,148-149 
  remember.ts      |   98.88 |    90.19 |     100 |   98.88 | 50,70             
  scan.ts          |   93.75 |       80 |     100 |   93.75 | ...08-109,154,157 
  scopes.ts        |     100 |      100 |     100 |     100 |                   
  ...et-scanner.ts |     100 |      100 |     100 |     100 |                   
  ...entPlanner.ts |   76.89 |    74.07 |   72.22 |   76.89 | ...47-451,454,460 
  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 |    85.71 |     100 |     100 | 27                
  ...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 |     79.1 |   81.81 |   81.21 | ...66-280,294-299 
 src/mocks         |       0 |        0 |       0 |       0 |                   
  msw.ts           |       0 |        0 |       0 |       0 | 1-9               
 src/models        |   92.82 |    89.39 |   91.35 |   92.82 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  ...tor-config.ts |   97.77 |    91.83 |     100 |   97.77 | 155,161,171       
  ...capability.ts |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...nfigErrors.ts |   79.43 |    64.51 |   85.71 |   79.43 | ...,89-96,131-142 
  ...igResolver.ts |   98.71 |    93.33 |     100 |   98.71 | 166,328,334       
  modelRegistry.ts |     100 |    98.11 |     100 |     100 | 177,262           
  modelsConfig.ts  |   89.36 |    86.93 |   88.09 |   89.36 | ...1407,1436-1437 
  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.79 |    91.18 |   71.07 |   83.79 |                   
  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.63 |    89.01 |      80 |   86.63 | ...1111,1217-1221 
  rule-parser.ts   |   94.49 |    92.74 |     100 |   94.49 | ...1447,1481-1483 
  ...-semantics.ts |   70.44 |    91.07 |   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.78 |    78.34 |   81.25 |   83.78 |                   
  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.91 |    73.48 |   78.26 |   75.91 | ...74-475,503-504 
  types.ts         |       0 |        0 |       0 |       0 | 1                 
 ...viders/presets |   98.04 |    91.66 |   63.63 |   98.04 |                   
  ...oding-plan.ts |   87.34 |      100 |       0 |   87.34 | 81-83,86-88,90-93 
  ...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 |                   
  moonshot.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.36 |    78.59 |   95.94 |   85.36 |                   
  ...tGenerator.ts |    98.6 |    98.14 |     100 |    98.6 | 103-104           
  qwenOAuth2.ts    |   82.79 |    73.45 |    90.9 |   82.79 | ...1205-1221,1251 
  ...kenManager.ts |   85.36 |     76.8 |     100 |   85.36 | ...52-757,778-783 
 src/resources     |     100 |      100 |     100 |     100 |                   
  ...e-registry.ts |     100 |      100 |     100 |     100 |                   
 src/services      |   90.61 |    86.32 |   96.78 |   90.61 |                   
  ...ionTrailer.ts |     100 |      100 |     100 |     100 |                   
  ...llRegistry.ts |   98.48 |    87.28 |     100 |   98.48 | 81-82,105,474-475 
  branch-points.ts |     100 |    95.23 |     100 |     100 | ...20,211,224,327 
  ...ionService.ts |   97.72 |    96.53 |     100 |   97.72 | ...1081,1224-1232 
  ...ingService.ts |   92.47 |    87.91 |   94.73 |   92.47 | ...2886,2901-2902 
  ...ttribution.ts |   91.73 |    87.71 |      90 |   91.73 | ...80-685,826-827 
  ...utSlimming.ts |    97.2 |    94.23 |     100 |    97.2 | ...39-340,378-381 
  cronScheduler.ts |   94.17 |    90.45 |      98 |   94.17 | ...1333,1736-1737 
  cronTasksFile.ts |   95.52 |    90.99 |     100 |   95.52 | ...37,346-347,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 |    97.5 |    96.07 |     100 |    97.5 | 349-350,363-364   
  ...temService.ts |    92.8 |    84.68 |   94.11 |    92.8 | ...53,479-486,531 
  ...ratedFiles.ts |      96 |    88.23 |     100 |      96 | 119-120,146-147   
  gitInit.ts       |     100 |      100 |     100 |     100 |                   
  ...reeService.ts |   74.75 |    70.76 |   96.07 |   74.75 | ...2296,2325-2326 
  ...on-service.ts |   86.58 |    74.39 |     100 |   86.58 | ...56-460,498-499 
  ...references.ts |   98.57 |    91.42 |     100 |   98.57 | 156-157,217-218   
  ...ionService.ts |   98.26 |    97.23 |     100 |   98.26 | ...65-866,889-890 
  ...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.22 |    90.99 |     100 |   97.22 | ...55-456,609-610 
  ...ttachments.ts |   97.74 |     90.9 |     100 |   97.74 | 298-308,646       
  ...pi-history.ts |   98.94 |    88.88 |     100 |   98.94 | 43                
  ...ersistence.ts |   91.67 |    80.64 |     100 |   91.67 | ...1062-1063,1091 
  ...tory-state.ts |     100 |       95 |     100 |     100 | 31                
  ...on-service.ts |   94.49 |     92.3 |   97.22 |   94.49 | ...98-600,656-664 
  ...pr-service.ts |   96.22 |    89.13 |     100 |   96.22 | 90-93             
  ...ce-service.ts |   98.52 |    94.11 |    90.9 |   98.52 | 64-65             
  ...n-registry.ts |   98.73 |    96.29 |     100 |   98.73 | 584,638-639,692   
  ...ken-counts.ts |     100 |       96 |     100 |     100 | 58                
  ...ipt-reader.ts |    93.7 |    91.09 |    97.8 |    93.7 | ...2791-2792,2869 
  ...turn-state.ts |   94.11 |     90.9 |   91.66 |   94.11 | 108-112,129-130   
  ...est-helper.ts |       0 |        0 |       0 |       0 | 1-65              
  ...iter-lease.ts |   83.14 |    74.47 |   97.61 |   83.14 | ...2433,2445-2448 
  sessionRecap.ts  |   67.56 |    43.47 |     100 |   67.56 | ...60,178,180-183 
  ...ionService.ts |   89.62 |    87.03 |    93.4 |   89.62 | ...3019,3033-3053 
  sessionTitle.ts  |   96.35 |    79.71 |     100 |   96.35 | ...08-311,342-343 
  ...ContextEnv.ts |     100 |    94.73 |     100 |     100 | 76,111            
  ...ionService.ts |   84.43 |    78.45 |   97.18 |   84.43 | ...2496,2502-2507 
  ...pInhibitor.ts |   97.42 |    92.77 |     100 |   97.42 | ...30,169,369-370 
  ...e-encoding.ts |   85.96 |    76.47 |     100 |   85.96 | 58-61,64-65,78-79 
  ...Estimation.ts |     100 |    94.11 |     100 |     100 | 118               
  ...ageService.ts |   97.76 |    91.59 |   93.75 |   97.76 | ...61-262,366,567 
  ...ite-origin.ts |     100 |    93.33 |     100 |     100 | 32                
  ...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.76 |    84.07 |     100 |   90.76 | ...10-513,565-566 
  ...reeCleanup.ts |   14.42 |      100 |   33.33 |   14.42 | 58-186            
  ...ionService.ts |   88.36 |     87.7 |     100 |   88.36 | ...48-449,465-466 
 ...icrocompaction |   98.91 |    95.08 |     100 |   98.91 |                   
  microcompact.ts  |   98.91 |    95.08 |     100 |   98.91 | ...60,769,778-779 
 ...s/visionBridge |    98.8 |    92.12 |     100 |    98.8 |                   
  ...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             
  ...ge-service.ts |   98.61 |     94.7 |     100 |   98.61 | ...06,666,679-680 
 src/skills        |   89.77 |    86.05 |   94.73 |   89.77 |                   
  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.69 |     100 |   94.84 | ...03,223,235-237 
  skill-manager.ts |   86.09 |    85.64 |   86.11 |   86.09 | ...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.07 |     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     |   88.56 |    89.42 |    98.3 |   88.56 |                   
  ...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 |   85.51 |    86.52 |   97.43 |   85.51 | ...1583,1660-1661 
  types.ts         |     100 |      100 |     100 |     100 |                   
  validation.ts    |   92.46 |    95.18 |     100 |   92.46 | 47-52,63-68,71-76 
 src/telemetry     |   82.55 |    84.46 |   85.71 |   82.55 |                   
  ...ty-tracker.ts |     100 |      100 |     100 |     100 |                   
  config.ts        |     100 |      100 |     100 |     100 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  ...on-metrics.ts |   99.08 |    80.95 |     100 |   99.08 | 185,199           
  ...on-tracing.ts |   80.71 |    81.91 |   79.16 |   80.71 | ...92,499-501,517 
  ...attributes.ts |   96.98 |    91.37 |     100 |   96.98 | ...47-348,366-367 
  ...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.38 |    83.33 |      50 |   65.38 | ...08-109,112-113 
  ...ai-content.ts |    74.5 |    66.41 |   91.66 |    74.5 | ...1480,1493-1502 
  ...i-provider.ts |     100 |    99.02 |     100 |     100 | 106               
  ...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.12 |    96.03 |      95 |   99.12 | 150,379-380       
  ...t.circular.ts |       0 |        0 |       0 |       0 | 1-128             
  loggers.ts       |   60.73 |    78.01 |   66.66 |   60.73 | ...1507,1524-1544 
  metrics.ts       |   80.37 |    82.35 |   80.95 |   80.37 | ...1150,1153-1164 
  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      |   93.95 |    86.44 |      75 |   93.95 | ...41,483-484,500 
  sdk.ts           |    82.7 |     90.9 |   66.66 |    82.7 | ...00-204,242-264 
  ...on-context.ts |     100 |      100 |     100 |     100 |                   
  ...ion-events.ts |     100 |      100 |     100 |     100 |                   
  ...on-tracing.ts |   91.17 |    88.72 |    97.5 |   91.17 | ...1920,1949-1952 
  ...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         |   83.26 |    88.66 |   86.36 |   83.26 | ...1467,1471-1478 
  uiTelemetry.ts   |   97.18 |    93.93 |      88 |   97.18 | ...70,314,461-462 
 ...ry/qwen-logger |   74.23 |     80.7 |      70 |   74.23 |                   
  event-types.ts   |       0 |        0 |       0 |       0 |                   
  qwen-logger.ts   |   74.23 |    80.53 |   69.49 |   74.23 | ...1122,1160-1161 
 src/test-utils    |   96.38 |    98.64 |   84.09 |   96.38 |                   
  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 |      80 |   94.85 | ...53,227-228,241 
  ...aceContext.ts |     100 |      100 |     100 |     100 |                   
 src/tools         |   87.25 |    85.68 |   90.06 |   87.25 |                   
  ...erQuestion.ts |   89.71 |    81.13 |    92.3 |   89.71 | ...66-367,374-375 
  ...-registrar.ts |    77.7 |    66.66 |   66.66 |    77.7 | ...72-277,292-294 
  ...ub-session.ts |   89.72 |    91.48 |   83.33 |   89.72 | ...06-307,318-325 
  cron-create.ts   |   90.64 |     93.1 |      75 |   90.64 | ...,73-74,223-231 
  cron-delete.ts   |   97.56 |      100 |   85.71 |   97.56 | 31-32             
  cron-list.ts     |   98.23 |    95.45 |   88.88 |   98.23 | 57-58             
  diffOptions.ts   |     100 |      100 |     100 |     100 |                   
  display-image.ts |   87.42 |    85.71 |    90.9 |   87.42 | ...29-134,194-195 
  edit.ts          |   82.76 |    86.88 |   82.35 |   82.76 | ...45-746,865-915 
  ...r-worktree.ts |   83.14 |    68.42 |   88.88 |   83.14 | ...84-187,278-279 
  enterPlanMode.ts |      85 |       84 |      90 |      85 | ...28-133,161-175 
  exit-worktree.ts |   83.29 |     83.8 |   94.73 |   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.71 |   86.36 |   90.73 | ...76-677,727-728 
  ...adTracking.ts |     100 |      100 |     100 |     100 |                   
  image-gen.ts     |   91.66 |    78.12 |   91.66 |   91.66 | ...13-214,221-222 
  list-agents.ts   |   94.11 |    83.33 |   85.71 |   94.11 | 31-32,47-48       
  loop-wakeup.ts   |   99.27 |     93.1 |     100 |   99.27 | 45                
  ls.ts            |   96.74 |    90.54 |     100 |   96.74 | 176-181,212,216   
  lsp.ts           |   72.71 |     59.9 |    90.9 |   72.71 | ...1212,1214-1215 
  ...nt-manager.ts |   82.06 |    80.15 |   85.71 |   82.06 | ...3234,3236-3237 
  mcp-client.ts    |   86.08 |     87.5 |   93.93 |   86.08 | ...2483,2487-2490 
  ...ry-timeout.ts |     100 |      100 |     100 |     100 |                   
  mcp-errors.ts    |     100 |      100 |     100 |     100 |                   
  ...pool-entry.ts |   79.21 |    85.71 |   81.57 |   79.21 | ...1341,1349-1350 
  ...ool-events.ts |       8 |        0 |       0 |       8 | 132-158           
  mcp-pool-key.ts  |    97.5 |    93.93 |     100 |    97.5 | 178-179           
  ...ce-content.ts |   96.55 |    91.17 |     100 |   96.55 | 80-82             
  mcp-retry.ts     |   97.67 |    95.65 |     100 |   97.67 | 131-132           
  ...ion-config.ts |     100 |      100 |     100 |     100 |                   
  mcp-status.ts    |     100 |      100 |     100 |     100 |                   
  mcp-tool.ts      |   97.95 |    92.37 |     100 |   97.95 | ...1161,1216-1217 
  ...sport-pool.ts |   83.98 |     80.3 |   88.46 |   83.98 | ...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.82 |    83.09 |   88.46 |   91.82 | ...99,612,810-815 
  notebook-edit.ts |   85.71 |    77.39 |   82.35 |   85.71 | ...96-912,958-959 
  ...escendants.ts |   36.17 |    64.51 |   55.55 |   36.17 | ...46-310,385-390 
  ...nforcement.ts |   83.21 |    90.69 |     100 |   83.21 | 147-158,207-220   
  read-file.ts     |   95.49 |    88.61 |    87.5 |   95.49 | ...49,464,536-537 
  ...p-resource.ts |   96.85 |      100 |   91.66 |   96.85 | 92-96             
  readManyFiles.ts |   95.79 |    81.35 |     100 |   95.79 | ...10,563,573-577 
  ...d-artifact.ts |   85.68 |    81.59 |   94.73 |   85.68 | ...1071,1095-1096 
  ...t-shutdown.ts |    87.2 |    86.66 |   77.77 |    87.2 | ...,75-79,162-165 
  ripGrep.ts       |    94.6 |    87.34 |   95.45 |    94.6 | ...33-734,740-741 
  ...-transport.ts |   71.42 |    55.55 |   71.42 |   71.42 | ...36-137,143-144 
  send-message.ts  |      80 |    89.74 |   66.66 |      80 | ...59-265,333-340 
  ...n-mcp-view.ts |   94.07 |    91.89 |    90.9 |   94.07 | 131-139           
  shell.ts         |   78.96 |    84.29 |      93 |   78.96 | ...5036,5111-5112 
  skill-utils.ts   |     100 |      100 |     100 |     100 |                   
  skill.ts         |   91.39 |    92.55 |      90 |   91.39 | ...84,488,534-556 
  ...-constants.ts |     100 |      100 |     100 |     100 |                   
  ...eticOutput.ts |   95.12 |      100 |      80 |   95.12 | 87-88             
  task-create.ts   |    94.4 |    93.75 |   83.33 |    94.4 | 45-49,63-64,95    
  task-list.ts     |   80.43 |    86.95 |   85.71 |   80.43 | ...67,121,125-132 
  task-stop.ts     |   93.14 |    96.29 |    87.5 |   93.14 | 39-40,54-64       
  task-update.ts   |   82.87 |     86.5 |   92.85 |   82.87 | ...54-564,588-599 
  team-create.ts   |   97.24 |    86.36 |   85.71 |   97.24 | 48-49,129-130     
  team-delete.ts   |   86.74 |    84.61 |   85.71 |   86.74 | 37-38,42-48,72-73 
  ...n-approval.ts |   92.14 |    96.96 |   81.81 |   92.14 | 38-39,42-43,93-99 
  todoWrite.ts     |   95.13 |    87.85 |   93.33 |   95.13 | ...23-527,540-545 
  ...repeat-key.ts |     100 |      100 |     100 |     100 |                   
  tool-error.ts    |     100 |      100 |     100 |     100 |                   
  tool-names.ts    |     100 |      100 |     100 |     100 |                   
  tool-registry.ts |   80.35 |    81.52 |   85.71 |   80.35 | ...1017,1025-1026 
  ...-finalizer.ts |    98.1 |     92.3 |   93.33 |    98.1 | ...34-235,237-241 
  ...iagnostics.ts |   99.06 |    97.69 |   91.66 |   99.06 | 133-134,205       
  ...-retention.ts |     100 |    95.83 |     100 |     100 | 116               
  tool-search.ts   |   96.19 |    89.79 |   93.75 |   96.19 | ...09,259-264,426 
  tool-utils.ts    |   97.46 |    96.55 |     100 |   97.46 | 26-27             
  tools.ts         |   92.93 |    92.18 |      92 |   92.93 | ...64-565,581-587 
  truncation.ts    |   90.61 |    90.35 |     100 |   90.61 | ...53-461,498-504 
  ...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.58 |    83.57 |      80 |   90.58 | ...1025,1083-1086 
  write-file.ts    |   87.06 |    85.71 |   89.47 |   87.06 | ...29-832,869-904 
  zoom-image.ts    |   95.76 |    93.93 |    90.9 |   95.76 | 54-59,203-204     
 src/tools/agent   |   87.49 |    88.65 |   89.56 |   87.49 |                   
  agent.ts         |   86.18 |    87.83 |   87.36 |   86.18 | ...4385,4419-4429 
  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 |                   
 ...tools/workflow |   88.32 |    86.77 |   81.48 |   88.32 |                   
  workflow.ts      |   88.32 |    86.77 |   81.48 |   88.32 | ...35,780,782-783 
 src/utils         |   92.75 |    89.77 |    96.8 |   92.75 |                   
  LruCache.ts      |     100 |      100 |     100 |     100 |                   
  ...Controller.ts |     100 |      100 |     100 |     100 |                   
  ...ssageQueue.ts |     100 |      100 |     100 |     100 |                   
  ...cFileWrite.ts |      95 |     92.7 |     100 |      95 | ...49-550,657-661 
  auth-type.ts     |     100 |      100 |     100 |     100 |                   
  bareMode.ts      |   81.81 |      100 |      50 |   81.81 | 18-19             
  ...ry-content.ts |   98.45 |    95.79 |     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 |                   
  ...igResolver.ts |     100 |      100 |     100 |     100 |                   
  ...engthError.ts |   91.06 |    89.47 |     100 |   91.06 | ...46-147,154-155 
  ...n-branches.ts |   95.89 |    94.11 |      95 |   95.89 | ...99-500,512-525 
  ...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   |     100 |    97.14 |      95 |     100 | 79,86             
  ...qwen-model.ts |     100 |      100 |     100 |     100 |                   
  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     
  errorParsing.ts  |     100 |      100 |     100 |     100 |                   
  ...rReporting.ts |   95.65 |    93.33 |     100 |   95.65 | 37-38             
  errors.ts        |   88.92 |    93.67 |      68 |   88.92 | ...92,394,410-411 
  fetch.ts         |   90.68 |    82.63 |     100 |   90.68 | ...72,483-484,503 
  ...ng-options.ts |     100 |      100 |     100 |     100 |                   
  file-identity.ts |     100 |      100 |     100 |     100 |                   
  fileUtils.ts     |   94.79 |    92.16 |   96.29 |   94.79 | ...2076,2084-2085 
  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 
  ...fig-safety.ts |   97.01 |       80 |     100 |   97.01 | 53-54             
  git-ignore.ts    |     100 |      100 |     100 |     100 |                   
  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.83 |    82.35 |    87.5 |   78.83 | ...22-123,164-215 
  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.08 |    93.47 |     100 |   95.08 | ...62-166,234-238 
  ...lPromptIds.ts |     100 |      100 |     100 |     100 |                   
  ...on-context.ts |     100 |      100 |     100 |     100 |                   
  is-tool.ts       |     100 |      100 |     100 |     100 |                   
  jsonl-utils.ts   |   96.15 |    93.63 |     100 |   96.15 | ...86-387,429-432 
  ...-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                
  ...-constants.ts |   94.28 |     92.3 |     100 |   94.28 | 66-67             
  ...iagnostics.ts |    96.4 |     94.2 |     100 |    96.4 | ...66,293-294,376 
  ...tProcessor.ts |   94.01 |    89.88 |     100 |   94.01 | ...47-353,445-446 
  ...Inspectors.ts |     100 |      100 |     100 |     100 |                   
  modelId.ts       |   98.96 |    98.18 |     100 |   98.96 | 154               
  ...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         |   90.88 |    90.66 |     100 |   90.88 | ...28-629,631-633 
  pdf.ts           |   92.17 |    85.81 |     100 |   92.17 | ...64-565,606-611 
  ...s-liveness.ts |     100 |    93.47 |     100 |     100 | 62,72,108         
  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.36 |     100 |   96.98 | ...87-688,763-764 
  retry.ts         |   96.09 |    92.52 |     100 |   96.09 | ...72,563-564,582 
  retryContext.ts  |     100 |      100 |     100 |     100 |                   
  ...sification.ts |   97.63 |    97.08 |     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 
  ...iagnostics.ts |   83.08 |     67.5 |   92.59 |   83.08 | ...23,543-544,550 
  ...tchOptions.ts |   84.87 |    86.71 |   96.29 |   84.87 | ...71,696,725-734 
  ...odelPrefix.ts |     100 |      100 |     100 |     100 |                   
  runtimeStatus.ts |   97.77 |    91.48 |     100 |   97.77 | 172-173           
  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 |       90 |     100 |     100 | 95                
  ...orageUtils.ts |   96.21 |    85.34 |     100 |   96.21 | ...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.37 |    88.59 |     100 |   86.37 | ...2361,2368-2372 
  ...lAstParser.ts |    98.3 |    91.59 |     100 |    98.3 | ...1340-1342,1352 
  ...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 |    57.14 |     100 |   77.77 | 44,54-59          
  ...emEncoding.ts |   96.36 |    91.17 |     100 |   96.36 | 59-60,124-125     
  terminal-env.ts  |      50 |      100 |       0 |      50 | 18-19             
  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             
  ...error-type.ts |     100 |      100 |     100 |     100 |                   
  ...name-utils.ts |     100 |      100 |     100 |     100 |                   
  ...ultCleanup.ts |   54.62 |    60.86 |      75 |   54.62 | ...03-105,108-134 
  ...Compaction.ts |   96.34 |    96.55 |     100 |   96.34 | ...35-340,342-347 
  ...pt-records.ts |   87.61 |    86.23 |     100 |   87.61 | ...80-484,514-529 
  ...-constants.ts |     100 |      100 |     100 |     100 |                   
  windowsPath.ts   |   89.47 |    79.31 |     100 |   89.47 | ...57-58,62,90-91 
  ...-directory.ts |    83.7 |    80.95 |    87.5 |    83.7 | ...37-238,252-253 
  ...ifact-path.ts |   94.11 |    92.85 |     100 |   94.11 | 32-33             
  ...aceContext.ts |   95.39 |    89.47 |     100 |   95.39 | ...16-317,321-322 
  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.75 |   94.78 |   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.86 |      90 |   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 |    92.3 |      100 |   88.88 |    92.3 |                   
  ...ageFormats.ts |   81.81 |      100 |   66.66 |   81.81 | 56-61             
  textTokenizer.ts |     100 |      100 |     100 |     100 |                   
-------------------|---------|----------|---------|---------|-------------------

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

…ch rework (#8977)

Supersedes the files-free alignment: the composer, queued prompts and
image ingestion still carry PromptFile end to end, so re-add the webui
files option (DaemonPromptFile, SubmitPromptOptions.files, resource
blocks in toDaemonPromptContent) instead of dropping attachments at the
App boundary. web-shell 3642 + webui 499 tests green locally.
@yiliang114

Copy link
Copy Markdown
Collaborator Author

@qwen-code /review

@github-actions

github-actions Bot commented Aug 16, 2026

Copy link
Copy Markdown
Contributor

Qwen Code review request accepted. Review is queued in workflow run.

@yiliang114

Copy link
Copy Markdown
Collaborator Author

【巡检备注】CI Test 失败(cli/qwen-serve-streaming.test.ts: "creates, opens, and continues a branch through the real daemon",first.branchPoint undefined)的根因是本 PR 的 bridge 重写移除了 checkpoint branch 机制:broadcastTurnComplete 不再从 promptResult._meta 提取 qwen.branchPoint,branchSession 不再透传 atRecordId(main 上 atRecordId !== undefined 走 persisted-only 路径)。但 SDK 公共 API(DaemonClient/types/events 的 branchPoint、branchSession 的 atRecordId)仍保留,且该集成测试为 main 既有覆盖、PR 描述未提及此移除。两条路需 maintainer 拍板:(a) 恢复 bridge 侧 branchPoint stamp + atRecordId persisted 路径(恢复 main 等价行为,注意需同时恢复 BridgePersistedBranchedSession 联合类型);(b) 确认 checkpoint branch 由 #8817 fork-from-any-conversation 取代,则更新/移除该集成测试并同步清理 SDK 的 atRecordId/branchPoint 公共类型。在决策前不擅自选边。E2E Smoke 失败待该决策后一并复查。

@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.

Partially reviewed — gaps disclosed.

Not reviewed: reverse audit — stopped at the 5-round cap without two consecutive dry rounds; every chunk was audited each round, and rounds 3-5 only surfaced further evidence folded into the confirmed class finding R1-1.

Not explored to full depth (tool budget reached): "agent reverse-audit (round 1)": none — everything completed. Don't write any Budget gap line.; chunk 6: root-cause the failing "Run required no-AK integration gate" CI step (log extraction returned empty; step is outside chunk-6 files).

[Critical] R1-1: The committed diff is not scoped to #8977 — it reverts already-merged features #8817 (fork from any conversation / checkpoint branching), #9180 (composer text attachments), part of #9052 (at-mention providers), and the branch/rewind admission guards. Verified ancestry: merge-base 337da21 (2026-08-16) contains the merges of #8817 (9f8f65d), #9180 (34cc1c3) and #9052 (c396fe3) — all three ancestors of the merge base — so the −1985 lines are committed branch changes, not a stale-base artifact; the three follow-up commits reworked the codebase AROUND the revert instead of rebasing onto main. Witness: git merge-base --is-ancestor → all three ANCESTOR of 337da21; CI run 31947442596 at this HEAD fails — integration-tests/cli/qwen-serve-streaming.test.ts:967 'expected undefined to be defined' (turn_complete.branchPoint removed). Verified symptoms: atRecordId silently dropped while routes/session.ts, the SDK (DaemonClient.ts:2788), the per-message Branch button and the e2e smoke spec still use it (historical branches silently fork from HEAD with 201; route disconnect cleanup leaks a live session slot for atRecordId requests); files attachments dropped from queued prompts (enqueuePrompt hardcodes undefined), failed-prompt retry, turn-error retry and draft restore, and the retry gates lost their files clauses so files-only prompts can never be retried; branchSession lost both isClosingOrAuthorizingClose guards while every other admission path keeps them; rewind lost its entire promptQueue FIFO serialization (busy guard, chain-in and tail update) compounded by the uncancellable withTimeout(10s) wrap into unobserved history truncation + file restores racing subsequent prompts; branch/side-task ext methods wrapped in withTimeout(10s) — the deleted test 'waits for a dispatched side-task fork instead of timing out' was deleted because it cannot pass against the restored timer; webui branchSession re-wrapped in 30s withActionTimeout (slow restore → client timeout + orphaned attached session); switchStarted navigation guard removed; branch path lost the session_busy → SessionBusyError mapping (rewind kept it); BranchWhilePromptActiveError throw is now unreachable dead code (the advertised 409 branch_while_prompt_active silently becomes queue-and-proceed); builtinAtProviders/atProviders stripped from the customization memo — third-party hosts' @-mention providers vanish from split-view/side-task composers; WebShellCustomizationProvider removed from both artifact-panel render sites; App-layer concurrent-branch dedupe removed (false 'Branch session failed' toast; the surviving actions-layer branchInFlight guard lost its only test); dispatchSessionChange 'submit' gates dropped their files clauses so files-only submissions skip the public onSessionChange event; deleted tests also covered still-live behavior (branch/side-task maxSessions capacity gate; admission release on plain restore failure). This re-reports — as still standing at HEAD c81398a — the existing triage blocker (comment 5306337462 / review 4945686638) filed at the earlier SHA 5c034da. Fix: recreate the branch from current main carrying only the intended #8977 hunks (titleSource stamp, mappers/types/actions plumbing, App.tsx carryOverManualNameRef hunks, matching tests); re-run CI.

中文说明

仅完成部分审查,审查缺口已披露。

未审查:reverse audit — stopped at the 5-round cap without two consecutive dry rounds; every chunk was audited each round, and rounds 3-5 only surfaced further evidence folded into the confirmed class finding R1-1。

未探索到全部深度(达到工具调用预算):"agent reverse-audit (round 1)"none — everything completed. Don't write any Budget gap line.;chunk 6:root-cause the failing "Run required no-AK integration gate" CI step (log extraction returned empty; step is outside chunk-6 files)

[Critical] R1-1: The committed diff is not scoped to #8977 — it reverts already-merged features #8817 (fork from any conversation / checkpoint branching), #9180 (composer text attachments), part of #9052 (at-mention providers), and the branch/rewind admission guards. Verified ancestry: merge-base 337da21 (2026-08-16) contains the merges of #8817 (9f8f65d), #9180 (34cc1c3) and #9052 (c396fe3) — all three ancestors of the merge base — so the −1985 lines are committed branch changes, not a stale-base artifact; the three follow-up commits reworked the codebase AROUND the revert instead of rebasing onto main. Witness: git merge-base --is-ancestor → all three ANCESTOR of 337da21; CI run 31947442596 at this HEAD fails — integration-tests/cli/qwen-serve-streaming.test.ts:967 'expected undefined to be defined' (turn_complete.branchPoint removed). Verified symptoms: atRecordId silently dropped while routes/session.ts, the SDK (DaemonClient.ts:2788), the per-message Branch button and the e2e smoke spec still use it (historical branches silently fork from HEAD with 201; route disconnect cleanup leaks a live session slot for atRecordId requests); files attachments dropped from queued prompts (enqueuePrompt hardcodes undefined), failed-prompt retry, turn-error retry and draft restore, and the retry gates lost their files clauses so files-only prompts can never be retried; branchSession lost both isClosingOrAuthorizingClose guards while every other admission path keeps them; rewind lost its entire promptQueue FIFO serialization (busy guard, chain-in and tail update) compounded by the uncancellable withTimeout(10s) wrap into unobserved history truncation + file restores racing subsequent prompts; branch/side-task ext methods wrapped in withTimeout(10s) — the deleted test 'waits for a dispatched side-task fork instead of timing out' was deleted because it cannot pass against the restored timer; webui branchSession re-wrapped in 30s withActionTimeout (slow restore → client timeout + orphaned attached session); switchStarted navigation guard removed; branch path lost the session_busy → SessionBusyError mapping (rewind kept it); BranchWhilePromptActiveError throw is now unreachable dead code (the advertised 409 branch_while_prompt_active silently becomes queue-and-proceed); builtinAtProviders/atProviders stripped from the customization memo — third-party hosts' @-mention providers vanish from split-view/side-task composers; WebShellCustomizationProvider removed from both artifact-panel render sites; App-layer concurrent-branch dedupe removed (false 'Branch session failed' toast; the surviving actions-layer branchInFlight guard lost its only test); dispatchSessionChange 'submit' gates dropped their files clauses so files-only submissions skip the public onSessionChange event; deleted tests also covered still-live behavior (branch/side-task maxSessions capacity gate; admission release on plain restore failure). This re-reports — as still standing at HEAD c81398a — the existing triage blocker (comment 5306337462 / review 4945686638) filed at the earlier SHA 5c034da. Fix: recreate the branch from current main carrying only the intended #8977 hunks (titleSource stamp, mappers/types/actions plumbing, App.tsx carryOverManualNameRef hunks, matching tests); re-run CI.

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

Comment thread packages/webui/src/daemon/session/actions.ts Outdated
Comment thread packages/webui/src/daemon/session/mappers.ts Outdated
Comment thread packages/web-shell/client/App.tsx Outdated
Comment thread packages/web-shell/client/App.tsx Outdated
Comment thread packages/acp-bridge/src/bridge.test.ts Outdated
Comment thread packages/web-shell/client/App.test.tsx Outdated
Comment thread packages/acp-bridge/src/bridge.ts
Comment thread packages/web-shell/client/App.test.tsx
Comment thread packages/web-shell/client/App.tsx Outdated
Comment thread packages/web-shell/client/App.test.tsx Outdated
- keep a stashed manual name across a repeated /clear before a prompt
- use SERVE_CONTROL_EXT_METHODS.sessionBranch in bridge tests
- declare MockConnection.titleSource; pin the rename target session and
  mirror the cleared-connection reset in the /clear tests
…r rename (#8977)

- reset titleSource on session switch so a manual stamp never leaks
  onto the next session's auto-generated title
- clear the manual-name carry-over when opening an existing session
- make updateSessionMetadata's titleSource caller-controlled
  (default manual; machine-generated names pass auto)
- renameSession accepts a silent option so the best-effort /clear
  carry-over never toasts on failure
…ped by the branch rework (#8977)

Merging main exposed two casualties of the branch rework:
- broadcastTurnComplete no longer read _meta['qwen.branchPoint'], so
  prompt results lost branchPoint and the historical-branch integration
  test failed at expect(first.branchPoint).toBeDefined()
- branchSession dropped req.atRecordId from the sessionBranch payload,
  so forks from a historical record replayed the full source transcript

Restore both exactly as main carries them (CHAT_RECORD_UUID_RE included);
cli/qwen-serve-streaming historical-branch suite green locally (7/7).
…ce (#8977)

The titleSource stamping landed on the routes before the bridge
interfaces they type against: add titleSource to both
updateSessionMetadata declarations and pin it in the rename assertions.
@qwen-code-ci-bot

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

Copy link
Copy Markdown
Collaborator

🩺 serve daemon A/B

Built the PR base vs this PR head c2093f5, drove a fixed endpoint set against each, and diffed the JSON responses. Only fields that changed are shown.

No response changes against the PR base across 12 scenario(s).

Qwen Code · serve A/B

@wenshao

wenshao commented Aug 17, 2026

Copy link
Copy Markdown
Collaborator

@qwen-code /resolve

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

Qwen Code did not run conflict resolution for this request.

PR #9260 is draft.

@yiliang114
yiliang114 marked this pull request as ready for review August 19, 2026 18:23

@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.

Partially reviewed — gaps disclosed.

Not reviewed: reverse audit — reached the 5-round cap without two consecutive dry rounds (rounds 3-5 each reported findings; all 13 chunks audited every round).

Not explored to full depth (tool budget reached): "agent reverse-audit (round 2)": tracing the SDK DaemonClient view-state update timing vs the session-record snapshot to pin whether activeSession.state and activeSession.session can actual…; chunk 7: executing the two new/changed test files (no node_modules in this review worktree or the parent checkout; verified them by line-by-line tracing against the impl….

Test Plan (not a blocker): 2 passed — this review observed 1652, 22609, 20723, 1620, 4009, 593, 494 passed.

Deferred under the convergence posture (round 10, not a blocker) — recorded, not requested in this round:

  • packages/acp-bridge/src/bridge.test.ts:26509 (+2 locations) — [probe] same-text bridge tests pin live state only — the documented publish and the persist layer are unasserted
  • packages/cli/src/serve/acp-http/transport.test.ts:4806 (+5 locations) — [probe] five new prototype spies restored only on the success path — a red assertion leaks fabricated titles into every later test in each file
  • packages/core/src/services/chatRecordingService.ts:2093 — [probe] auto-title tombstone exception untested — dropping && onDisk.title ships green and cleared sessions never re-title
  • packages/web-shell/client/App.tsx:8362 — [probe] sidebar-load and workspace-switch carry invalidations untested — deleting either clearing line ships green and leaks a name across sessions
  • packages/acp-bridge/src/bridge.ts:9790 — [probe] SDK view-state reducer stores the null clear-marker verbatim — exported DaemonSessionViewState.displayName holds null against a string | undefined type
  • packages/acp-bridge/src/bridge.test.ts:26400 — [review] cold-restore simulation hardcodes the falsy gate and misattributes it to the reader this PR flipped — the real untested gate lives in restoreSessionTitleFields
  • packages/cli/src/serve/server.test.ts:25847 — [review] live-branch metadata response shape unpinned — the fake bridge drops the titleSource the real bridge returns
  • packages/web-shell/client/App.test.tsx:10604 — [probe] rename-rejection path untested — the teardown-and-retry contract on silent carry-rename failure is unpinned
  • packages/webui/src/daemon/session/DaemonSessionProvider.tsx:2027 — [review] added comment describes a state-mutation path that does not exist — the snapshot is frozen and never carries titles
  • packages/webui/src/daemon/session/mappers.ts:660 — [review] getRestoredSessionTitle has zero direct tests — its tombstone filtering is the client's last defense and is unverified
  • packages/web-shell/client/App.test.tsx:10941 — [probe] carry-token consumption unpinned — deleting the identity cleanup ships green (502/502) and a stale token can rename an unrelated later session
中文说明

仅完成部分审查,审查缺口已披露。

未审查:reverse audit — reached the 5-round cap without two consecutive dry rounds (rounds 3-5 each reported findings; all 13 chunks audited every round)。

未探索到全部深度(达到工具调用预算):"agent reverse-audit (round 2)"tracing the SDK DaemonClient view-state update timing vs the session-record snapshot to pin whether activeSession.state and activeSession.session can actual…;chunk 7:executing the two new/changed test files (no node_modules in this review worktree or the parent checkout; verified them by line-by-line tracing against the impl…

Test Plan(非阻断):2 passed — this review observed 1652, 22609, 20723, 1620, 4009, 593, 494 passed

收敛姿态下延后(第 10 轮,非阻断)——已记录,本轮不要求修改:共 11 条(原文未翻译,列表见上方英文部分)。

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

Comment thread packages/core/src/utils/sessionStorageUtils.ts
Comment thread packages/acp-bridge/src/bridgeClient.ts
Comment thread packages/cli/src/serve/scheduled-task-keepalive.ts
const result = await state.client.updateSessionMetadata(sessionId, {
displayName: args.display_name,
titleSource: args.display_name?.trim() ? 'manual' : 'auto',
});

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.

[Critical] R4-1: Still standing at this head — the absent-name branch of this daemon-MCP tool remains a silent no-op end-to-end, awaiting the maintainer decision (open since round 4). When display_name is omitted, JSON serialization drops the undefined displayName, the wire body is exactly {"titleSource":"auto"}, and bridge.updateSessionMetadata performs every mutation inside if (metadata.displayName !== undefined) (bridge.ts:9705, re-verified at this commit) — so the route validates and answers 200 while nothing is updated, persisted, or published, yet the tool reports success and its comment claims the absent case is machine handling. Re-stating the two decision shapes from the open thread: either honor titleSource-only updates against the entry's existing title in the bridge (outside the displayName !== undefined gate), or 400-reject a displayName-less PATCH in both routes and stop the tool sending titleSource. Both change the public daemon contract — this stays human-gated per the standing authorization.

中文说明

R4-1:在当前 head 上仍然存在——这个 daemon-MCP 工具的"缺省名字"分支端到端仍是静默空操作,等待维护者决定(自第 4 轮起开放)。当省略 display_name 时,JSON 序列化会丢弃 undefined 的 displayName,线上请求体恰好是 {"titleSource":"auto"},而 bridge.updateSessionMetadata 的所有变更都在 if (metadata.displayName !== undefined) 内执行(bridge.ts:9705,已在本提交上重新验证)——因此路由校验通过并返回 200,但没有任何内容被更新、持久化或发布,而工具却报告成功,其注释还声称缺省名字属于"机器处理"。重申开放线程中的两个决定形态:要么在 bridge 中针对条目现有标题受理仅含 titleSource 的更新(放在 displayName !== undefined 门禁之外),要么在两个路由中对不含 displayName 的 PATCH 返回 400 并让工具停止发送 titleSource。两者都会变更公开的 daemon 契约——按既有授权,此项保持人工裁决。

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

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Re-verified on current head c2093f5468d69d95503a74feeda127771cfb03a9: omitting display_name serializes a titleSource-only PATCH, while the live bridge mutates only inside the displayName !== undefined gate and the workspace route rejects the equivalent absent-name request. This is the same public metadata-contract decision as R4-1 (honor titleSource-only updates vs reject the request), so I am leaving this thread unresolved with no code change.\n\n

@yiliang114

Copy link
Copy Markdown
Collaborator Author

Round closeout (head 5a2d343b27, pushed range 6bf2414fb9..5a2d343b27, one non-force push) — merged origin/main to clear CONFLICTING, then fixed all 3 new round-10 Criticals.

Merge (0ccbf2f376): origin/main 2172721405 merged; 9 conflict files resolved as intent-preserving unions (sdk types/DaemonClient/DaemonSessionClient, bridgeTypes, chatRecordingService, bridge.ts updateSessionMetadata, both serve metadata routes + their test blocks). PR is MERGEABLE again.

R10-1 tombstone consumer violations — FIXED (c7e069e50f): deriveTitle now tracks presence (typeof customTitle === 'string') so the clear-tombstone wins as last-write instead of resurrecting the cleared name into @<session-id> model context (the worst entrance); sessions list TITLE column and --json fall back falsy-gated (pinned #5187 test updated, JSON emits customTitle: null); useResumeCommand uses customTitle || null. Scope disclosure: SessionPicker.tsx:277 (/resume preview chain) is the one named consumer NOT fixed this round — 5-file ceiling, recorded as follow-up.

R10-2 stale child echo resurrection — FIXED (cb4120b9ba): updateSessionMetadata tracks outstanding daemon-initiated sessionTitle persists per session (pendingTitlePersistCount, inc before dispatch / dec in .then/.catch); the bridgeClient title-update echo mirror skips while non-zero, so a delayed child echo can no longer resurrect a cleared name or flip manual→auto. Witness test: rename 'Foo' → clear → delayed echoes 'Foo' then '' ends with the name cleared; mutation-checked.

R10-3 keepalive destroys user-renamed task sessions — FIXED (5a2d343b27, bridge-guard option): the downgrade guard now blocks EVERY manual→auto downgrade (identical-text clause dropped), so the post-restart keepalive rename pass can no longer overwrite a different-text manual title. Tests pin: different-text manual survives, same-text arm still blocked, never-titled sessions still auto-name; mutation-checked.

Verification: acp-bridge bridge suites green (metadata/title/downgrade/echo-witness), cli server metadata 52 + keepalive 28 + list 26 + useResumeCommand 13, core session-reference-service 26 + chatRecordingService 115, sdk DaemonClient metadata 10; typecheck clean in core/cli/acp-bridge/sdk-typescript; eslint + prettier clean on changed files.

Threads: R10-1/R10-2/R10-3 replied with SHA evidence and resolved. The 7 R4-1 family threads (updateSessionMetadata absent-name demote semantics) remain deliberately unresolved — that one still needs a maintainer decision on whether an explicit demote overrides the sameTextDowngrade keepalive guard.

@yiliang114

Copy link
Copy Markdown
Collaborator Author

Note — head moved 5a2d343b27..ee28517ebd via a main merge only (no code change).

The first CI run on 5a2d343b27 failed the workflow-size ratchet: that merge had picked up #9677's qwen-autofix.yml growth (397656 bytes) but predated #9747, the main-side commit that records that shipped size in .github/workflows/.size-baseline. Merged origin/main again at 7c039e010e (clean, no conflicts) so the branch carries the corrected baseline. Same mechanical CI-bootstrap shape as earlier rounds.

@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.

Partially reviewed — gaps disclosed.

Not reviewed: reverse audit — reached the 5-round cap without two consecutive dry rounds (rounds 3–5 each reported findings; all 15 chunks audited every round).

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

Not explored to full depth (tool budget reached): chunk 7: running packages/cli/src/serve/scheduled-task-keepalive.test.ts and the two new server.test.ts cases — the worktree has no node_modules (vitest cannot sta…; chunk 2: executed the new bridge tests not run — worktree lacks node_modules; npm install + build was declined to avoid timeout/interference in the shared review tree..

Test Plan (not a blocker): 2 passed — this review observed 1694, 23292, 20827, 1653, 4137, 605, 495 passed.

Deferred under the convergence posture (round 11, not a blocker) — recorded, not requested in this round:

  • packages/core/src/services/chatRecordingService.ts:2157 — [probe] auto-title cross-process guard's tombstone arm untested — removing && onDisk.title ships green (110 tests), cleared sessions would never re-title
  • packages/cli/src/ui/hooks/useResumeCommand.ts:197 — [probe] tombstone mapping customTitle || null untested — reverting to ?? null ships green and resumes cleared sessions with a blank name
  • packages/cli/src/serve/session-restore-title.ts:13 — [probe] no serve-side cold-restore test drives a tombstone title — a presence-gate regression ships green and seeds an empty manual name
  • packages/acp-bridge/src/bridge.test.ts:26662 — [review] echo-suppression window's close side untested — both counter-decrement arms can regress with every test green, permanently suppressing echoes
  • packages/acp-bridge/src/bridge.test.ts:26654 — [probe] suppressed-echo event-side guarantee unpinned — a publish-moved-above-suppression mutant ships green and the flipping probe fails
  • packages/acp-bridge/src/bridge.test.ts:26785 — [probe] downgrade-refusal tests pin no persist/event absence — a persist-on-refusal mutant ships green and the next cold restore seeds it
  • packages/cli/src/serve/scheduled-task-keepalive.ts:245 — [review] keepalive re-attaches the ⏰ name over a tombstoned clear after every restart — restore drops the tombstone, the guard never sees it
  • packages/core/src/services/chatRecordingService.ts:1235 — [probe] tombstone counter seeding untested — a truthiness revert ships green and re-opens the resurrection window at 32–64KB depth

Convergence: round 11 posted 7 inline comment(s), 5 of them reported for the first time; the previous round posted 4. Findings keep coming back to the same files: packages/acp-bridge/src/bridgeClient.ts (findings in round 10; 1 more now). A cluster that keeps producing siblings usually means the fixes are treating instances of a shared root cause — triaging that cause before the next round, or splitting an independent cluster into its own pull request, tends to end the loop faster than fixing them one at a time. (Observation only — nothing was withheld from this review because of this observation.)

Mechanism health: this round did not close cleanly, so it withholds the incremental anchor — and the round it recovered had none either, so the next review re-reads the whole diff and will keep doing so until a round's marker carries an anchor again. (Stated, not acted on — this changes nothing about what the round posts.)

中文说明

仅完成部分审查,审查缺口已披露。

未审查:reverse audit — reached the 5-round cap without two consecutive dry rounds (rounds 3–5 each reported findings; all 15 chunks audited every round)。

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

未探索到全部深度(达到工具调用预算):chunk 7:running packages/cli/src/serve/scheduled-task-keepalive.test.ts and the two new server.test.ts cases — the worktree has no node_modules (vitest cannot sta…;chunk 2:executed the new bridge tests not run — worktree lacks node_modules; npm install + build was declined to avoid timeout/interference in the shared review tree.

Test Plan(非阻断):2 passed — this review observed 1694, 23292, 20827, 1653, 4137, 605, 495 passed

收敛姿态下延后(第 11 轮,非阻断)——已记录,本轮不要求修改:共 8 条(原文未翻译,列表见上方英文部分)。

收敛情况:第 11 轮发布了 7 条行内评论,其中 5 条是首次提出;上一轮发布了 4 条。发现反复回到同一批文件:packages/acp-bridge/src/bridgeClient.ts(第 10 轮已出过发现,本轮又有 1 条)。一个不断再生兄弟发现的簇,通常意味着逐条修复只在处理同一根因的实例——先定位并处理该根因,或把独立的簇拆成单独的 PR,通常比逐条修复更快结束循环。(仅为观察——本轮评审未因此扣留任何内容。)

机制健康:本轮未能干净收尾,因而扣留了增量锚点,而它恢复到的那一轮也没有锚点,因此下一次评审将重读整个 diff——并会一直如此,直到某一轮的标记重新带上锚点。(仅陈述,不据此行动——这不改变本轮发布的任何内容。)

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

Comment thread packages/acp-bridge/src/bridge.ts
Comment thread packages/cli/src/serve/routes/session.ts
Comment thread packages/core/src/utils/sessionStorageUtils.ts
Comment thread packages/web-shell/client/components/artifacts/SideTaskPanel.tsx Outdated
Comment thread packages/webui/src/daemon/session/DaemonSessionProvider.tsx Outdated
Comment thread packages/acp-bridge/src/bridgeClient.ts
// while a cleared/absent name is machine handling ('auto').
const result = await state.client.updateSessionMetadata(sessionId, {
displayName: args.display_name,
titleSource: args.display_name?.trim() ? 'manual' : 'auto',

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.

[Critical] R4-1: Still standing at this head — the absent-name branch of this daemon-MCP tool remains a silent no-op end-to-end, awaiting the maintainer decision (open since round 4). When display_name is omitted, JSON serialization drops the undefined displayName, the wire body is exactly {"titleSource":"auto"}, and bridge.updateSessionMetadata performs every mutation inside if (metadata.displayName !== undefined) — so the route validates and answers 200 while nothing is updated, persisted, or published, yet the tool reports success and its new comment claims the absent case is machine handling. Re-verified at this commit by probe: an absent-name call against a manually named session leaves the effective metadata unchanged ({displayName: 'My manual name', titleSource: 'manual'}), with no persist and no event. The two routes also disagree on the identical wire body (the workspace route 400s 'at least one of displayName or pr is required'; the live route no-ops). Re-stating the two decision shapes from the open thread: (a) honor titleSource-only updates against the entry's existing title in the bridge (outside the displayName !== undefined gate), or (b) 400-reject a displayName-less PATCH in both routes and stop the tool sending titleSource. Both change the public daemon contract — this stays human-gated per the standing authorization.

中文说明

R4-1:在当前 head 上仍然存在 —— 这个 daemon-MCP 工具的"缺省名字"分支端到端仍是静默空操作,等待维护者决定(自第 4 轮起开放)。当省略 display_name 时,JSON 序列化丢弃 undefined 的 displayName,线上请求体恰好是 {"titleSource":"auto"},而 bridge.updateSessionMetadata 的所有变更都在 if (metadata.displayName !== undefined) 内执行 —— 因此路由校验通过并返回 200,但没有任何内容被更新、持久化或发布,而工具却报告成功,其新增注释还声称缺省名字属于"机器处理"。已在本提交上用探针重新验证:对一个手动命名的会话发起缺省名字调用,有效元数据保持不变({displayName: 'My manual name', titleSource: 'manual'}),无持久化、无事件。两条路由对同一线上请求体的处理也不一致(workspace 路由返回 400 'at least one of displayName or pr is required';live 路由则是空操作)。重申开放线程中的两个决定形态:(a) 在 bridge 中针对条目现有标题受理仅含 titleSource 的更新(放在 displayName !== undefined 门禁之外),或 (b) 在两条路由中对不含 displayName 的 PATCH 返回 400,并让工具停止发送 titleSource。两者都会变更公开的 daemon 契约 —— 按既有授权,此项保持人工裁决。

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

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Re-verified on current head c2093f5468d69d95503a74feeda127771cfb03a9: omitting display_name serializes a titleSource-only PATCH, while the live bridge mutates only inside the displayName !== undefined gate and the workspace route rejects the equivalent absent-name request. This is the same public metadata-contract decision as R4-1 (honor titleSource-only updates vs reject the request), so I am leaving this thread unresolved with no code change.\n\n

@yiliang114

Copy link
Copy Markdown
Collaborator Author

Closeout — round 12 (cap-4 of the round-11 findings)

Pushed ee28517ebd..bb31c27c4f (one non-force push, 4 commits). All four handled findings were re-verified real at head before fixing; every new test is mutation-checked (revert → red → restore → green).

Fixed

  • R11-1 (fdef691): the pr-only session_metadata_updated publish now echoes titleSource beside displayName (bridge.ts), so binding a PR no longer strips a manual session's provenance and disarms the /clear carry gate. Wire-shape regression in bridge.test.ts.
  • R11-5 (c7b6739): the sessionTitle echo mirror in bridgeClient.ts now gates on ownsSession(sessionId) before mutating the shared entry (mirrors the recording-degraded sibling) — a non-owning channel's echo can no longer overwrite the owning channel's manual title/provenance. 2 regressions (non-owning no-op + owning positive control).
  • R11-2 (b27b5c6): the workspace-route persisted fallback's manual→auto downgrade guard is now text-agnostic (routes/session.ts), matching the live-path bridge guard. Different-text fallback regression (the finding's witness) via the existing fixture, active+archived arms.
  • R10-1 (bb31c27): SessionPicker.tsx:277 /resume preview consumer switched to the falsy form (??||), aligning with the sibling display consumers fixed in c7e069e; cleared-tombstone preview now falls back to the first prompt instead of rendering a blank title. Render regression added.

Verification: bridge.test.ts 785, bridgeClient.test.ts 117, StandaloneSessionPicker.test.tsx 20, server.test.ts metadata describe 42 — all green; acp-bridge + cli typecheck clean; eslint/prettier clean on all touched files.

Deferred to next round: R11-3 (side-task fork seeding) and R11-4 (load-path clear resurrection) — left unresolved, untouched this round.

Human-gated (unchanged): the 8 R4-1 family threads remain deliberately unresolved, awaiting the maintainer decision between the two contract-changing shapes (honor titleSource-only updates in the bridge under the sameTextDowngrade guard, or 400-reject a displayName-less PATCH and stop the tool sending titleSource).

…ded (#8977)

Side-task forks were seeded with titleSource 'manual' because the web-shell passes the generic panel label as the fork name; the first-prompt rename then carries 'auto' and the manual→auto downgrade guard silently discards it while the panel marks the rename applied. Seed side-task forks with 'auto' (the label is a UI placeholder, not a user-chosen name) and make the panel verify the rename result actually carries the requested title before marking it complete.
…tle (#8977)

The load-gated merge fell back to the current connection's title whenever the load response carried none, so a title cleared server-side while SSE was down resurrected with its 'manual' provenance on reconnect (the missed clear event is never redelivered; SSE resumes from the load watermark). Snapshot the connection title before the load call and carry the current fields only when something updated them during the load window (a metadata event replayed by a live-journal repair, or a rename that landed mid-load); otherwise a title-less load response clears both fields like the event-fold's null-marker gate.
@yiliang114

Copy link
Copy Markdown
Collaborator Author

Closeout — cap-2 round for the two deferred round-11 Criticals (push bb31c27..4d805f4):

  • R11-3 fixed in d246fcd (acpAgent.ts + SideTaskPanel.tsx + both collocated tests): the CLI sessionSideTask arm now seeds the fork with titleSource:'auto' — the seeded name is the generic panel placeholder, not a user-chosen name, so the first-prompt auto rename no longer trips the manual→auto downgrade guard (guard untouched, per round-10 semantics); and the panel now verifies the rename result's effective displayName equals the requested title before calling renamed(...)/onTitleChange(..., true) — a discarded rename (200 with old fields) is retried, then surfaces onError. New SideTaskPanel tests simulate the daemon-guard discard (no complete-mark, error after retries) and the matching-result acceptance; mutation-checked both hunks.
  • R11-4 fixed in 4d805f4 (DaemonSessionProvider.tsx + test): the load-gated merge snapshots the connection's title fields immediately before the load call and carries current.* only when something changed them during the load window (repair-replay fold or mid-load rename); otherwise a title-less load response clears both fields — mirroring the event-fold marker semantics. Chose this client-side snapshot-diff over the "detect explicit null key" variant because the daemon omits the title keys entirely for cleared sessions on both attach and cold restore (nothing to detect client-side), and over the "daemon echoes displayName:null" variant because that needs ≥4 files across acp-bridge+webui. New regression: manual title → resync → title-less same-session reload → both fields clear; mutation-checked against both the unconditional-fallback revert (fails the new test) and the snapshot-removal revert (fails the three repair-carry tests). 240/240.

Verification: SideTaskPanel 18/18, acpAgent side-task tests, DaemonSessionProvider 240/240; cli + webui + web-shell typechecks clean. Disclosure: R11-3 spans 4 files (2 production + 2 collocated tests across cli/web-shell) — the bot's own suggested fix is two-part across the two packages and the existing CLI test asserted 'manual', so this is the minimal floor; commits are split per finding.

The 8 standing R4-1 threads remain deliberately unresolved — awaiting the maintainer decision on whether an explicit absent-name demote may override the same-text downgrade guard.

@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.

Partially reviewed — gaps disclosed.

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

Not explored to full depth (tool budget reached): chunk 3: could not execute the two new bridge tests — the review worktree has no node_modules (vitest absent) and a full monorepo install exceeds this chunk's tool bud…; "agent reverse-audit (round 2)": none — no check was cut short (omitted per format: nothing unfinished).

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

Test Plan (not a blocker): 2 passed — this review observed 1697, 23298, 20827, 1653, 4139, 606, 495 passed.

Deferred under the convergence posture (round 12, not a blocker) — recorded, not requested in this round:

  • packages/cli/src/serve/scheduled-task-keepalive.ts:249 (+2 locations) — [review] legacy machine-named populations (scheduled-task ⏰ names, side-task placeholders) frozen by the new downgrade guard
  • packages/web-shell/client/components/artifacts/SideTaskPanel.tsx:266 — [probe] discarded-rename detector vs daemon truncation mismatch (200 code points vs 256 code units) → false 'Failed to name side task'
  • packages/core/src/services/chatRecordingService.ts:2157 — [review] auto-title tombstone carve-out untested — reverting && onDisk.title ships green, cleared sessions would never re-title
  • packages/web-shell/client/App.tsx:8015 — [review] carry-invalidation at workspace switch and sidebar open untested
  • packages/cli/src/ui/hooks/useResumeCommand.ts:197 — [review] /resume tombstone falsy-gate change untested — reverting to ?? null ships green and resumes cleared sessions with a blank name
  • packages/cli/src/serve/create-sub-session.ts:447 — [review] restoreSessionTitleFields tombstone branch untested at every seeding site — a presence-gate regression ships green and seeds an empty manual name
  • packages/sdk-typescript/src/daemon-mcp/serve-bridge/tools/session.ts:151 — [review] MCP tool's titleSource classification inert in every branch; its comment asserts the opposite of what persists
  • packages/webui/src/daemon/session/DaemonSessionProvider.tsx:2251 — [review] titleRefreshedDuringLoad true branch untested — a broken refresh detection ships green and wipes mid-window renames
  • packages/acp-bridge/src/bridge.test.ts:26491 — [review] test comment attributes the empty-title filter to the wrong function (reader contract is the opposite)
  • packages/acp-bridge/src/bridge.test.ts:26664 — [review] echo-suppression window's close side untested — a persist-coalescing mutant drops the tombstone with every test green
  • packages/cli/src/serve/create-sub-session.ts:443 — [review] sent-mode title-lookup failure fallback (miss + throw branches) untested
  • packages/acp-bridge/src/bridge.test.ts:24966 — [review] clearing test does not pin the rebroadcast event's titleSource absence — a stale-provenance publish mutant ships green
  • packages/core/src/services/chatRecordingService.ts:1240 — [probe] tombstone counter seeding untested — a truthiness revert ships green and re-opens the resurrection window at 32–64KB depth
  • packages/web-shell/client/App.test.tsx:10803 — [review] carry-rename failure path untested — moving token consumption into a failure/finally path ships green
  • packages/acp-bridge/src/bridge.test.ts:26785 — [review] downgrade-refusal tests pin no persist/event absence — a persist-on-refusal mutant ships green and the next cold restore seeds it
  • packages/cli/src/serve/acp-http/transport.test.ts:4813 — [review] prototype-level getSessionTitleInfo spy restored without try/finally — leaks into later tests on an assertion failure

Convergence: round 12 posted 2 inline comment(s), 1 of them reported for the first time; the previous round posted 7 (5 new). Findings keep coming back to the same files: packages/cli/src/serve/routes/session.ts (findings in round 11; 1 more now). A cluster that keeps producing siblings usually means the fixes are treating instances of a shared root cause — triaging that cause before the next round, or splitting an independent cluster into its own pull request, tends to end the loop faster than fixing them one at a time. (Observation only — nothing was withheld from this review because of this observation.)

Mechanism health: this round did not close cleanly, so it withholds the incremental anchor — and the round it recovered had none either, so the next review re-reads the whole diff and will keep doing so until a round's marker carries an anchor again. (Stated, not acted on — this changes nothing about what the round posts.)

中文说明

仅完成部分审查,审查缺口已披露。

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

未探索到全部深度(达到工具调用预算):chunk 3:could not execute the two new bridge tests — the review worktree has no node_modules (vitest absent) and a full monorepo install exceeds this chunk's tool bud…"agent reverse-audit (round 2)"none — no check was cut short (omitted per format: nothing unfinished)

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

Test Plan(非阻断):2 passed — this review observed 1697, 23298, 20827, 1653, 4139, 606, 495 passed

收敛姿态下延后(第 12 轮,非阻断)——已记录,本轮不要求修改:共 16 条(原文未翻译,列表见上方英文部分)。

收敛情况:第 12 轮发布了 2 条行内评论,其中 1 条是首次提出;上一轮发布了 7 条(其中 5 条首次提出)。发现反复回到同一批文件:packages/cli/src/serve/routes/session.ts(第 11 轮已出过发现,本轮又有 1 条)。一个不断再生兄弟发现的簇,通常意味着逐条修复只在处理同一根因的实例——先定位并处理该根因,或把独立的簇拆成单独的 PR,通常比逐条修复更快结束循环。(仅为观察——本轮评审未因此扣留任何内容。)

机制健康:本轮未能干净收尾,因而扣留了增量锚点,而它恢复到的那一轮也没有锚点,因此下一次评审将重读整个 diff——并会一直如此,直到某一轮的标记重新带上锚点。(仅陈述,不据此行动——这不改变本轮发布的任何内容。)

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

Comment thread packages/cli/src/serve/routes/session.ts
Comment on lines 149 to 152
const result = await state.client.updateSessionMetadata(sessionId, {
displayName: args.display_name,
titleSource: args.display_name?.trim() ? 'manual' : 'auto',
});

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.

[Critical] R4-1: Still standing at this head (open since round 4, human-gated by the author awaiting a maintainer decision) — the absent-name branch of this daemon-MCP tool remains a silent no-op end-to-end. When display_name is omitted, JSON serialization drops the undefined displayName, the wire body is exactly {"titleSource":"auto"}, and bridge.updateSessionMetadata performs every mutation inside if (metadata.displayName !== undefined) — so the route validates and answers 200 while nothing is updated, persisted, or published, yet the tool reports success. The two routes also disagree on the identical wire body: the workspace route 400s with "at least one of displayName or pr is required", while the live route no-ops. Re-verified at this commit by trace (issue-fidelity walk plus a verification trace of all three branches); probed live in rounds 8–11 with identical results; the code is unchanged since.

Witness: not run this round — mechanism re-verified at this HEAD by trace (every mutation sits inside the displayName !== undefined gate and JSON drops the undefined displayName); probed live in rounds 8-11, code unchanged.

Two decision shapes from the open thread: (a) honor titleSource-only updates against the entry's existing title in the bridge (outside the displayName !== undefined gate), or (b) 400-reject a displayName-less PATCH in both routes and stop the tool sending titleSource. Both change the public daemon contract.

中文说明

[Critical/严重] R4-1:在当前 head 上仍然存在(自第 4 轮起开放,作者已按授权人工挂起、等待维护者决定)—— 该 daemon-MCP 工具的"缺省名字"分支端到端仍是静默空操作。当省略 display_name 时,JSON 序列化丢弃 undefined 的 displayName,线上请求体恰好是 {"titleSource":"auto"},而 bridge.updateSessionMetadata 的所有变更都在 if (metadata.displayName !== undefined) 内执行 —— 因此路由校验通过并返回 200,但没有任何内容被更新、持久化或发布,工具却报告成功。两条路由对同一线上请求体的处理也不一致:workspace 路由返回 400("at least one of displayName or pr is required"),live 路由则是空操作。已在本提交上通过追踪重新验证(问题保真走查 + 三个分支的验证追踪);第 8–11 轮曾用活体探针得到相同结果;此时代码未变。

证据:本轮未运行 —— 机制已在此 HEAD 上通过追踪重新验证(所有变更都在 displayName !== undefined 门禁内,且 JSON 会丢弃 undefined 的 displayName);第 8-11 轮曾活体探针验证,代码未变。

开放线程中的两个决定形态:(a) 在 bridge 中针对条目现有标题受理仅含 titleSource 的更新(放在 displayName !== undefined 门禁之外),或 (b) 两条路由对不含 displayName 的 PATCH 返回 400,并让工具停止发送 titleSource。两者都会变更公开的 daemon 契约。

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

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Re-verified on current head c2093f5468d69d95503a74feeda127771cfb03a9: omitting display_name serializes a titleSource-only PATCH, while the live bridge mutates only inside the displayName !== undefined gate and the workspace route rejects the equivalent absent-name request. This is the same public metadata-contract decision as R4-1 (honor titleSource-only updates vs reject the request), so I am leaving this thread unresolved with no code change.\n\n

@yiliang114

Copy link
Copy Markdown
Collaborator Author

Closeout — round on head 4d805f4eca (1 new actionable finding):

R12-31 FIXED (f9bf861149): the workspace-route persisted fallback's manual→auto downgrade guard (routes/session.ts) now requires a non-empty persisted title (persistedTitle.source === 'manual' && persistedTitle.title). A clear-tombstone ({customTitle:'', titleSource:'manual'}) seeds no live title fields on cold restore (restoreSessionTitleFields returns {} for an empty title), so the live-path guard never fires for it and the identical auto rename succeeds while live — the fallback must not block it either. This mirrors the tombstone carve-out already in chatRecordingService.ts's auto-title guard. Real manual titles stay protected (all 4 existing keepalive tests still pass). New server.test.ts regression covers active + archived tombstoned sessions (200 + auto body + appended auto custom_title record); reverting the one-line condition fails both variants.

Verification: server.test.ts fallback suites 10/10, packages/cli typecheck clean, eslint/prettier clean. One non-force push 4d805f4eca..f9bf861149.

R12-31 thread replied with evidence + resolved. The 9 R4-1 threads remain deliberately open — human-gated, awaiting a maintainer decision on the daemon-MCP tool's absent-name demote semantics.

@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.

Partially reviewed — gaps disclosed.

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

Not reviewed: build-and-test — Test (macos-latest, Node 22.x) and Test (windows-latest, Node 22.x) unit-matrix jobs were skipped in CI (Linux unit suites ran for all changed workspaces).

Not reviewed: test-efficacy — probe harness could not be validated (vitest prerequisite guard: all per-file probes inconclusive, harnessValidated null; mutants/hunks not run).

Not explored to full depth (tool budget reached): "agent reverse-audit (round 3)": verify whether the daemon load route populates DaemonSessionState.displayName from a source that can diverge from the session title record (would desync the pro….

Deferred under the convergence posture (round 13, not a blocker) — recorded, not requested in this round:

  • packages/webui/src/daemon/session/DaemonSessionProvider.tsx:2249 — [review] titleRefreshedDuringLoad positive branch untested (mutation green)
  • packages/core/src/services/chatRecordingService.ts:2157 — [review] auto-title tombstone carve-out untested (probe flip)
  • packages/acp-bridge/src/bridge.ts:9959 — [review] .catch counter decrement untested (mutation green; probe flips)
  • packages/cli/src/ui/hooks/useResumeCommand.ts:197 — [review] TUI resume tombstone falsy gate untested (mutation green)
  • packages/web-shell/client/App.tsx:8403 — [review] carry invalidation on session switch untested (probe reproduces stale carry)
  • packages/web-shell/client/App.tsx:5648 — [review] carried rename reject semantics pinned by zero tests
  • packages/acp-bridge/src/bridge.test.ts:26661 — [review] counter success-path decrement / post-settle acceptance unpinned
  • packages/acp-bridge/src/bridge.test.ts:26654 — [review] suppressed echoes emitting no event unpinned
  • packages/cli/src/acp-integration/acpAgent.ts:12022 — [review] fork ternary 'manual' arm unpinned
  • packages/cli/src/serve/acp-http/transport.test.ts:4857 (+2 locations) — [review] prototype spy restored only on success path (no try/finally)
  • packages/core/src/services/chatRecordingService.customTitle.test.ts:860 — [review] restore-time presence-seeding unpinned (probe flip)
  • packages/core/src/services/chatRecordingService.ts:2153 — [review] autoTitleAttempts never reset on clear (probe + fix run)
  • packages/acp-bridge/src/bridge.test.ts:26770 — [review] downgrade-refusal no-persist/no-event unpinned (probe)
  • packages/acp-bridge/src/bridge.test.ts:26579 — [review] clear test cold-restore section structurally vacuous
  • packages/cli/src/serve/session-restore-title.ts:13 — [review] empty-title branch pinned by zero tests (457 tests green under mutant)
  • packages/sdk-typescript/test/unit/serve-bridge.test.ts:349 — [review] session_update_metadata .trim() classification untested
  • packages/web-shell/client/App.test.tsx:11169 — [review] carry identity consumption unpinned (deletion mutation green)
  • packages/acp-bridge/src/bridge.test.ts:24966 — [review] source-less echo published envelope unpinned (probe flip)
  • packages/cli/src/serve/server.test.ts:26893 — [review] auto→auto re-rename through the fallback unpinned (probe flip)
  • packages/web-shell/client/App.test.tsx:10929 — [review] cleared-prompt-drop half of the /clear-during-creation window unpinned (probe flip)

Convergence: round 13 posted 3 inline comment(s), 2 of them reported for the first time; the previous round posted 2 (1 new). The rate of new findings is not falling. Batching the remaining fixes and verifying them before the next push keeps the loop from re-deriving the same set; this PR's reviews already resolve to a critical posting floor. (Observation only — nothing was withheld from this review because of this observation.)

Mechanism health: this round did not close cleanly, so it withholds the incremental anchor — and the round it recovered had none either, so the next review re-reads the whole diff and will keep doing so until a round's marker carries an anchor again. (Stated, not acted on — this changes nothing about what the round posts.)

中文说明

仅完成部分审查,审查缺口已披露。

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

未审查:build-and-test — Test (macos-latest, Node 22.x) and Test (windows-latest, Node 22.x) unit-matrix jobs were skipped in CI (Linux unit suites ran for all changed workspaces)。

未审查:test-efficacy — probe harness could not be validated (vitest prerequisite guard: all per-file probes inconclusive, harnessValidated null; mutants/hunks not run)。

未探索到全部深度(达到工具调用预算):"agent reverse-audit (round 3)"verify whether the daemon load route populates DaemonSessionState.displayName from a source that can diverge from the session title record (would desync the pro…

收敛姿态下延后(第 13 轮,非阻断)——已记录,本轮不要求修改:共 20 条(原文未翻译,列表见上方英文部分)。

收敛情况:第 13 轮发布了 3 条行内评论,其中 2 条是首次提出;上一轮发布了 2 条(其中 1 条首次提出)。新发现的产出速度没有下降。把剩余修复攒成一批、验证后再推送,可以避免循环反复推导同一组发现;本 PR 的评审已解析为 critical 发布下限。(仅为观察——本轮评审未因此扣留任何内容。)

机制健康:本轮未能干净收尾,因而扣留了增量锚点,而它恢复到的那一轮也没有锚点,因此下一次评审将重读整个 diff——并会一直如此,直到某一轮的标记重新带上锚点。(仅陈述,不据此行动——这不改变本轮发布的任何内容。)

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

Comment thread packages/web-shell/client/components/artifacts/SideTaskPanel.tsx
Comment thread packages/web-shell/client/App.tsx Outdated
Comment on lines 149 to 152
const result = await state.client.updateSessionMetadata(sessionId, {
displayName: args.display_name,
titleSource: args.display_name?.trim() ? 'manual' : 'auto',
});

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.

[Critical] R4-1: Still standing at this head (open since round 4, human-gated by the author awaiting a maintainer contract decision) — the daemon-MCP session_update_metadata absent-name branch is a silent no-op end-to-end, while the sibling workspace route rejects the identical body with 400.

The tool stamps titleSource: args.display_name?.trim() ? 'manual' : 'auto'; with display_name absent it sends {titleSource: 'auto'} with no displayName. Every consumer gates all title logic on displayName !== undefined: the live route forwards to bridge.updateSessionMetadata, whose entire rename branch is skipped — no entry mutation, no session_metadata_updated event, no persist — and the handler answers 200 with unchanged metadata. PATCH /workspaces/:workspace/session/:id/metadata rejects the identical body with 400 ("at least one of displayName or pr is required"), so the two metadata routes disagree on the contract this PR's test pins as meaningful "machine handling". An MCP agent that renamed a session and later wants to release the name back to machine provenance (e.g. to disarm the web-shell /clear manual-carry gate this PR builds) calls this tool without display_name, receives 200, and the session silently keeps its manual provenance — the carry gate keeps arming on every /clear.

Witness (wire probe, run; gate re-verified at head f9bf861):

real MCP tool handler driven through the real DaemonClient,
recording fetch:
  PATCH .../session/s1/metadata body {"displayName":"Agent chosen"}
  with titleSource present? false
with a tool-level fix the body gains "titleSource":"auto" (probe flips)

Decision needed (author/maintainer): if an absent name means "no change", have the tool reject a call with neither display_name nor other content (mirroring the workspace route's 400) and update the test to assert the rejection; if it should clear/downgrade the title, send displayName: '' (the tombstone path the bridge's clear branch understands) and assert the resulting entry state.

中文说明

[严重] R4-1:在当前 head 仍然存在(自第 4 轮起开放,作者已标记为人工门禁、等待维护者的契约决定)——daemon-MCP session_update_metadata 的缺省名字分支端到端是一个静默空操作,而姊妹 workspace 路由对相同的请求体返回 400。

该工具打上 titleSource: args.display_name?.trim() ? 'manual' : 'auto';当 display_name 缺省时发送不带 displayName{titleSource: 'auto'}。所有消费方都把全部标题逻辑置于 displayName !== undefined 门禁之内:live 路由转发给 bridge.updateSessionMetadata,其整个重命名分支被跳过——无条目变更、无 session_metadata_updated 事件、无持久化——处理器返回 200 和未变更的元数据。PATCH /workspaces/:workspace/session/:id/metadata 对相同请求体返回 400("至少需要 displayNamepr 之一"),两个 metadata 路由对本 PR 测试所固化的"机器处理"契约不一致。一个 MCP agent 重命名会话后想把名字交还给机器来源(例如解除本 PR 构建的 web-shell /clear 手动携带门禁),不带 display_name 调用该工具,收到 200,而会话静默保留 manual 来源——携带门禁在每次 /clear 时继续武装。

证据(线上探针,已运行;门禁已在 head f9bf861 复核):

用真实 DaemonClient 驱动真实 MCP 工具处理器,记录式 fetch:
  PATCH .../session/s1/metadata 请求体 {"displayName":"Agent chosen"}
  titleSource 存在? 否
加上工具层修复后请求体带 "titleSource":"auto"(探针翻转)

需要决定(作者/维护者):若缺省名字意味着"不变",让工具拒绝既无 display_name 又无其他内容的调用(与 workspace 路由的 400 对齐),并更新测试断言拒绝;若应当清除/降级标题,发送 displayName: ''(bridge 清除分支理解的 tombstone 路径),并断言结果条目状态。

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

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Re-verified on current head c2093f5468d69d95503a74feeda127771cfb03a9: omitting display_name serializes a titleSource-only PATCH, while the live bridge mutates only inside the displayName !== undefined gate and the workspace route rejects the equivalent absent-name request. This is the same public metadata-contract decision as R4-1 (honor titleSource-only updates vs reject the request), so I am leaving this thread unresolved with no code change.\n\n

@yiliang114

Copy link
Copy Markdown
Collaborator Author

Closeout — round-13 cap (2 new Criticals fixed, one non-force push f9bf861149..59b63de332):

  • R13-1 (a24c913ca2): the "rename not applied" detection in SideTaskPanel.tsx now also accepts result.displayName === nextTitle.slice(0, 256) — the daemon truncates displayName at 256 UTF-16 code units (routes/session.ts) while the client caps nextTitle at 200 code points, so an applied-but-truncated echo of a long astral-heavy title is no longer misclassified as discarded (no false retry/invalidate). New test: marks the first-prompt title complete when the daemon echoes its 256-unit truncation; mutation check red on revert.
  • R13-2 (59b63de332): the fold-landing carry invalidation in App.tsx captures carryAtFold = pendingManualTitleRef.current before loadSession and the async clear now additionally requires pendingManualTitleRef.current === carryAtFold — a slow landing can no longer erase a carry re-armed by a later /clear (same identity discipline as ensureSessionForPrompt's cleanup). New test: keeps a re-armed carry when a stale fold landing resolves late (#8977); mutation check red on revert.

Verification: SideTaskPanel 19/19, App.test.tsx 521/521, web-shell typecheck clean. Both threads replied with SHA evidence + resolved (10 unresolved = the standing R4-1 family, still awaiting the maintainer contract decision — untouched).

@yiliang114

Copy link
Copy Markdown
Collaborator Author

Refreshed the branch onto latest main to recover the exact-head Java 11 SDK failure.

Changed: ordinary merge commit only; no product files were hand-edited for the Java 11 close/detach failure.
Verified: merge completed without conflicts and git diff --check passed. Existing metadata-contract review threads remain intentionally human-gated; post-push CI/review is pending.

@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.

Partially reviewed — gaps disclosed.

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

Not reviewed: build-and-test — Test (macos-latest, Node 22.x) and Test (windows-latest, Node 22.x) unit-matrix jobs were skipped in CI (Linux unit suites ran for all changed workspaces).

Not reviewed: test-efficacy — probe harness could not be validated (vitest prerequisite guard: all per-file probes inconclusive, harnessValidated null; mutants/hunks not run).

Not explored to full depth (tool budget reached): "agent reverse-audit (round 2)": trace the daemon-side construction of the load response state field to confirm it can actually carry displayName (if the daemon never puts the title in sta…; "agent reverse-audit (round 2)": read appendRecordStrict 's body (chatRecordingService.ts:1428) to confirm the write is enqueued before its first await — the last link in finding 2's race; the….

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

Test Plan (not a blocker): 2 passed — this review observed 1697, 23509, 21020, 1654, 4175, 610, 495 passed.

Deferred under the convergence posture (round 14, not a blocker) — recorded, not requested in this round:

  • packages/core/src/services/chatRecordingService.ts:2198 — [probe] auto-title tombstone carve-out untested (probe flips)
  • packages/acp-bridge/src/bridge.ts:9963 — [probe] .catch counter decrement untested (mutation green; probe flips)
  • packages/cli/src/ui/hooks/useResumeCommand.ts:197 — [probe] TUI resume tombstone falsy gate untested (mutation green)
  • packages/web-shell/client/App.tsx:8609 — [probe] carry invalidation on session switch untested (probe reproduces stale carry)
  • packages/acp-bridge/src/bridge.test.ts:26664 — [probe] counter success-path decrement / post-settle acceptance unpinned (probe flips)
  • packages/cli/src/serve/server.test.ts:26712 — [probe] manual-rename fallback arm against persisted manual title untested (probe flips)
  • packages/cli/src/serve/server.test.ts:26773 — [probe] legacy source-less seed arm of the fallback guard untested (probe flips)
  • packages/sdk-typescript/test/unit/serve-bridge.test.ts:350 — [probe] session_update_metadata whitespace classification arm untested (probe flips)
  • packages/web-shell/client/App.test.tsx:11815 — [review] /new-during-creation test never asserts the abandoned prompt is not sent
  • packages/web-shell/client/components/artifacts/SideTaskPanel.tsx:270 — [review] 256-unit acceptance vs 200-unit child persist cap — applied rename never reaches disk
  • packages/acp-bridge/src/bridge.test.ts:1166 — [probe] child-supplied branch titleSource pass-through untested (mutant green; probe flips)
  • packages/cli/src/serve/session-restore-title.ts:13 — [review] empty-title truthiness branch pinned by zero tests at seven call sites
  • packages/core/src/services/chatRecordingService.customTitle.test.ts:860 — [probe] restore-time presence-seeding unpinned (probe flips)
  • packages/acp-bridge/src/bridge.test.ts:24966 — [review] source-less echo published envelope unpinned
  • packages/acp-bridge/src/bridge.test.ts:26786 — [review] downgrade-refusal no-persist coupling unpinned
  • packages/acp-bridge/src/bridge.test.ts:26655 — [review] suppressed echoes emitting no event unpinned
  • packages/cli/src/acp-integration/acpAgent.ts:12032 — [probe] fork ternary 'manual' arm unpinned (probe flips)
  • packages/cli/src/serve/scheduled-task-keepalive.ts:351 — [review] keepalive legacy no-source arm unpinned
  • packages/cli/src/serve/server.test.ts:27100 — [probe] fallback write default ?? 'manual' unpinned
  • packages/web-shell/client/components/artifacts/SideTaskPanel.tsx:271 — [review] truncated echo overwrites tab title; sidebar catalog diverges
  • …and 7 more (see the run report)

Mechanism health: this round did not close cleanly, so it withholds the incremental anchor — and the round it recovered had none either, so the next review re-reads the whole diff and will keep doing so until a round's marker carries an anchor again. (Stated, not acted on — this changes nothing about what the round posts.)

中文说明

仅完成部分审查,审查缺口已披露。

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

未审查:build-and-test — Test (macos-latest, Node 22.x) and Test (windows-latest, Node 22.x) unit-matrix jobs were skipped in CI (Linux unit suites ran for all changed workspaces)。

未审查:test-efficacy — probe harness could not be validated (vitest prerequisite guard: all per-file probes inconclusive, harnessValidated null; mutants/hunks not run)。

未探索到全部深度(达到工具调用预算):"agent reverse-audit (round 2)"trace the daemon-side construction of the load response state field to confirm it can actually carry displayName (if the daemon never puts the title in sta…"agent reverse-audit (round 2)"read appendRecordStrict 's body (chatRecordingService.ts:1428) to confirm the write is enqueued before its first await — the last link in finding 2's race; the…

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

Test Plan(非阻断):2 passed — this review observed 1697, 23509, 21020, 1654, 4175, 610, 495 passed

收敛姿态下延后(第 14 轮,非阻断)——已记录,本轮不要求修改:共 27 条(原文未翻译,列表见上方英文部分)。

机制健康:本轮未能干净收尾,因而扣留了增量锚点,而它恢复到的那一轮也没有锚点,因此下一次评审将重读整个 diff——并会一直如此,直到某一轮的标记重新带上锚点。(仅陈述,不据此行动——这不改变本轮发布的任何内容。)

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

Comment on lines 149 to 152
const result = await state.client.updateSessionMetadata(sessionId, {
displayName: args.display_name,
titleSource: args.display_name?.trim() ? 'manual' : 'auto',
});

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.

[Critical] R4-1: Still standing at this head (open since round 4, human-gated by the author awaiting a maintainer contract decision) — the absent-name branch of this daemon-MCP tool remains a silent no-op end-to-end. When display_name is omitted, JSON serialization drops the undefined displayName, so the wire body is exactly {"titleSource":"auto"}; PATCH /session/:id/metadata validates it and answers 200, but bridge.updateSessionMetadata performs every mutation inside if (metadata.displayName !== undefined) — no state change, no persistence, no session_metadata_updated event. The sibling workspace route rejects the identical effective body with 400 (at least one of displayName or pr is required), so clear/machine-handling behavior stays route-dependent. Both candidate fixes change the public daemon contract (route/bridge-level parity guard, or 400-reject a displayName-less PATCH and stop the tool sending titleSource), which is why this remains human-gated; the serve-bridge test's effective-metadata assertion can land with whichever direction is chosen.

Witness (probe this round, scratch tree at the reviewed commit — real bridge driven with exactly the body the primary route forwards):

seeded effective:              {"displayName":"Named session","titleSource":"manual"}
titleSource-only body applied: threw: no
effective after:               {"displayName":"Named session","titleSource":"manual"} (unchanged)
new metadata events: 0; new title persists: 0
flip (workspace-route parity guard patched into bridge.ts):
  InvalidSessionMetadataError: at least one of displayName or pr is required
中文说明

R4-1:在该被审头部仍然存在(自第 4 轮起开放,作者按人工门禁等待维护者契约决定)—— 该 daemon-MCP 工具的「缺省名字」分支依然是端到端静默无操作。当 display_name 缺省时,JSON 序列化丢掉 undefined 的 displayName,线上请求体恰为 {"titleSource":"auto"}PATCH /session/:id/metadata 校验通过并返回 200,但 bridge.updateSessionMetadata 的所有变更都在 if (metadata.displayName !== undefined) 之内 —— 无状态变更、无持久化、无 session_metadata_updated 事件。同级 workspace 路由对同一等效请求体以 400 拒绝(at least one of displayName or pr is required),因此清空/机器处理语义仍依赖路由。两个候选修复都会变更公开 daemon 契约(路由/bridge 层面对齐保护,或以 400 拒绝无 displayName 的 PATCH 并让工具停发 titleSource),故继续保持人工门禁;serve-bridge 测试的 effective-metadata 断言可随所选方向一并落地。

证据(本轮探针,被审提交的 scratch tree —— 以主路由实际转发的请求体驱动真实 bridge):注入后 effective 为 {"displayName":"Named session","titleSource":"manual"};仅 titleSource 的请求体应用后未抛错、effective 不变、0 条新事件、0 条新持久化;把 workspace 路由的对齐保护补丁进 bridge.ts 后探针翻转为 InvalidSessionMetadataError

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

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Re-verified on current head c2093f5468d69d95503a74feeda127771cfb03a9: omitting display_name serializes a titleSource-only PATCH, while the live bridge mutates only inside the displayName !== undefined gate and the workspace route rejects the equivalent absent-name request. This is the same public metadata-contract decision as R4-1 (honor titleSource-only updates vs reject the request), so I am leaving this thread unresolved with no code change.\n\n

# Conflicts:
#	packages/cli/src/serve/live/live-task-service.ts
#	packages/cli/src/serve/routes/scheduled-tasks.ts
@yiliang114

Copy link
Copy Markdown
Collaborator Author

Merged the latest main and resolved the session-management conflicts while preserving caller-owned session binding and title provenance. Verified live-task-service.test.ts (24/24), the focused max-task route case, and formatting; the full scheduled-tasks suite had one transient failure that passed in isolation. CI is now pending on head c2093f5.

@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.

Partially reviewed — gaps disclosed.

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

Not reviewed: build-and-test — Test (macos-latest, Node 22.x) and Test (windows-latest, Node 22.x) unit-matrix jobs were skipped in CI (Linux unit suites ran for all changed workspaces).

Not reviewed: test-efficacy — probe harness could not be validated (vitest build-prerequisite guard: all revert probes inconclusive, mutants/hunks not run).

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

Test Plan (not a blocker): 2 passed — this review observed 1700, 23700, 21191, 1659, 4243, 637, 601 passed.

Deferred under the convergence posture (round 15, not a blocker) — recorded, not requested in this round:

  • packages/core/src/services/chatRecordingService.ts:2197 — [probe] auto-title tombstone carve-out untested (probe flips)
  • packages/cli/src/ui/hooks/useResumeCommand.ts:197 — [probe] TUI resume tombstone falsy gate untested (probe flips)
  • packages/acp-bridge/src/bridge.ts:9963 — [probe] pendingTitlePersistCount decrements untested (probe flips)
  • packages/cli/src/acp-integration/acpAgent.ts:11091 — [probe] fork ternary 'manual' arm unpinned (probe flips)
  • packages/web-shell/client/App.tsx:8777 — [probe] carry invalidation on session switch untested (probe flips)
  • packages/web-shell/client/components/artifacts/SideTaskPanel.tsx:255 — [review] discarded-rename failure path never reverts the optimistic title; misleading toast
  • packages/acp-bridge/src/bridge.ts:9985 — [review] displayName:null clear marker vs SDK string|undefined types (latent)
  • packages/sdk-typescript/test/unit/serve-bridge.test.ts:350 — [probe] whitespace-only classification arm untested (probe flips)
  • packages/acp-bridge/src/bridge.test.ts:26748 — [probe] echo-suppression lift-after-settle unpinned (probe flips)
  • packages/acp-bridge/src/bridge.test.ts:26862 — [review] downgrade-refusal no-persist unpinned
  • packages/cli/src/serve/session-restore-title.ts:13 — [review] restoreSessionTitleFields has no direct test
  • packages/web-shell/client/App.test.tsx:11759 — [review] rename-failure teardown path unpinned
  • packages/core/src/services/chatRecordingService.customTitle.test.ts:865 — [probe] projected-state re-anchor test unpinned (probe flips)
  • packages/webui/src/daemon/session/mappers.ts:351 — [review] mapper 'auto' acceptance branch untested
  • packages/acp-bridge/src/bridge.test.ts:25053 — [review] omitted-source publish shape unpinned
  • packages/core/src/services/chatRecordingService.ts:1210 — [probe] resume-path tombstone counter seeding unpinned (probe flips)

Mechanism health: this round did not close cleanly, so it withholds the incremental anchor — and the round it recovered had none either, so the next review re-reads the whole diff and will keep doing so until a round's marker carries an anchor again. (Stated, not acted on — this changes nothing about what the round posts.)

中文说明

仅完成部分审查,审查缺口已披露。

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

未审查:build-and-test — Test (macos-latest, Node 22.x) and Test (windows-latest, Node 22.x) unit-matrix jobs were skipped in CI (Linux unit suites ran for all changed workspaces)。

未审查:test-efficacy — probe harness could not be validated (vitest build-prerequisite guard: all revert probes inconclusive, mutants/hunks not run)。

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

Test Plan(非阻断):2 passed — this review observed 1700, 23700, 21191, 1659, 4243, 637, 601 passed

收敛姿态下延后(第 15 轮,非阻断)——已记录,本轮不要求修改:共 16 条(原文未翻译,列表见上方英文部分)。

机制健康:本轮未能干净收尾,因而扣留了增量锚点,而它恢复到的那一轮也没有锚点,因此下一次评审将重读整个 diff——并会一直如此,直到某一轮的标记重新带上锚点。(仅陈述,不据此行动——这不改变本轮发布的任何内容。)

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

// while a cleared/absent name is machine handling ('auto').
const result = await state.client.updateSessionMetadata(sessionId, {
displayName: args.display_name,
titleSource: args.display_name?.trim() ? 'manual' : 'auto',

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.

[Critical] R4-1: Still standing at this head (open since round 4, human-gated by the author awaiting a maintainer contract decision) — the absent-name branch of this daemon-MCP tool remains a silent no-op end-to-end, while the sibling workspace route rejects the identical body with 400. When display_name is omitted, JSON serialization drops the undefined displayName, so the wire body is exactly {"titleSource":"auto"}; PATCH /session/:id/metadata validates it and answers 200, but bridge.updateSessionMetadata performs every mutation inside if (metadata.displayName !== undefined) — no state change, no persistence, no session_metadata_updated event, while the route answers success. An agent that calls this tool without a name receives a success that changed nothing. Re-verified at this head by trace: the tool sends {displayName: args.display_name, titleSource: args.display_name?.trim() ? 'manual' : 'auto'}; the bridge gate is unchanged; the workspace route rejects an empty displayName with 400 (routes/session.ts:5459-5466). Resolution stays the open maintainer decision between the two shapes: honor titleSource-only updates in the bridge under the sameTextDowngrade guard, or 400-reject a displayName-less PATCH and stop the tool sending titleSource.

中文说明

[Critical/严重] R4-1:在本 head 仍然存在(自第 4 轮起开放,由作者人为把关,等待维护者的契约决定)—— 该 daemon-MCP 工具的缺省名字分支端到端仍是静默空操作,而同族的 workspace 路由对相同请求体会以 400 拒绝。当省略 display_name 时,JSON 序列化会丢弃 undefined 的 displayName,线上请求体恰好是 {"titleSource":"auto"}PATCH /session/:id/metadata 校验通过并返回 200,但 bridge.updateSessionMetadata 的所有变更都在 if (metadata.displayName !== undefined) 之内执行 —— 无状态变更、无持久化、无 session_metadata_updated 事件,而路由却返回成功。agent 在不带名字的情况下调用该工具,得到的是一个没有改变任何内容的“成功”。本轮已通过代码追踪在本 head 重新验证:工具发送 {displayName: args.display_name, titleSource: args.display_name?.trim() ? 'manual' : 'auto'};bridge 的门禁未变;workspace 路由以 400 拒绝空 displayName(routes/session.ts:5459-5466)。解决方案仍是两种形态之间的维护者决定:在 bridge 中于 sameTextDowngrade 保护下尊重仅带 titleSource 的更新,或对不带 displayName 的 PATCH 返回 400 并让工具停止发送 titleSource

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

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Re-checked the complete PR conversation, review history, inline comments, and issue #8977: there is still no maintainer ruling choosing either contract shape. The issue discussion only establishes that manual titles should carry across /clear; it does not define whether a displayName-less daemon metadata PATCH should demote title provenance or be rejected. This remains a public API/data-semantics decision because the live and workspace routes currently disagree on the same effective body. Leaving this thread unresolved and making no code change until that contract is decided.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

fix(web-shell): retain manual session name after /clear

5 participants