Skip to content

refactor(review): split SKILL.md into a core body plus verdict-gated reference files - #9804

Merged
wenshao merged 4 commits into
mainfrom
refactor/review-skill-references-9787
Aug 24, 2026
Merged

refactor(review): split SKILL.md into a core body plus verdict-gated reference files#9804
wenshao merged 4 commits into
mainfrom
refactor/review-skill-references-9787

Conversation

@wenshao

@wenshao wenshao commented Aug 23, 2026

Copy link
Copy Markdown
Collaborator

What this PR does

Splits the bundled review skill's manifest into a core body plus reference files loaded on demand. The injected core keeps target resolution, fan-out, verification and presentation — and every invariant that binds all runs: the write prohibition, the posting gates, and the step headings all cross-references resolve against. The conditional territory moves into three reference files beside it, which the orchestrator reads right after argument parsing, gated by the verdict it already holds: the posting protocol (Step 7) loads only when posting is live — an effective comment flag or a same-session request to post, on a PR target at high effort; the persistence step (report, artifact registration, incremental cache) loads before Step 8 on every run except cross-repo lightweight mode; the Aone-specific paths load before remote matching when the host or platform says Aone. The compose-state field list relocates verbatim from the posting step to the verdict section where the composer is invoked, so a report-only run writes that state without owing the posting file a read. All moved content is byte-verbatim with one restatement: a relocated field entry referenced the "no Suggestion text in the review body" rule after that rule moved, so the entry now restates the rule's substance in the core (pinned by a new revert guard). One verified drive-by: three stale sentences still claiming comment-status had no Aone backing are aligned with the a1-backed behavior that already landed (#9627) and that its revert-guard test already mandates.

Why it's needed

The skill's manifest was injected whole on every run — 381,984 bytes, ~95k tokens, 19× the next-largest bundled skill — although large stretches are conditional territory a given run never touches: the posting protocol on runs that never post, the persistence step on cross-repo lightweight runs, the Aone paths on GitHub runs. The parse-args verdict already decides which of these apply, and progressive disclosure via references/ is an established bundled-skill pattern (dataviz ships one). Measured effect on the injected prompt: 381,125 → 304,427 body bytes. A typical non-posting run (local/file/PR, any effort) saves ~58 KB (≈15%, ≈14.5k tokens); a cross-repo lightweight run saves ~77 KB (≈20%); a posting run loads the posting file back and saves only the Aone block. The issue's "roughly a third" estimate is not reachable under its own whole-step guardrail — Steps 1 and 6 dominate the core, and fragmenting them would strip rules from steps that remain in core; effort-gated splits of the reverse audit and the low-tier inline pass are the natural follow-up and are noted in the issue artifact.

Reviewer Test Plan

How to verify

  • npm run build && npm run bundle, then : | node dist/cli.js review parse-args --stdin — expect a clean verdict JSON and no "NOT built from the review sources" staleness warning (the build digests the new reference files on both sides of the staleness check).
  • Check dist/bundled/review/ ships the manifest plus the three reference files byte-identical to the sources, with no DESIGN.md or test files.
  • cd packages/core && npx vitest run src/skills/bundled/review/SKILL.test.ts src/skills/bundled-skills.integration.test.ts — every revert guard now governs the full corpus (core + references); new pins cover the gates, the core-retained invariants and the no-duplication invariant.
  • cd packages/cli && npx vitest run src/commands/review/run-skill-parity.test.ts — the filename-template oracle reads the corpus.
  • E2E with a real model: a headless low-effort review from the fresh bundle on a scratch repo showed the verdict-gated reads firing correctly — the persistence file loaded before the report step, the posting and Aone files skipped — and the full lifecycle ending in the machine-readable completion line. The run also correctly flagged the planted bug. A local medium review of this change itself (14 agents, 10/10 chunks) exercised the restructured skill end-to-end as well. Full reports in .qwen/issues/issue-9787.md.

Evidence (Before & After)

N/A (prompt-structure refactor; evidence is the measured injection size and the E2E logs referenced above).

Tested on

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

Environment (optional)

npm run build && npm run bundle + node dist/cli.js; headless E2E with real model calls.

Risk & Scope

  • Main risk or tradeoff: a run could reach a step without having read its reference file if the gating prose were wrong. Mitigations: the gates live in the injected core only; each pointer section restates the invariants that bind a run even when it never loads the file (write prohibition, posting gates); the E2E run observed the gated reads firing correctly.
  • Not validated / out of scope: a GHE-specific reference file (the GHE notes are sentences woven into universal paragraphs — extracting them would strip rules from steps that remain in core; the Step 7 note rides the posting file with its step). Effort-gated splits of the reverse-audit and low-tier inline passes (documented follow-up).
  • Breaking changes / migration notes: none — run behavior is unchanged wherever the same content loads; the one intentional behavior fix aligns the Aone comment-status wording with the already-shipped a1 backing (feat(review): back comment-status and presubmit for Aone Code targets #9627).

Linked Issues

Fixes #9787

中文说明

本 PR 做了什么

将内置 review 技能的清单文件拆分为核心正文 + 按需加载的参考文件。注入的核心保留目标解析、扇出、验证与呈现,以及所有对任何运行都有约束力的不变量:写入禁令、发布门控、以及所有交叉引用所指向的步骤标题。条件性内容移入旁边的三个参考文件,由编排器在参数解析后按 verdict 已有的判定按需读取:发布协议(Step 7)仅在发布生效时加载(--comment 生效或用户在本会话中要求发布,且为 high 档的 PR 目标);持久化步骤(报告、工件注册、增量缓存)在除跨仓轻量模式外的所有运行中于 Step 8 前加载;Aone 专属路径在 host 或 platform 表明是 Aone 时于 match-remote 之前加载。compose 状态字段表从发布步骤逐字搬迁到调用 compose-review 的裁决小节,使仅出报告的非发布运行无需加载发布文件即可写该状态。所有搬迁内容均为逐字节原样,仅有一处重述:一个搬迁后的字段条目原指向「Suggestion 文本不得进入 review 正文」规则,该规则已随发布文件移出,因此该条目现在核心中重述规则实质(并有新的防回归测试钉住)。另有一处已核实的顺带修复:三处仍声称 comment-status 无 Aone 支持的过时句子,与 #9627 已落地的 a1 支持行为对齐(该 PR 的防回归测试本就强制要求如此)。

为什么需要

技能清单此前在每次运行时全量注入 —— 381,984 字节、约 9.5 万 token,是第二大内置技能的 19 倍 —— 尽管其中大段是某次运行根本不会触及的条件性内容:从不发布的运行用不到发布协议,跨仓轻量运行用不到持久化步骤,GitHub 运行用不到 Aone 路径。parse-args 的 verdict 本就已判定哪些内容适用,且 references/ 渐进式披露是既有的内置技能模式(dataviz 已在用)。对注入量的实测效果:381,125 → 304,427 正文字节。典型非发布运行(local/file/PR、任意档位)节省约 58 KB(约 15%,约 1.45 万 token);跨仓轻量运行节省约 77 KB(约 20%);发布运行会重新加载发布文件,仅节省 Aone 块。Issue 中「约三分之一」的估计在其自身的「整步搬迁」护栏下不可达 —— Step 1 与 Step 6 占据核心主体,拆散它们会把规则从留在核心的步骤中剥离;按 effort 门控拆分反向审计与低档内联通道是自然的后续项,已记录在 issue 工件中。

评审者测试计划

如何验证

  • npm run build && npm run bundle,然后 : | node dist/cli.js review parse-args --stdin —— 应得到干净的 verdict JSON,且无「NOT built from the review sources」过期警告(构建在过期检查的两侧都会摘要新的参考文件)。
  • 检查 dist/bundled/review/ 携带清单与三个参考文件、与源码逐字节一致,且不含 DESIGN.md 或测试文件。
  • cd packages/core && npx vitest run src/skills/bundled/review/SKILL.test.ts src/skills/bundled-skills.integration.test.ts —— 所有防回归守卫现在覆盖完整语料(核心 + 参考文件);新增钉住门控表、核心保留的不变量与无重复不变量。
  • cd packages/cli && npx vitest run src/commands/review/run-skill-parity.test.ts —— 文件名模板 oracle 改为读取整个语料。
  • 真实模型 E2E:用新构建的 bundle 在临时仓库做 headless 低档 review,观察到按需读取正确触发 —— 报告步骤前加载了持久化文件、跳过了发布与 Aone 文件 —— 全流程以机器可读完成行结束,并正确命中植入的 bug。对本改动自身的一次 local medium review(14 个 agent、10/10 分块)也端到端跑通了重构后的技能。完整报告见 .qwen/issues/issue-9787.md

前后对比证据

N/A(提示词结构重构;证据为上述注入量实测与 E2E 日志)。

测试环境

OS 状态
🍏 macOS
🪟 Windows ⚠️
🐧 Linux ⚠️

环境(可选)

npm run build && npm run bundle + node dist/cli.js;headless E2E 使用真实模型调用。

风险与范围

  • 主要风险或权衡:若门控措辞有误,运行可能在未读取参考文件的情况下到达某一步。缓解:门控只存在于注入的核心中;每个指针小节都重述了即使运行从未加载该文件也依然约束它的不变量(写入禁令、发布门控);E2E 运行已观察到按需读取正确触发。
  • 未验证 / 超出范围:GHE 专属参考文件(GHE 说明是织在通用段落中的句子,抽出它们会把规则从留在核心的步骤中剥离;Step 7 的 GHE 说明随其步骤进入发布文件)。按 effort 门控拆分反向审计与低档内联通道(已记录的后续项)。
  • 破坏性变更 / 迁移说明:无 —— 加载相同内容的运行行为不变;唯一有意的行为修复是把 Aone comment-status 措辞与已落地的 a1 支持(feat(review): back comment-status and presubmit for Aone Code targets #9627)对齐。

关联 Issue

Fixes #9787

…ferences (#9787)

The bundled review skill's SKILL.md (381,984 bytes, ~95k tokens) was
injected whole on every run, although large stretches are conditional
territory a given run never touches. Split it into a core body plus
reference files the orchestrator reads on demand, gated on the parse-args
verdict it already holds:

- references/posting.md — whole Step 7 (authorisation gate, presubmit,
  anchors, submit, 422/head-drift recovery, publish-assets). Loaded only
  when posting is live (comment.effective or a same-session post request;
  PR + high only). Its compose-state field list relocates verbatim to
  Step 6's Verdict section, because a report-only run still writes that
  state for compose-review without ever loading posting.md.
- references/persistence.md — whole Step 8 (tail batching, report,
  artifact registration, incremental cache). Loaded before Step 8 on every
  run except cross-repo lightweight mode.
- references/aone.md — the self-contained Aone blocks of Step 1 (clone and
  two-host rules, a1-backed surface, the five submit failure shapes, dedup
  shape notes). Loaded before match-remote when the host/meta says Aone.

The split moves whole steps; incident-backed rules stay with the step they
guard. The write prohibition and the posting gates remain in the injected
core so they bind runs that never load a file. No enterprise.md: the GHE
host notes are sentences woven into universal paragraphs, and extracting
them would strip rules from steps that remain in core.

Injected prompt: 381,125 -> 304,427 body bytes. Typical non-posting runs
(local/file/PR, any effort) save ~58 KB (~15%); lightweight runs ~77 KB
(~20%); posting runs load posting.md back and save only the Aone block.
The issue's "roughly a third" estimate is unreachable under its own
whole-step guardrail — Steps 1 and 6 dominate the core and interleaving
forbids fragmenting them; Step 5 / Step 3C effort-gated splits are the
natural follow-up.

Drive-by, verified against #9627's revert-guard test and the a1
implementation: three stale sentences still claiming comment-status "has
no Aone backing" are aligned with the a1-backed behavior that landed in
#9627.

Tests: SKILL.test.ts revert guards now govern the full corpus (SKILL.md +
references), with new pins for the gates, the core-retained invariants and
the no-duplication invariant; run-skill-parity reads the corpus oracle;
bundled-skills integration pins the shipped reference files. Verified by
build + bundle, all review-skill suites, and a real-model E2E run of the
split skill (verdict-gated reads observed: persistence.md loaded before
Step 8, posting.md and aone.md correctly skipped).
@github-actions github-actions Bot added the review/self-reported The linked issue was opened by the PR author (self-reported) label Aug 23, 2026
@wenshao

wenshao commented Aug 23, 2026

Copy link
Copy Markdown
Collaborator Author

E2E verification report

Status: VERIFIED_FIXED — real-model run against the fresh bundle (node dist/cli.js, built from the split sources), plus a full local medium /review of the change itself. Full report: .qwen/issues/issue-9787.md.

Headless run from the split files (scratch repo, --effort low)

  • Started cleanly from the injected core — first tool call was parse-args --stdin from the CLI-written args file; no crash on the new pointer sections; no "NOT built from the review sources" staleness warning from any subcommand (parse-args, capture-local, cost-ledger, cleanup). The build stamp now digests the reference files on both sides of the staleness check.
  • Verdict-gated loading observed: the model read_file'd dist/bundled/review/references/persistence.md immediately before Step 8, and read neither posting.md (run never posts) nor aone.md (not an Aone target) — exactly the gating the split prescribes.
  • Step 8 ran from the reference file: report + cost ledger written, artifact registered — the saved report is the proof the on-demand read worked in a real run.
  • Completed with the machine-readable line verbatim: Review complete: local — quick pass, not posted (1 unverified findings), exit 0 (model qwen3.8-max, 8 API calls, 0 errors). The review correctly flagged the planted = vs == bug.
  • Bundle shipping verified: dist/bundled/review/ = core 305,286 B + aone 8,005 B + persistence 18,547 B + posting 54,042 B, byte-identical to sources; DESIGN.md and test files excluded.

Local medium review of this change (this session)

14 agents over 10 chunks, coverage 10/10, build green (18 workspaces), all diff-touched suites green. Confirmed one valid finding against the split — a relocated compose-state entry pointing at the never-in-body rule after that rule moved to the posting file (dangling for report-only runs) — fixed in-commit with a new revert-guard pin; one rejected finding (the bare-number Aone probe is already scheduled by the mandated review meta step). Verdict composed mechanically; report saved under .qwen/reviews/.

Notes

  • Pre-existing, not introduced here: the resume.requested / resume.effective verdict bullet appears twice in the core (both copies present at the merge base).
  • The review's capture swept an unrelated untracked probe file (packages/cli/src/serve/probe-claims.test.ts, zero assertions); it is excluded from this PR. Its run log recorded 12 of 34 daemon-worktree-guard escapes as ALLOWED while the suite stayed green — worth a separate look.

@qwen-code-ci-bot

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

Copy link
Copy Markdown
Collaborator

Qwen Triage finished — CI landed green on 7ba1644 and the deferred approval was posted. finalize run

Qwen Triage 已完成 —— 7ba1644 的 CI 全绿,延迟审批已提交。查看 finalize 运行

@qwen-code-ci-bot

Copy link
Copy Markdown
Collaborator

Thanks for the PR!

Template looks good ✓

Problem: observed and measured, not theoretical — issue #9787 documents the bundled review skill injecting 381,984 bytes (~95k tokens) whole on every run, ~19× the next-largest bundled skill, with large stretches (posting protocol, persistence, Aone paths) being conditional territory a given run never touches.

Direction: aligned. Progressive disclosure via references/ is an established bundled-skill pattern — dataviz already ships three reference files in-tree — and the gating conditions already exist in the parse-args verdict, so this adds conditional reads rather than new decision logic. Doesn't touch auth, sandbox, model selection, telemetry, release, or public contract.

Size: core paths touched (packages/core/src/skills/bundled/review/). Production lines: 806 (SKILL.md +31/−384, three new reference files +391); test lines: 114; generated/schema: 0. The author is a maintainer and code owner for packages/core/, so the Tier-1 refactor size block does not apply; also under the 1000-line large-PR advisory.

Approach: the scope feels right — whole-step moves gated by the verdict the run already holds, matching the guardrail the issue itself sets ("move whole steps, never strip rules from steps that stay in core"). The deviation from the issue's "~one third" estimate is honest: actual injection drops ≈15–20% per run because Steps 1 and 6 dominate the core, and fragmenting them would strip rules from steps that remain. Two small carry-alongs, both justified: the compose-state field list relocates from the posting step to the verdict section so report-only runs don't owe the posting file a read, and one verified drive-by aligns three stale Aone comment-status sentences with the a1-backed behavior that already landed in #9627.

Risk: no changed file matches the high-risk paths from the revert-history analysis. No elevated risk signals.

Moving on to code review. 🔍

中文说明

感谢贡献!

模板完整 ✓

问题: 已观测且有实测数据,不是理论性问题——issue #9787 记录了内置 review 技能每次运行全量注入 381,984 字节(约 9.5 万 token),约为第二大内置技能的 19 倍,其中大段内容(发布协议、持久化、Aone 路径)是特定运行根本不会触及的条件性内容。

方向: 对齐。references/ 渐进式披露是既有的内置技能模式——dataviz 已在仓库中携带三个参考文件——且门控条件本就存在于 parse-args 的 verdict 中,因此这只是按需读取,不引入新的判断逻辑。不涉及 auth、sandbox、模型选择、telemetry、release 或公共契约。

规模: 触及核心路径(packages/core/src/skills/bundled/review/)。生产行数:806(SKILL.md +31/−384,三个新参考文件 +391);测试行数:114;生成/schema:0。作者是 packages/core/ 的 code owner(maintainer),Tier-1 的 refactor 规模硬拦截不适用;也未达到 1000 行的大 PR 提醒线。

方案: 范围合理——按运行已持有的 verdict 整步搬迁,与 issue 自设的护栏一致("只搬整步、不把规则从留在核心的步骤中剥离")。对 issue 中"约三分之一"估计的偏离是诚实的:由于 Step 1 与 Step 6 占据核心主体,拆散它们会把规则从留在核心的步骤中剥离,实际每次运行注入量下降约 15–20%。两处小的附带改动均有理由:compose 状态字段表从发布步骤搬到裁决小节,使仅出报告的运行无需读取发布文件;以及一处已核实的顺带修复,把三处过时的 Aone comment-status 表述与 #9627 已落地的 a1 支持行为对齐。

风险: 无变更文件命中 revert 历史分析得出的高风险路径。无升级风险信号。

进入代码审查 🔍

Qwen Code · qwen3.8-max

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

@qwen-code-ci-bot

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

Copy link
Copy Markdown
Collaborator

Code review

The approach is the one I'd have proposed from the issue alone — whole-step moves gated by the verdict the run already holds, gates living in the injected core — and the execution is faithful. Three things I checked mechanically rather than by eye:

The move is verbatim. A line-level set comparison of the diff: all 393 removed lines reappear byte-identical in the three reference files, except exactly seven documented rewordings — the three stale Aone/comment-status sentences (below), the (see there for every field) pointer rewritten to (every field is listed just below) for the relocated field list, the suggestionsDroppedAsDuplicates entry restating the never-in-body rule whose full text moved to posting.md, the state-object intro now naming the core's field list as authoritative, and the --group-path bullet re-prefixed as a standalone match-remote note in aone.md. Everything else added is gate/pointer prose, file headers, and tests. Nothing silently dropped, nothing smuggled in.

Cross-references still resolve. The step headings stay in the core (pinned by the new tests), so every "Step 7"/"Step 8" reference in the corpus lands on the pointer that forwards. The old "the skip list in the Aone section above" phrasing appears only on the removed side — no dangling reference survives. The compose-state field list moved from Step 7 into Step 6's verdict section with a single-copy pin (modelId appears exactly once in the corpus), so a report-only run writes that state without owing posting.md a read.

The build needs no change, and got none. The asset copier is recursive (skipping only test files and DESIGN.md), and both sides of the stale-bundle digest walk the whole review-skill directory with an .md allowlist — the new references/*.md files are digested and shipped automatically, with review-source-digest.test.ts holding the two walks equal. I verified both sides by reading copy_bundle_assets.js and stale-bundle.ts, not just the PR's claim.

The drive-by holds up. The three removed sentences claimed comment-status has no Aone backing; #9627 (feat(review): back comment-status and presubmit for Aone Code targets, merged) added exactly that at code level — comment-status.ts (+338/−168), lib/platform/aone.ts (+214/−29), and a 431-line Aone test suite — so the sentences were genuinely stale, and the new wording ("on an Aone target it runs a1-backed, with the thread-shape notes in references/aone.md") matches the shipped behavior.

The revert guards now govern the full corpus via skillBody(), and the new pins cover what the split must not break: gates present in the core, the write prohibition and the PR-only/high-only posting rule retained where a non-posting run still sees them, and no step body duplicated across files. No findings.

Testing

CI evidence via the API at the reviewed commit — nothing was built or run locally (unattended run). The macOS/Windows/integration skips are by design: those jobs are gated to merge_group in ci.yml, so they never run on a PR event. The Ubuntu suite (lint, typecheck, build, unit tests — the full profile) is still in flight at the time of this review; the finalize job updates the table below once CI settles.

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

Check Conclusion
Classify PR ✅ success
Dependency CVE audit ✅ success
Desktop Shell (ubuntu-22.04) ✅ success
Desktop Shell (windows-2022) ✅ success
Post Coverage Comment (ubuntu-latest, 22.x) ✅ success
review-scan ✅ success
route ✅ success
Secret scan (TruffleHog) ✅ success
Test (ubuntu-latest, Node 22.x) ✅ success
web-shell E2E Smoke (ubuntu-latest, Node 22.x) ✅ success

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

Not verified here: live behaviour — that a real run actually fires the verdict-gated reads (persistence loaded before Step 8, posting/Aone skipped when not applicable). The PR description reports a headless E2E observing exactly this; that is the author's claim, not independently re-run in this pass. The gating prose is pinned by tests, but prose effect is not prose presence, so:

Sandboxed verification would settle this: @qwen-code /tmux — a live /review run would show the gated read_file calls firing (or not) per the verdict, which no static check or unit test can prove.

中文说明

代码审查

方案与仅从 issue 出发我会提出的方案一致——按运行已持有的 verdict 整步搬迁、门控留在注入的核心——且执行忠实。三点是机械化核验而非目测:

搬迁逐字保真。 对 diff 做行级集合比对:全部 393 行删除内容都在三个参考文件中逐字节重现,仅有七处已声明的改写——三处过时的 Aone/comment-status 句子(见下)、(see there for every field) 指针随字段表搬迁改为 (every field is listed just below)suggestionsDroppedAsDuplicates 条目重述了已移入 posting.md 的「Suggestion 不得进正文」规则、state 对象引言改为指向核心的字段表、以及 --group-path 条目在 aone.md 中改为独立的 match-remote 说明。其余新增内容均为门控/指针文字、文件头与测试。无静默丢弃、无夹带。

交叉引用仍可解析。 步骤标题保留在核心(新测试钉住),语料中所有「Step 7」「Step 8」引用都落在转发指针上。旧措辞「the skip list in the Aone section above」只出现在删除侧——没有悬空引用残留。compose 状态字段表从 Step 7 搬入 Step 6 裁决小节,并有单副本钉住(modelId 在整个语料中恰好出现一次),使仅出报告的运行无需读取 posting.md 即可写该状态。

构建无需改动,也确实没改。 资产复制器是递归的(仅跳过测试文件与 DESIGN.md),过期检查两侧的摘要都对整个 review 技能目录做 .md 白名单递归遍历——新的 references/*.md 自动被摘要与打包,review-source-digest.test.ts 钉住两侧遍历一致。我通过阅读 copy_bundle_assets.jsstale-bundle.ts 两侧源码核验,而非仅凭 PR 声明。

顺带修复成立。 被删的三句话声称 comment-status 无 Aone 支持;#9627feat(review): back comment-status and presubmit for Aone Code targets,已合并)在代码层补上了该支持——comment-status.ts(+338/−168)、lib/platform/aone.ts(+214/−29)以及 431 行 Aone 测试——因此这些句子确属过时,新措辞(「Aone 目标上它以 a1 支持运行,线程形状说明在 references/aone.md」)与已发布行为一致。

防回归守卫现在通过 skillBody() 覆盖完整语料,新增钉住覆盖拆分不可破坏的内容:门控存在于核心、写入禁令与「仅 PR、仅 high 档」发布规则保留在非发布运行也可见之处、步骤正文不跨文件重复。无发现。

测试

经由 API 获取的被审提交 CI 证据——无人值守运行,本地未构建未执行任何 PR 代码。macOS/Windows/集成测试的跳过是设计使然:这些任务在 ci.yml 中仅限 merge_group 事件,PR 事件本就不运行。Ubuntu 套件(lint、typecheck、build、单测——full 档)在本评论撰写时仍在运行;CI 落定后 finalize 任务会更新下表。

未在此验证:真实运行行为——即一次真实运行是否按 verdict 触发按需读取(Step 8 前加载 persistence、不适用时跳过 posting/Aone)。PR 描述报告了一次 headless E2E 观察到了这些;这是作者的声明,本环节未独立复跑。门控措辞有测试钉住,但措辞的效果不等于措辞的存在,因此:沙箱验证可以定论——@qwen-code /tmux 跑一次真实 /review,可直接观察按需 read_file 是否按 verdict 触发。

Qwen Code · qwen3.8-max

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

@wenshao

wenshao commented Aug 23, 2026

Copy link
Copy Markdown
Collaborator Author

@qwen-code /takeover

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

Copy link
Copy Markdown
Collaborator

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

中文说明

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

@qwen-code-ci-bot

Copy link
Copy Markdown
Collaborator

Confidence: 4/5 — clean, disciplined split whose claims check out mechanically; the one gap no CI run can close is live-model compliance with the new gates, and CI itself is still in flight.

Stepping back: this is the shape the issue itself proposed, and the PR hews to it — including the places where it honestly under-delivers against the issue's estimate. "~one third" was not reachable under the issue's own whole-step guardrail (Steps 1 and 6 dominate the core), so the PR takes the measured 15–20% and documents why instead of fragmenting steps to chase a number; likewise no GHE reference file, because those notes are sentences woven into universal paragraphs and extracting them would strip rules from steps that stay in core. I'd make the same calls.

What earns the confidence: the move is byte-verbatim except seven named rewordings, every one of them justified and pinned by a test; the revert guards were extended to the corpus rather than quietly narrowed, and new pins hold the gates, the retained invariants, and the no-duplication property; and the split needed zero build-side changes because the copier and both digest walks were already recursive — the sign of a split that goes with the grain of the system. The one behavioral edit (three stale Aone/comment-status sentences) aligns the skill with code that already merged in #9627, which I verified at the code level, not just the PR's word.

Reservations, named: whether a live run actually follows the verdict-gated reads is not provable from tests — prose presence is not prose effect — and the headless E2E that observed the gates firing is the author's claim; the /tmux lane named above would settle it if a maintainer wants that comfort before merge. And the Ubuntu suite was still running at review time, so approval is deferred until CI lands green on 7ba1644905ac56c6936ec3087b19eaef0a867c65 — the finalize job posts the commit-pinned approval when it does, and withholds it if anything lands red.

中文说明

置信度:4/5 —— 一次干净、有纪律的拆分,各项声明均通过机械化核验;CI 无法弥补的唯一缺口是真实模型对新门控的遵从度,且 CI 本身仍在运行。

退一步看:这正是 issue 自身提出的形态,PR 严格遵循——包括它诚实「未达标」之处。「约三分之一」在 issue 自设的整步护栏下不可达(Step 1 与 Step 6 占据核心主体),所以 PR 拿走实测的 15–20% 并如实记录原因,而不是为了追数字拆散步骤;同理没有 GHE 参考文件——那些说明是织在通用段落里的句子,抽出来会把规则从留在核心的步骤中剥离。我也会做同样的选择。

置信度的依据:除七处点名的改写外搬迁逐字保真,每一处改写都有理由且有测试钉住;防回归守卫被扩展到完整语料而非悄悄收窄,新增钉住覆盖门控、保留的不变量与无重复性质;拆分在构建侧零改动,因为复制器与两侧摘要遍历本就是递归的——这是顺着系统纹理拆分而不是逆着来。唯一的行为性编辑(三处过时的 Aone/comment-status 句子)是把技能与 #9627 已合并的代码对齐,我在代码层面核验过,而非仅凭 PR 的说法。

保留意见,点名:真实运行是否遵循按需读取的门控,测试无法证明——措辞的存在不等于措辞的效果——观察到门控正确触发的 headless E2E 是作者的声明;若维护者希望在合并前得到这层保障,上文点名的 /tmux 通道可以定论。另外被审提交上的 Ubuntu 套件在评审时仍在运行,因此批准推迟到 CI 在该提交上全绿——CI 落定后 finalize 任务会发布钉住该提交的批准;若有红项则不会发布。

Qwen Code · qwen3.8-max

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

@github-actions

github-actions Bot commented Aug 23, 2026

Copy link
Copy Markdown
Contributor

Code Coverage Summary

Package Lines Statements Functions Branches
CLI 85.23% 85.23% 90.56% 84.27%
Core 88.25% 88.25% 89.9% 86.82%
CLI Package - Full Text Report
-------------------|---------|----------|---------|---------|-------------------
File               | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s 
-------------------|---------|----------|---------|---------|-------------------
All files          |   85.23 |    84.27 |   90.56 |   85.23 |                   
 src               |   85.83 |    81.72 |   88.13 |   85.83 |                   
  cli.ts           |   95.68 |    84.11 |     100 |   95.68 | ...60-561,565-566 
  gemini.tsx       |    73.4 |    78.04 |   80.76 |    73.4 | ...1338-1342,1469 
  ...ractiveCli.ts |   88.25 |    82.33 |   89.06 |   88.25 | ...3147,3153,3219 
  ...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.1 |    75.97 |   92.26 |    73.1 |                   
  acpAgent.ts      |   71.85 |    74.93 |   91.37 |   71.85 | ...67,13272-13274 
  ...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 |      100 |     100 |     100 |                   
  ...DirContext.ts |     100 |      100 |     100 |     100 |                   
  ...ersistence.ts |   94.95 |    92.24 |     100 |   94.95 | ...13-118,227-228 
 ...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.03 |     86.5 |   95.75 |   91.03 |                   
  Session.ts       |   90.37 |    85.22 |   95.13 |   90.37 | ...04,12631-12635 
  ...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.36 |     77.2 |   65.62 |   90.36 |                   
  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         |   88.95 |    74.21 |     100 |   88.95 | ...84-887,899,910 
  sessions.ts      |     100 |      100 |      50 |     100 |                   
  update.ts        |   98.13 |    94.44 |   66.66 |   98.13 | 82-83             
 ...mmands/channel |   89.08 |    88.56 |   90.64 |   89.08 |                   
  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.88 |    96.35 |     100 |   95.88 | ...08-213,271-274 
  configure.ts     |    14.7 |      100 |       0 |    14.7 | 18-21,23-84       
  daemon-worker.ts |   93.91 |    85.55 |   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.31 |    84.61 |   83.33 |   90.31 |                   
  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          |   93.15 |    84.84 |      80 |   93.15 | ...78-180,198-199 
  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.23 |    89.77 |   92.26 |   91.23 |                   
  agent-prompt.ts  |   94.85 |    92.85 |   97.91 |   94.85 | ...3227,3562-3642 
  base-tree.ts     |   77.02 |    80.76 |   77.77 |   77.02 | ...63-384,386-399 
  capture-local.ts |      70 |     90.9 |      75 |      70 | 112-116,163-194   
  ...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.02 |    93.58 |   98.48 |   97.02 | ...5068-5112,5363 
  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.25 |    92.05 |     100 |   97.25 | ...1548,1705-1710 
  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.48 |    95.66 |     100 |   99.48 | 567,838,894       
  plan-diff.ts     |    68.1 |      100 |   66.66 |    68.1 | 162-205           
  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 | ...79-483,510-556 
  ...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 | ...19,635-689,703 
  save-artifact.ts |   93.09 |    90.75 |   94.11 |   93.09 | ...99-502,595-598 
  scratch-tree.ts  |   90.06 |     85.1 |    90.9 |   90.06 | ...51-454,656-674 
  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.3 |    94.66 |   98.74 |    97.3 |                   
  agent-briefs.ts  |      99 |      100 |      50 |      99 | 784-785           
  ...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.37 |    96.57 |   88.88 |   99.37 | 590,808           
  coverage.ts      |   98.71 |    94.77 |     100 |   98.71 | ...1103,1648-1649 
  deadline.ts      |   98.03 |    91.73 |     100 |   98.03 | ...20,752,820,837 
  diff-flags.ts    |     100 |        0 |     100 |     100 | 75                
  diff-plan.ts     |   98.74 |    93.12 |     100 |   98.74 | ...48,271,297-298 
  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.85 |    86.66 |     100 |   92.85 | 204-205,207-211   
  ...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.11 |     100 |   99.55 | 548-549           
  ...w-settings.ts |     100 |    94.73 |     100 |     100 | 79                
  roster.ts        |     100 |    95.52 |     100 |     100 | 136,154,199       
  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.21 |    94.04 |     100 |   98.21 | 433,474,514-515   
  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      |   87.96 |    79.92 |     100 |   87.96 | ...1552-1553,1566 
 ...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 |    89.06 |   89.47 |   94.11 |                   
  common.ts        |     100 |      100 |     100 |     100 |                   
  list.ts          |   90.96 |    86.66 |   81.81 |   90.96 | 208-219,221-222   
  ps.ts            |     100 |    94.44 |     100 |     100 | 58                
 src/config        |   94.97 |    89.94 |   96.31 |   94.97 |                   
  ...l-fallback.ts |     100 |      100 |     100 |     100 |                   
  auth.ts          |   89.35 |    83.56 |     100 |   89.35 | ...97-298,314-315 
  ...eMcpImport.ts |   87.91 |    81.52 |     100 |   87.91 | ...63-371,453-454 
  compile-cache.ts |     100 |      100 |     100 |     100 |                   
  config.ts        |   89.23 |    88.84 |   83.78 |   89.23 | ...2527,2529-2537 
  ...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 |                   
  environment.ts   |    96.5 |    93.54 |      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  |   96.55 |    95.65 |     100 |   96.55 | 223-224,229-231   
  mcpJson.ts       |     100 |      100 |     100 |     100 |                   
  mcpServers.ts    |   92.85 |     87.5 |     100 |   92.85 | 46-47             
  ...idersScope.ts |      95 |    94.73 |     100 |      95 | 11-12             
  ...abledTools.ts |     100 |      100 |     100 |     100 |                   
  ...comparison.ts |     100 |      100 |     100 |     100 |                   
  ...n-settings.ts |   99.15 |    93.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 | ...1028,1030-1031 
  ...ingsSchema.ts |     100 |      100 |     100 |     100 |                   
  ...ngsWatcher.ts |   95.54 |    88.34 |     100 |   95.54 | ...28,277-278,293 
  ...d-env-keys.ts |     100 |      100 |     100 |     100 |                   
  ...l-settings.ts |     100 |      100 |     100 |     100 |                   
  ...paths-lite.ts |   89.47 |       88 |     100 |   89.47 | 43-44,53-54,56-57 
  ...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          |   86.25 |    81.92 |   89.65 |   86.25 |                   
  index.ts         |   73.45 |    77.77 |      90 |   73.45 | ...70-271,294-299 
  languages.ts     |   93.07 |     92.3 |   85.71 |   93.07 | ...35,164-169,184 
  ...nslateKeys.ts |     100 |      100 |     100 |     100 |                   
  ...lationDict.ts |   93.33 |    66.66 |     100 |   93.33 | 15                
 src/i18n/locales  |     100 |      100 |     100 |     100 |                   
  ca.js            |     100 |      100 |     100 |     100 |                   
  de.js            |     100 |      100 |     100 |     100 |                   
  en.js            |     100 |      100 |     100 |     100 |                   
  fr.js            |     100 |      100 |     100 |     100 |                   
  ja.js            |     100 |      100 |     100 |     100 |                   
  pt.js            |     100 |      100 |     100 |     100 |                   
  ru.js            |     100 |      100 |     100 |     100 |                   
  zh-TW.js         |     100 |      100 |     100 |     100 |                   
  zh.js            |     100 |      100 |     100 |     100 |                   
 ...nonInteractive |   80.98 |    77.27 |   84.12 |   80.98 |                   
  session.ts       |   84.97 |    76.31 |   96.07 |   84.97 | ...1048,1057-1067 
  types.ts         |    42.5 |      100 |   33.33 |    42.5 | ...31-632,635-636 
 ...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 |   45.95 |    69.03 |   55.26 |   45.95 |                   
  ...Controller.ts |    42.4 |      100 |   83.33 |    42.4 | 101-105,140-223   
  ...Controller.ts |       0 |        0 |       0 |       0 | 1-56              
  ...Controller.ts |   55.01 |    67.14 |   58.33 |   55.01 | ...15-624,639-644 
  ...Controller.ts |   49.23 |       60 |      50 |   49.23 | ...07-108,111-121 
  ...Controller.ts |   40.64 |    68.11 |   46.66 |   40.64 | ...72-684,693-722 
 .../control/types |       0 |        0 |       0 |       0 |                   
  serviceAPIs.ts   |       0 |        0 |       0 |       0 | 1                 
 ...Interactive/io |   98.16 |    94.22 |   95.29 |   98.16 |                   
  ...putAdapter.ts |   98.02 |     93.3 |   98.07 |   98.02 | ...1433,1449-1450 
  ...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.26 |     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         |   88.26 |    84.75 |   90.92 |   88.26 |                   
  ...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.9 |     78.6 |   94.73 |    90.9 | ...1001,1022-1027 
  ...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.41 |     100 |   94.94 | ...30,708,724,734 
  fast-path.ts     |   91.01 |    81.38 |   95.45 |   91.01 | ...34-543,609-610 
  ...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 
  ...iders-edit.ts |     100 |    82.14 |     100 |     100 | 58-60,65,81       
  ...ory-picker.ts |     100 |    86.95 |     100 |     100 | 36,66,92          
  ...sion-audit.ts |     100 |      100 |   93.33 |     100 |                   
  ...nal-ledger.ts |    94.9 |    84.78 |     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.06 |    80.79 |   75.98 |   84.06 | ...7976,7994-7998 
  ...tup-errors.ts |     100 |      100 |     100 |     100 |                   
  ...-keepalive.ts |   94.27 |    88.18 |     100 |   94.27 | ...34,538-539,578 
  ...-lifecycle.ts |     100 |      100 |     100 |     100 |                   
  ...-lifecycle.ts |   89.16 |    90.29 |   86.95 |   89.16 | ...24-325,330-334 
  server.ts        |   91.21 |    90.67 |   72.03 |   91.21 | ...2986,3016-3017 
  ...-admission.ts |   99.13 |    95.94 |     100 |   99.13 | 308-309           
  ...on-helpers.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 |   92.18 |    88.37 |     100 |   92.18 | ...21-224,267-270 
  ...ace-agents.ts |   66.13 |    70.57 |   92.68 |   66.13 | ...2246,2256-2266 
  ...generation.ts |    95.4 |    82.35 |   66.66 |    95.4 | 55-56,78,92       
  ...-git-state.ts |     100 |    91.93 |    90.9 |     100 | 161,172,202,265   
  ...ace-inputs.ts |     100 |      100 |     100 |     100 |                   
  ...ace-memory.ts |      83 |    74.54 |     100 |      83 | ...30-537,597-604 
  ...ers-status.ts |   98.58 |       79 |     100 |   98.58 | 106,134,174,177   
  ...tion-store.ts |   89.67 |    88.27 |   92.59 |   89.67 | ...91-400,411-414 
  ...e-registry.ts |   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.34 |    80.22 |    94.5 |   80.34 |                   
  ...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.51 |    77.21 |   93.33 |   75.51 | ...5509,5566-5572 
  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.18 |      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.33 |   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.17 |    69.94 |   90.43 |   77.17 |                   
  discovery.ts     |   85.89 |    81.57 |    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.69 |    67.47 |   85.71 |   76.69 | ...1884,1975-1976 
  ...controller.ts |   67.82 |    79.66 |      75 |   67.82 | ...66-278,287-295 
  ...sk-service.ts |   87.29 |    62.24 |   95.55 |   87.29 | ...1174,1176-1177 
  ...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.84 |    80.93 |   95.25 |   85.84 |                   
  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.53 |    84.26 |   93.33 |   87.53 | ...1389,1432-1433 
  ...on-runtime.ts |   91.42 |       90 |     100 |   91.42 | 56-64             
  session.ts       |   86.25 |    82.36 |   93.45 |   86.25 | ...6730,6732-6733 
  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 
 ...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            |   74.57 |    75.54 |   68.47 |   74.57 |                   
  App.tsx          |   33.33 |       75 |   33.33 |   33.33 | 32-86             
  AppContainer.tsx |   76.06 |       72 |   69.44 |   76.06 | ...4292,4408-4414 
  ...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 |                   
  keyMatchers.ts   |   95.91 |    97.14 |     100 |   95.91 | 25-26             
  ...tic-colors.ts |     100 |      100 |     100 |     100 |                   
  ...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 
  textConstants.ts |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 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.32 |    84.13 |   90.71 |   84.32 |                   
  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 
  ...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 |   75.05 |    74.39 |   84.61 |   75.05 | ...95-628,639-640 
  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                
  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 |   72.84 |    79.91 |   77.58 |   72.84 |                   
  AboutBox.tsx     |     100 |      100 |     100 |     100 |                   
  AnsiOutput.tsx   |   65.57 |      100 |      50 |   65.57 | 69-90             
  ApiKeyInput.tsx  |       0 |        0 |       0 |       0 | 1-97              
  AppHeader.tsx    |    88.7 |       75 |     100 |    88.7 | 36,38-43,45       
  ...odeDialog.tsx |   87.24 |    72.22 |   33.33 |   87.24 | ...85,233-238,245 
  AsciiArt.ts      |     100 |      100 |     100 |     100 |                   
  ...Indicator.tsx |   95.65 |    66.66 |     100 |   95.65 | 27,52             
  ...TextInput.tsx |   88.65 |    90.41 |     100 |   88.65 | ...84-286,300-302 
  Composer.tsx     |   94.49 |    66.66 |     100 |   94.49 | ...-76,88,143,157 
  ...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  |   84.26 |    82.94 |      80 |   84.26 | ...2215,2236,2332 
  ...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 | ...96,402,444-466 
  ...onPreview.tsx |   93.58 |    83.78 |     100 |   93.58 | ...,70-71,195-197 
  ...ryDisplay.tsx |     100 |      100 |     100 |     100 |                   
  ...putPrompt.tsx |   92.06 |    86.36 |   83.33 |   92.06 | ...,70-72,120-123 
  ...tedDialog.tsx |     100 |      100 |     100 |     100 |                   
  ...ngsDialog.tsx |   71.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-172             
  ...tivityTab.tsx |    3.94 |      100 |       0 |    3.94 | 27-275            
  StatsDialog.tsx  |    8.64 |      100 |       0 |    8.64 | ...76-111,130-322 
  StatsDisplay.tsx |     100 |      100 |     100 |     100 |                   
  ...ciencyTab.tsx |    78.9 |    56.52 |     100 |    78.9 | ...26,213,262-288 
  ...atmapView.tsx |    8.98 |      100 |       0 |    8.98 | 20-107            
  ...essionTab.tsx |      80 |    66.66 |     100 |      80 | ...70-277,283-300 
  ...ineDialog.tsx |    93.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.34 |    84.91 |   92.98 |   85.34 |                   
  ...sksDialog.tsx |   81.87 |    82.77 |   85.71 |   81.87 | ...1853,1965-1971 
  ...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.35 |    86.92 |   85.71 |   90.35 |                   
  ...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.63 |     100 |   91.87 | ...49-651,658-660 
  ...upMessage.tsx |   98.38 |    95.38 |     100 |   98.38 | 188-191,422       
  ToolMessage.tsx  |   93.06 |    86.32 |   93.75 |   93.06 | ...1037,1082-1084 
 ...ponents/shared |   86.52 |    82.36 |   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 |    87.05 |      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 | 235-236           
  ...deContext.tsx |      80 |     87.5 |      75 |      80 | ...11-112,118-120 
  ...rtContext.tsx |     100 |      100 |     100 |     100 |                   
 src/ui/daemon     |   88.35 |    73.51 |   95.45 |   88.35 |                   
  ...ui-adapter.ts |   88.35 |    73.51 |   95.45 |   88.35 | ...74,792-793,879 
 src/ui/editors    |   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.91 |   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.36 |    81.95 |   66.66 |   92.36 | ...00,502-503,658 
  ...ke-repaint.ts |     100 |      100 |     100 |     100 |                   
  ...amingState.ts |   12.22 |      100 |       0 |   12.22 | 54-157            
  ...agerDialog.ts |   88.23 |      100 |     100 |   88.23 | 20,24             
  ...dScrollbar.ts |     100 |      100 |     100 |     100 |                   
  ...ationFrame.ts |      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.41 |    84.11 |   78.26 |   87.41 | ...5812-5814,5816 
  ...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,236-241   
  ...ompletion.tsx |   90.67 |    83.33 |     100 |   90.67 | ...02,105,138-141 
  ...ectionList.ts |   97.12 |    96.19 |     100 |   97.12 | ...92-193,247-250 
  ...sionPicker.ts |   92.87 |    90.35 |     100 |   92.87 | ...99-501,503-505 
  ...earchInput.ts |     100 |    97.29 |     100 |     100 | 82                
  ...ngsCommand.ts |   18.75 |      100 |       0 |   18.75 | 10-25             
  ...ellHistory.ts |   93.28 |    80.95 |     100 |   93.28 | ...96,153-154,164 
  ...oryCommand.ts |   85.48 |    58.33 |     100 |   85.48 | 22-28,40,71       
  ...agerDialog.ts |   88.23 |      100 |     100 |   88.23 | 20,24             
  ...Completion.ts |   82.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.72 |    85.81 |   96.06 |   87.72 |                   
  ...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.59 |     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.11 |     100 |     100 | 33,76             
  terminalSetup.ts |    4.37 |      100 |       0 |    4.37 | 44-393            
  textUtils.ts     |   98.71 |    95.72 |     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.27 |    79.64 |   81.94 |   81.27 |                   
  ...d-recorder.ts |     6.2 |        0 |       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         |   83.15 |    87.83 |   93.19 |   83.15 |                   
  ...p-profiler.ts |   98.39 |    92.59 |     100 |   98.39 | 141,185,235       
  acpModelUtils.ts |   97.36 |    95.19 |     100 |   97.36 | ...09-210,214-215 
  apiPreconnect.ts |   96.74 |    94.59 |     100 |   96.74 | 167-170           
  ...ol-call-id.ts |   84.61 |       60 |     100 |   84.61 | 26-27,37-38       
  ...ng-failure.ts |     100 |      100 |     100 |     100 |                   
  checks.ts        |   33.33 |      100 |       0 |   33.33 | 23-28             
  ...-api-error.ts |     100 |    96.42 |     100 |     100 | 14                
  cleanup.ts       |   84.05 |    94.11 |      80 |   84.05 | 80,111-121        
  commands.ts      |   97.45 |    96.66 |     100 |   97.45 | 153-155           
  ...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 |    89.65 |     100 |     100 | 41-43,49          
  ...re-runtime.ts |     100 |      100 |     100 |     100 |                   
  ...ScopeUtils.ts |   97.56 |    88.88 |     100 |   97.56 | 67                
  doctorChecks.ts  |   70.31 |    74.57 |     100 |   70.31 | ...95-301,325-341 
  ...putCapture.ts |   90.65 |    86.31 |     100 |   90.65 | ...73,371,373-374 
  ...arResolver.ts |   97.14 |    96.55 |     100 |   97.14 | 125-126           
  errors.ts        |   97.56 |    94.64 |     100 |   97.56 | 69-70,304-305     
  events.ts        |     100 |      100 |     100 |     100 |                   
  ...on-mention.ts |   88.48 |     82.6 |     100 |   88.48 | ...56-160,164-168 
  findings.ts      |   96.02 |    92.15 |     100 |   96.02 | ...1249,1258-1259 
  gitUtils.ts      |   92.85 |    86.66 |     100 |   92.85 | ...13-116,164-167 
  ...AutoUpdate.ts |   93.54 |    94.64 |      90 |   93.54 | 126,131,202-213   
  ...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 
  languageUtils.ts |   98.88 |    97.01 |     100 |   98.88 | 184-185           
  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 
  ...iveHelpers.ts |   95.14 |    91.79 |     100 |   95.14 | ...54-455,553,566 
  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 |                   
  ...uggestions.ts |   84.29 |    70.83 |     100 |   84.29 | 70-76,92-103      
  processUtils.ts  |    92.3 |       80 |     100 |    92.3 | 45-46             
  readStdin.ts     |   93.67 |    94.11 |   85.71 |   93.67 | 79-83             
  relaunch.ts      |   95.87 |    89.28 |     100 |   95.87 | 103-105,131       
  resolvePath.ts   |     100 |      100 |     100 |     100 |                   
  runBudget.ts     |   99.35 |    96.77 |     100 |   99.35 | 119               
  sandbox-path.ts  |     100 |      100 |     100 |     100 |                   
  sandbox.ts       |   45.52 |    59.42 |   76.92 |   45.52 | ...1045,1057-1080 
  ...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 
  settingsUtils.ts |   80.82 |     89.2 |   85.18 |   80.82 | ...89-607,614-622 
  shell-args.ts    |     100 |      100 |     100 |     100 |                   
  spawnWrapper.ts  |     100 |      100 |     100 |     100 |                   
  ...ate-verify.ts |     100 |      100 |     100 |     100 |                   
  ...one-update.ts |   39.81 |    77.44 |   62.16 |   39.81 | ...1193,1196-1215 
  ...upProfiler.ts |   98.47 |    94.66 |     100 |   98.47 | 132-133,308       
  ...upWarnings.ts |     100 |      100 |     100 |     100 |                   
  stdioHelpers.ts  |     100 |       90 |     100 |     100 | 23                
  systemInfo.ts    |   95.09 |    90.27 |     100 |   95.09 | ...54-255,260-264 
  ...InfoFields.ts |    87.5 |    65.85 |     100 |    87.5 | ...24-125,146-147 
  ...alSequence.ts |     100 |    97.61 |     100 |     100 | 60                
  ...iagnostics.ts |    95.8 |     87.5 |   93.75 |    95.8 | ...03,277-278,289 
  ...iffPreview.ts |   76.47 |       25 |     100 |   76.47 | 13,17,23-24       
  ...on-handler.ts |    73.8 |       75 |     100 |    73.8 | 17-18,25-26,67-73 
  ...e-relaunch.ts |   89.61 |    86.66 |      50 |   89.61 | 56-61,83-84       
  ...entEmitter.ts |     100 |      100 |     100 |     100 |                   
  ...ansionHook.ts |     100 |      100 |     100 |     100 |                   
  ...upWarnings.ts |   87.75 |       75 |     100 |   87.75 | 47-48,53-54,57-58 
  version.ts       |     100 |    66.66 |     100 |     100 | 11                
  ...ingHandler.ts |     100 |      100 |     100 |     100 |                   
  ...WithBackup.ts |   65.04 |    77.77 |     100 |   65.04 | 97,112,133-172    
 ...s/housekeeping |   93.51 |    90.95 |   96.96 |   93.51 |                   
  cleanup.ts       |   92.59 |    93.75 |     100 |   92.59 | ...02-205,209-211 
  ...eractionAt.ts |     100 |      100 |     100 |     100 |                   
  scheduler.ts     |      93 |    88.34 |      95 |      93 | ...57-359,411-415 
  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.25 |    86.82 |    89.9 |   88.25 |                   
 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        |   89.63 |    83.96 |   94.11 |   89.63 |                   
  ...transcript.ts |   88.49 |    84.09 |     100 |   88.49 | ...32,640,646-650 
  ...ent-resume.ts |   85.59 |    77.75 |   83.33 |   85.59 | ...1794-1798,1801 
  ...ound-tasks.ts |   94.63 |    90.13 |   96.38 |   94.63 | ...1773,1793-1796 
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...ent-result.ts |    96.8 |    92.68 |     100 |    96.8 | 106,129-131       
  ...n-registry.ts |   94.86 |    87.26 |    98.3 |   94.86 | ...1463,1477-1479 
  ...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.94 |    68.22 |   78.94 |   76.94 |                   
  ...gentClient.ts |   79.47 |    88.88 |   81.81 |   79.47 | ...68-183,189-204 
  ArenaManager.ts  |   75.89 |     65.2 |   78.57 |   75.89 | ...1887,1893-1894 
  arena-events.ts  |   64.44 |      100 |      50 |   64.44 | ...71-175,178-183 
  diff-summary.ts  |    87.5 |    72.34 |     100 |    87.5 | ...32-133,137-138 
  index.ts         |     100 |      100 |     100 |     100 |                   
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...gents/backends |   78.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 |   91.77 |     87.1 |   90.46 |   91.77 |                   
  agent-context.ts |     100 |      100 |     100 |     100 |                   
  agent-core.ts    |   85.15 |    77.02 |   76.66 |   85.15 | ...2388,2434-2436 
  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.59 |     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   |   82.97 |    84.58 |   89.28 |   82.97 |                   
  TeamManager.ts   |   74.33 |    81.09 |    80.7 |   74.33 | ...1707,1730-1731 
  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.08 |     100 |   89.29 | ...1000,1044-1045 
  team-events.ts   |   60.52 |      100 |      50 |   60.52 | ...40-144,151-155 
  teamHelpers.ts   |   91.71 |    94.54 |      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        |   84.46 |    87.09 |   76.32 |   84.46 |                   
  approval-mode.ts |     100 |      100 |     100 |     100 |                   
  ...xtDefaults.ts |     100 |      100 |     100 |     100 |                   
  config.ts        |   83.79 |    86.82 |   74.94 |   83.79 | ...8975,8979-8980 
  constants.ts     |     100 |      100 |     100 |     100 |                   
  models.ts        |     100 |      100 |     100 |     100 |                   
  storage.ts       |   94.39 |    91.57 |   88.23 |   94.39 | ...45-446,449-450 
 ...nfirmation-bus |   98.27 |    97.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.47 |    88.28 |   93.11 |   92.47 |                   
  ...on-restore.ts |   88.23 |    85.41 |     100 |   88.23 | ...60,63-64,67-68 
  baseLlmClient.ts |    88.4 |     83.8 |   81.81 |    88.4 | ...59,672,678-680 
  client.ts        |   92.67 |     88.2 |   91.01 |   92.67 | ...4322,4420-4421 
  ...tGenerator.ts |   86.34 |    87.34 |   84.61 |   86.34 | ...96-497,542-548 
  ...lScheduler.ts |   89.82 |    84.79 |   94.73 |   89.82 | ...6474,6502-6518 
  geminiChat.ts    |   94.92 |    90.15 |   95.72 |   94.92 | ...5225,5273-5274 
  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             
  ...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.64 |    91.42 |   83.33 |   93.64 | ...1209,1412-1413 
  ...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.33 |    88.12 |   96.15 |   96.33 |                   
  ...tGenerator.ts |   97.24 |    86.72 |   94.87 |   97.24 | ...1436,1465,1476 
  converter.ts     |   96.19 |    89.25 |     100 |   96.19 | ...1329,1550-1552 
  index.ts         |       0 |        0 |       0 |       0 | 1-21              
  usage.ts         |     100 |      100 |     100 |     100 |                   
 ...ntentGenerator |   88.78 |    72.36 |   89.47 |   88.78 |                   
  ...tGenerator.ts |   87.18 |    71.83 |   88.88 |   87.18 | ...58-364,382-383 
  index.ts         |     100 |       80 |     100 |     100 | 50                
 ...ntentGenerator |   96.12 |     91.3 |    90.9 |   96.12 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...tGenerator.ts |   96.06 |    90.75 |   90.47 |   96.06 | ...1309-1310,1338 
  ...tDetection.ts |     100 |      100 |     100 |     100 |                   
 ...ntentGenerator |    91.9 |    90.55 |   95.79 |    91.9 |                   
  constants.ts     |     100 |      100 |     100 |     100 |                   
  converter.ts     |    91.3 |    89.49 |   96.87 |    91.3 | ...1942,2111-2126 
  errorHandler.ts  |     100 |      100 |     100 |     100 |                   
  index.ts         |   68.25 |    82.35 |      50 |   68.25 | 44-53,74-78,90-94 
  ...tGenerator.ts |    66.4 |    70.58 |   88.88 |    66.4 | ...51-157,168-169 
  pipeline.ts      |   95.27 |     90.9 |     100 |   95.27 | ...1434,1442,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.39 |    92.28 |    98.5 |   97.39 |                   
  dashscope.ts     |   98.36 |    95.08 |   96.42 |   98.36 | ...08-709,851-852 
  deepseek.ts      |   94.91 |    89.36 |     100 |   94.91 | ...31-132,145-146 
  default.ts       |   99.18 |    97.05 |     100 |   99.18 | 208               
  index.ts         |     100 |      100 |     100 |     100 |                   
  mimo.ts          |   94.11 |    66.66 |     100 |   94.11 | 29,52-53          
  minimax.ts       |     100 |      100 |     100 |     100 |                   
  mistral.ts       |   96.07 |    73.33 |     100 |   96.07 | 32-33             
  modelscope.ts    |     100 |      100 |     100 |     100 |                   
  types.ts         |       0 |        0 |       0 |       0 |                   
  utils.ts         |     100 |      100 |     100 |     100 |                   
  zai.ts           |   92.13 |    82.14 |     100 |   92.13 | ...,39-40,135-137 
 src/extension     |   88.49 |    85.67 |   93.22 |   88.49 |                   
  ...ive-safety.ts |     100 |      100 |     100 |     100 |                   
  ...-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.23 |    98.3 |   92.82 | ...1641-1647,1691 
  ...ionManager.ts |   84.46 |    83.47 |      83 |   84.46 | ...3126,3164-3165 
  ...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        |   91.85 |    84.88 |     100 |   91.85 | ...1032-1033,1043 
  http-client.ts   |   84.61 |       80 |     100 |   84.61 | 20-21             
  i18n.ts          |   78.26 |       96 |      50 |   78.26 | 104-110,116-123   
  index.ts         |     100 |      100 |     100 |     100 |                   
  marketplace.ts   |   88.39 |    83.11 |     100 |   88.39 | ...08,494,507-508 
  ...ork-policy.ts |   89.72 |       90 |     100 |   89.72 | ...36,148-154,156 
  npm.ts           |   89.02 |    81.81 |     100 |   89.02 | ...86-688,695-700 
  override.ts      |   94.11 |    93.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.58 |    81.04 |   86.84 |   84.58 |                   
  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   |   75.98 |    67.22 |   58.33 |   75.98 | ...42-743,750-751 
  ...onToolGate.ts |   97.97 |     87.5 |     100 |   97.97 | 105,110           
  ...nGenerator.ts |   86.27 |    87.65 |     100 |   86.27 | ...42-247,359-361 
 src/generated     |       0 |        0 |       0 |       0 |                   
  git-commit.ts    |       0 |        0 |       0 |       0 | 1-10              
 src/goals         |   93.04 |    89.37 |   94.58 |   93.04 |                   
  ...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 
  goal-evidence.ts |   88.34 |    87.76 |   97.61 |   88.34 | ...1162,1185-1188 
  ...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.93 |    89.93 |   95.83 |   96.93 | ...1345-1346,1476 
  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.07 |     84.5 |   90.62 |   88.07 |                   
  ...y-document.ts |   89.52 |    84.61 |     100 |   89.52 | ...24-325,329-330 
  ...nel-memory.ts |   97.36 |    96.63 |   96.42 |   97.36 | ...91-293,367-368 
  const.ts         |   94.28 |     92.3 |     100 |   94.28 | 66-67             
  dream.ts         |    64.6 |    72.22 |      50 |    64.6 | ...04-109,124-165 
  ...entPlanner.ts |     100 |    83.33 |     100 |     100 | 135,145           
  entries.ts       |   75.59 |    84.84 |   83.33 |   75.59 | ...56-157,172-180 
  extract.ts       |   92.41 |    79.41 |     100 |   92.41 | 56-61,100,119-122 
  ...entPlanner.ts |   91.55 |    76.74 |     100 |   91.55 | ...05,114-117,292 
  ...ionPlanner.ts |       0 |        0 |       0 |       0 | 1                 
  forget.ts        |   81.83 |       75 |   83.33 |   81.83 | ...51,474,478-507 
  indexer.ts       |   94.14 |       84 |     100 |   94.14 | ...32-233,334,337 
  ...kill-agent.ts |   97.94 |    89.36 |     100 |   97.94 | 82-83,179-180     
  manager.ts       |    78.4 |    82.29 |   77.77 |    78.4 | ...1482,1495-1497 
  ...ent-config.ts |   86.99 |    82.69 |   86.36 |   86.99 | ...69,389,396-402 
  memoryAge.ts     |   90.47 |    83.33 |     100 |   90.47 | 50-51             
  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.36 |   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 | ...63-277,291-296 
 src/mocks         |       0 |        0 |       0 |       0 |                   
  msw.ts           |       0 |        0 |       0 |       0 | 1-9               
 src/models        |   92.59 |    88.66 |   91.25 |   92.59 |                   
  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 |   74.22 |       44 |   84.61 |   74.22 | ...,67-74,106-117 
  ...igResolver.ts |   98.71 |    93.33 |     100 |   98.71 | 166,328,334       
  modelRegistry.ts |     100 |    98.11 |     100 |     100 | 177,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.17 |   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.7 |     100 |   94.49 | ...1447,1481-1483 
  ...-semantics.ts |   70.44 |    91.09 |   46.66 |   70.44 | ...2237,2311-2314 
  types.ts         |     100 |      100 |     100 |     100 |                   
 ...sifier-prompts |   99.04 |    95.23 |     100 |   99.04 |                   
  system-prompt.ts |   99.04 |    95.23 |     100 |   99.04 | 220               
 src/prompts       |   83.63 |      100 |    87.5 |   83.63 |                   
  mcp-prompts.ts   |   18.18 |      100 |       0 |   18.18 | 11-19             
  ...t-registry.ts |     100 |      100 |     100 |     100 |                   
 src/providers     |   83.73 |    78.24 |   81.25 |   83.73 |                   
  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 |   97.85 |    91.66 |   63.63 |   97.85 |                   
  ...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 |                   
  openrouter.ts    |     100 |      100 |     100 |     100 |                   
  requesty.ts      |     100 |      100 |     100 |     100 |                   
  zai.ts           |     100 |      100 |     100 |     100 |                   
 src/qwen          |   85.41 |    78.65 |      96 |   85.41 |                   
  ...tGenerator.ts |   98.64 |    98.18 |     100 |   98.64 | 105-106           
  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.58 |    86.33 |   96.72 |   90.58 |                   
  ...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.43 |    87.75 |   94.73 |   92.43 | ...2843,2858-2859 
  ...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 |   96.31 |    91.81 |     100 |   96.31 | ...11,336-337,483 
  cronTasksLock.ts |   94.44 |    89.47 |     100 |   94.44 | ...02-103,132-133 
  ...eryService.ts |   96.22 |    93.54 |      90 |   96.22 | 121,155-156,161   
  ...oryService.ts |   88.17 |    79.02 |    92.3 |   88.17 | ...1303,1344-1347 
  fileReadCache.ts |    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 |   87.38 |       72 |     100 |   87.38 | ...01-305,343-344 
  ...references.ts |   98.57 |    91.42 |     100 |   98.57 | 156-157,217-218   
  ...ionService.ts |   98.21 |    97.25 |     100 |   98.21 | ...81-682,729-730 
  ...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.5 |    94.11 |    90.9 |    98.5 | 64-65             
  ...n-registry.ts |   98.73 |    96.35 |     100 |   98.73 | 584,638-639,692   
  ...ken-counts.ts |     100 |       96 |     100 |     100 | 58                
  ...ipt-reader.ts |    93.7 |    91.22 |    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.61 |    87.01 |    93.4 |   89.61 | ...3013,3027-3047 
  sessionTitle.ts  |   96.29 |    79.41 |     100 |   96.29 | ...00-303,334-335 
  ...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 
  ...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.81 |    92.12 |     100 |   98.81 |                   
  ...capability.ts |     100 |      100 |     100 |     100 |                   
  ...part-utils.ts |     100 |      100 |     100 |     100 |                   
  ...ion-bridge.ts |   98.72 |    82.35 |     100 |   98.72 | 65,71             
  ...-constants.ts |     100 |      100 |     100 |     100 |                   
  ...ge-service.ts |   98.61 |     94.7 |     100 |   98.61 | ...06,666,679-680 
 src/skills        |   89.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 | ...1582,1659-1660 
  types.ts         |     100 |      100 |     100 |     100 |                   
  validation.ts    |   92.46 |    95.18 |     100 |   92.46 | 47-52,63-68,71-76 
 src/telemetry     |   82.54 |    84.84 |   85.71 |   82.54 |                   
  ...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 |     100 |     100 | 99                
  ...ai-request.ts |   87.52 |    92.79 |   83.78 |   87.52 | ...55-561,564-570 
  gen-ai-usage.ts  |     100 |      100 |     100 |     100 |                   
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...t.circular.ts |       0 |        0 |       0 |       0 | 1-111             
  ...-processor.ts |   99.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 |     95.8 |   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.35 |      70 |   74.23 |                   
  event-types.ts   |       0 |        0 |       0 |       0 |                   
  qwen-logger.ts   |   74.23 |    80.18 |   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         |   86.23 |    85.09 |   89.54 |   86.23 |                   
  ...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 | ...00-301,312-319 
  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.13 |    80.47 |   85.71 |   82.13 | ...3234,3236-3237 
  mcp-client.ts    |   80.03 |    86.58 |   89.47 |   80.03 | ...2272,2276-2279 
  ...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.46 |    93.93 |     100 |   97.46 | 176-177           
  ...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      |   98.35 |    93.75 |     100 |   98.35 | ...-990,1045-1046 
  ...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             
  ...d-artifact.ts |   85.68 |    81.59 |   94.73 |   85.68 | ...1071,1095-1096 
  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  |   81.13 |       90 |   66.66 |   81.13 | ...80-286,363-371 
  ...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.22 |    86.36 |   85.71 |   97.22 | 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 
  tool-error.ts    |     100 |      100 |     100 |     100 |                   
  tool-names.ts    |     100 |      100 |     100 |     100 |                   
  tool-registry.ts |   80.03 |    80.92 |   85.41 |   80.03 | ...89-990,998-999 
  tool-search.ts   |   96.19 |    89.79 |   93.75 |   96.19 | ...09,259-264,426 
  tools.ts         |   93.11 |    92.75 |    92.3 |   93.11 | ...77-578,594-600 
  ...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.04 |    87.77 |   89.38 |   87.04 |                   
  agent.ts         |   85.64 |    86.73 |   87.09 |   85.64 | ...4295,4329-4339 
  fork-profile.ts  |   93.65 |       90 |     100 |   93.65 | ...33-134,171-174 
  fork-subagent.ts |   98.73 |       95 |     100 |   98.73 | 101-102,173       
 ...tools/artifact |   95.78 |    92.51 |   88.63 |   95.78 |                   
  artifact-tool.ts |   91.46 |    88.46 |   71.42 |   91.46 | ...13-314,322-325 
  ...-publisher.ts |     100 |    85.71 |     100 |     100 | 32                
  ...-publisher.ts |   96.74 |    97.72 |    87.5 |   96.74 | 29-30,156-157     
  html.ts          |     100 |    96.77 |     100 |     100 | 122               
  ...-publisher.ts |     100 |       80 |     100 |     100 | 30                
  oss-publisher.ts |    98.1 |    91.48 |     100 |    98.1 | 43-45             
  publisher.ts     |     100 |      100 |     100 |     100 |                   
 ...s/computer-use |   90.21 |     82.3 |   78.66 |   90.21 |                   
  bootstrap.ts     |   59.42 |    80.95 |   41.66 |   59.42 | ...35-339,341-345 
  client.ts        |   80.11 |       90 |   77.77 |   80.11 | ...97,242-243,274 
  constants.ts     |     100 |    94.73 |     100 |     100 | 129,256           
  downloader.ts    |   65.29 |    52.77 |   58.33 |   65.29 | ...99-300,316-355 
  index.ts         |     100 |      100 |     100 |     100 |                   
  install-state.ts |   94.44 |    72.72 |     100 |   94.44 | 44-45             
  ...n-detector.ts |     100 |     87.5 |     100 |     100 | 50                
  schemas.ts       |     100 |      100 |     100 |     100 |                   
  tool.ts          |    96.3 |    86.11 |     100 |    96.3 | 75-76,184,252-258 
 ...tools/workflow |    86.9 |    85.36 |   78.94 |    86.9 |                   
  workflow.ts      |    86.9 |    85.36 |   78.94 |    86.9 | ...06,551,553-554 
 src/utils         |   93.07 |     89.8 |    96.8 |   93.07 |                   
  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 
  bareMode.ts      |   81.81 |      100 |      50 |   81.81 | 18-19             
  ...ry-content.ts |   98.45 |    95.45 |     100 |   98.45 | 132-133,159-160   
  browser.ts       |   86.84 |    78.94 |     100 |   86.84 | 34,36-37,65-66    
  btwUtils.ts      |   13.95 |      100 |       0 |   13.95 | 17-31,34-55       
  bundlePaths.ts   |     100 |      100 |     100 |     100 |                   
  ...on-context.ts |     100 |      100 |     100 |     100 |                   
  ...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   |   96.66 |    96.61 |   88.88 |   96.66 | 192-196           
  editHelper.ts    |   93.63 |     83.9 |     100 |   93.63 | ...27-428,462-463 
  editor.ts        |   97.65 |    95.45 |     100 |   97.65 | ...35-336,338-339 
  encoding.ts      |     100 |      100 |     100 |     100 |                   
  env.ts           |     100 |      100 |     100 |     100 |                   
  ...arResolver.ts |   94.28 |    88.88 |     100 |   94.28 | 28-29,125-126     
  ...entContext.ts |   96.63 |    90.13 |   96.66 |   96.63 | ...42,444-445,512 
  errorParsing.ts  |     100 |      100 |     100 |     100 |                   
  ...rReporting.ts |   95.65 |    93.33 |     100 |   95.65 | 37-38             
  errors.ts        |   88.92 |    93.03 |      68 |   88.92 | ...92,394,410-411 
  fetch.ts         |   90.68 |    82.63 |     100 |   90.68 | ...72,483-484,503 
  file-identity.ts |     100 |      100 |     100 |     100 |                   
  fileUtils.ts     |   95.05 |    92.71 |   96.15 |   95.05 | ...1988,1996-1997 
  forkedAgent.ts   |   92.98 |    83.78 |   94.44 |   92.98 | ...77,685,690-697 
  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 
  ...ionManager.ts |     100 |     90.9 |     100 |     100 | 27                
  ...lPromptIds.ts |     100 |      100 |     100 |     100 |                   
  ...on-context.ts |     100 |      100 |     100 |     100 |                   
  jsonl-utils.ts   |   96.15 |    93.51 |     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                
  ...iagnostics.ts |    96.4 |     94.2 |     100 |    96.4 | ...66,293-294,376 
  ...yDiscovery.ts |   93.42 |    90.72 |     100 |   93.42 | ...11,370,592-595 
  ...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 
  readManyFiles.ts |   95.75 |    80.86 |     100 |   95.75 | ...05,558,568-572 
  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 
  ...sDiscovery.ts |   97.46 |    93.05 |     100 |   97.46 | ...04,182-183,202 
  ...iagnostics.ts |   83.08 |     67.5 |   92.59 |   83.08 | ...23,543-544,550 
  ...tchOptions.ts |   84.87 |    86.71 |   96.29 |   84.87 | ...71,696,725-734 
  ...odelPrefix.ts |     100 |      100 |     100 |     100 |                   
  runtimeStatus.ts |   97.77 |    91.66 |     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.47 |     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.26 |    88.58 |     100 |   86.26 | ...2295,2302-2306 
  ...lAstParser.ts |    98.3 |    91.59 |     100 |    98.3 | ...1340-1342,1352 
  ...ContextEnv.ts |     100 |    94.73 |     100 |     100 | 76,111            
  ...nlyChecker.ts |   96.33 |    96.57 |     100 |   96.33 | ...83-284,292-293 
  sideQuery.ts     |   86.82 |    86.66 |     100 |   86.82 | ...79-185,187-193 
  ...pEventSink.ts |     100 |       80 |     100 |     100 | 61                
  ...tGenerator.ts |     100 |      100 |     100 |     100 |                   
  ...ameContext.ts |     100 |      100 |     100 |     100 |                   
  symlink.ts       |   77.77 |       50 |     100 |   77.77 | 44,54-59          
  ...e-encoding.ts |   85.96 |    76.47 |     100 |   85.96 | 58-61,64-65,78-79 
  ...emEncoding.ts |   96.36 |    91.17 |     100 |   96.36 | 59-60,124-125     
  terminalSafe.ts  |     100 |      100 |     100 |     100 |                   
  ...Serializer.ts |   98.72 |       90 |     100 |   98.72 | 42-43,134,201-203 
  testUtils.ts     |   53.33 |      100 |   33.33 |   53.33 | ...53,59-64,70-72 
  ...-constants.ts |     100 |      100 |     100 |     100 |                   
  textUtils.ts     |      65 |      100 |      75 |      65 | 56-75             
  thoughtUtils.ts  |     100 |    95.65 |     100 |     100 | 99                
  ...-converter.ts |   95.23 |    85.71 |     100 |   95.23 | 36-37             
  ...repeat-key.ts |     100 |      100 |     100 |     100 |                   
  ...name-utils.ts |     100 |      100 |     100 |     100 |                   
  ...-finalizer.ts |    98.1 |     92.3 |   93.33 |    98.1 | ...34-235,237-241 
  ...iagnostics.ts |   99.06 |     97.7 |   91.66 |   99.06 | 133-134,205       
  ...-retention.ts |     100 |    95.83 |     100 |     100 | 116               
  tool-utils.ts    |    95.2 |    93.61 |     100 |    95.2 | ...58-159,162-163 
  ...ultCleanup.ts |   54.62 |    57.14 |      75 |   54.62 | ...03-105,108-134 
  ...Compaction.ts |   96.13 |    96.39 |     100 |   96.13 | ...34-339,341-346 
  ...pt-records.ts |   87.61 |    86.23 |     100 |   87.61 | ...80-484,514-529 
  truncation.ts    |   90.61 |    90.35 |     100 |   90.61 | ...53-461,498-504 
  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 |   71.04 |    75.92 |   91.17 |   71.04 |                   
  ...eTokenizer.ts |   65.72 |    74.02 |    92.3 |   65.72 | ...65-466,479-533 
  index.ts         |     100 |      100 |     100 |     100 |                   
  ...tTokenizer.ts |   68.39 |    69.49 |    90.9 |   68.39 | ...24-325,327-328 
  ...ageFormats.ts |     100 |      100 |     100 |     100 |                   
  textTokenizer.ts |     100 |      100 |     100 |     100 |                   
  types.ts         |       0 |        0 |       0 |       0 | 1                 
-------------------|---------|----------|---------|---------|-------------------

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

@qwen-code-ci-bot 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.

LGTM, looks ready to ship — CI landed green after the review. ✅

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

中文说明

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

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

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

{
"path": "src/file.ts",
"line": 42,
"body": "**[Critical]** issue description as plain sentences carrying the concrete trigger and the wrong outcome\n\n```suggestion\nfix code\n```\n\n_— YOUR_MODEL_ID via Qwen Code /review (v{{cliVersion}})_",

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] R1-1: The split moves the template tokens out of the only text BundledSkillLoader interpolates. {{cliVersion}} now appears only in this reference file (here and at lines 219, 248) and {{model}} only in references/persistence.md:85 — both loaded raw via read_file, for which no substitution pass exists, and nothing else in the injected context supplies the CLI version. A posting run therefore drafts the mandated comment footer with a literal (v{{cliVersion}}): REVIEW_FOOTER_RE's version span [A-Za-z0-9._+-] excludes {/}, so stripReviewFooter cannot match it, and normalizeInlineComments appends the canonical footer after it — every posted inline comment carries a visibly broken (v{{cliVersion}}) footer above the canonical one, on the default attribution-on leg. If the model invents a version instead, the footer names a version the run never ran — the deterministic guarantee the loader provided pre-split is gone either way. The {{model}} instance, copied literally into .qwen/review-cache/pr-<n>.json, also fails the next round's same-model anchor gate (cross-model-anchor) and silently degrades incremental reviews to full-diff re-reviews. Witness: a probe ran the real stripReviewFooter/reviewFooter on the drafted body _— qwen3-coder via Qwen Code /review (v{{cliVersion}})_ — attribution-on strip removed the literal-token footer: false, posted body carries the marker twice ((v{{cliVersion}}) above (v0.21.2)); flip side (same draft with the token interpolated as pre-PR): strips true, one canonical footer. The attribution-off leg is NOT affected (its forged-footer regex admits braces — verified).

Fix — do not keep a template variable in a file no substitution pass reads; submit already strips the drafted footer and re-appends the canonical one itself, so the draft can name the slot without template syntax:

_— YOUR_MODEL_ID via Qwen Code /review_

(in all three footer templates), and restate the cache template's lastModelId in terms of the already-declared YOUR_MODEL_ID value. Alternatively extend the loader to interpolate reference files, or make normalizeInlineComments fail closed on residual {{…}} tokens.

中文说明

此次拆分把模板变量移出了 BundledSkillLoader 唯一会做插值的文本。{{cliVersion}} 现在只出现在本参考文件中(此处及第 219、248 行),{{model}} 只出现在 references/persistence.md:85 —— 两者都是模型用 read_file 原样读取的文件,不存在任何替换通道,注入上下文的其他地方也不提供 CLI 版本号。因此发布运行会把强制要求的评论落款起草为字面量 (v{{cliVersion}})REVIEW_FOOTER_RE 的版本段 [A-Za-z0-9._+-] 不含 {/}stripReviewFooter 无法匹配,normalizeInlineComments 会在其后追加规范落款 —— 默认开启署名时,每条已发布的行内评论都会在规范落款上方多出一个显眼的坏落款 (v{{cliVersion}})。若模型改为杜撰一个版本号,落款将写上该运行从未使用的版本 —— 拆分前由加载器提供的确定性保证两种情况下都已丧失。{{model}} 若被逐字抄进 .qwen/review-cache/pr-<n>.json,还会使下一轮的同模型锚点门控拒绝(cross-model-anchor),把增量评审静默降级为全量重审。证据:探针用真实的 stripReviewFooter/reviewFooter 处理起草正文 _— qwen3-coder via Qwen Code /review (v{{cliVersion}})_ —— 开启署名时字面量落款被剥掉:false,发布正文出现两次落款;翻转侧(按拆分前方式完成插值的同一段草稿):剥离 true,只剩一个规范落款。关闭署名的分支不受影响(其伪造落款正则允许花括号 —— 已验证)。修复建议:不要在无替换通道的文件里保留模板变量 —— submit 本就会剥掉草稿落款并重新追加规范落款,草稿可以不含模板语法地指明该槽位(三个落款模板均改为 _— YOUR_MODEL_ID via Qwen Code /review_),并把缓存模板的 lastModelId 改为引用已声明的 YOUR_MODEL_ID 值;或者扩展加载器对参考文件做插值,或者让 normalizeInlineComments 对残留的 {{…}} 失败即拒绝。

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

**Apply the report:**

- `blockOnExistingComments=true` → **an overlap is a duplicate; the disposal is deterministic — do not ask the user.** Drop each finding whose `(path, line)` appears in `existingComments.overlap` from your `comments` array — **except a finding whose `id` appears in `matchedIds` of an `existingComments.repost` entry at the same location**: that is a Step 6 ledger re-post, and re-posting under the original id is exactly how the id survives into the next round's marker — GitHub stacks it in the original thread, which is where it belongs. The inline counts follow automatically, because `submit` counts the comments you actually attach, so a dropped Critical is simply no longer there to count (and a dropped Critical that was already on the PR does not belong in `state.bodyCriticals` either). List each dropped finding in the terminal summary as "already reported at <path>:<line> — comment <id> (by <user>): <excerpt>", taking `<id>`, `<user>` (omit the `(by <user>)` slot when the entry carries no `user`), and the 80-char `<excerpt>` from the overlapping comment (`existingComments.overlap` entries carry all three), and submit the remainder without pausing. Naming the author is what makes an authorship-refused re-post exemption self-explanatory: the drop line then shows a DIFFERENT author next to the matching id. Name the comment on EVERY drop — that is what makes a same-line false positive visible to the operator instead of a bare location. This decision point has been improvised as an interactive question, which stalls a headless run forever (measured; DESIGN.md — The interactive overlap question); the Exclusion Criteria already forbid re-reporting discussed issues, so there is nothing to ask. (If dropping overlaps leaves zero findings, that is still not a question: submit with an empty `comments` array like any other run — `submit` composes the body from `state`, and a run with nothing to add posts whatever that computes. A recap like "all already reported, N resolved by `<sha>`, two still standing" goes in the **terminal summary**, not the PR: `compose-review` has no free-text body field to carry it (see Step 7 — you do not author PR-facing prose), and it is never a `gh pr comment` — a hand-posted issue comment bypasses the authorisation gate, the downgrade semantics, and the `posted` contract all at once.)
- `downgradeApprove` / `downgradeRequestChanges` / `downgradeReasons` → **do not apply these by hand.** Copy them into the `presubmit` field of the `compose-review` input (below); the subcommand owns the semantics its tests pin — a downgrade fires only when the verdict it names is the one on the table (a Suggestion-only review is already Comment, so nothing is downgraded and no "Downgraded" sentence is emitted), the downgrade sentence carries the reasons, and a downgraded Request changes keeps its body Criticals after the sentence so the self-PR downgrade never erases the only copy of a blocker.

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.

[Suggestion] R1-2: Stale "(below)" pointer created by the split. The compose-state field list this bullet points at moved from Step 7 into the core SKILL.md (Step 6 Verdict section), so nothing below line 147 of this file documents the fields anymore. The sibling deictic at line 223 (// the compose-review state below in the review-JSON example) is stale in the same sense, though the adjacent "the field list there is authoritative for both consumers" sentence redirects the reader; line 147 has no such redirect. The failure is real at the consumer: compose-review.ts reads only input.presubmit.{downgradeApprove,downgradeRequestChanges,downgradeReasons}; an executor that scans this file for the promised spec, finds none, and improvises a top-level shape would silently lose the downgrades — a self-PR or drifted run would keep the verdict the gate meant to cap. Mitigating fact: the relocated list sits in the always-injected core, so the spec is still reachable — which keeps this a wrong-pointer fix rather than a dropped contract.

Copy them into the `presubmit` field of the `compose-review` input (listed with the state fields in Step 6's Verdict section)

and fix the same deictic in the JSON comment at line 223.

中文说明

拆分产生的过期「(below)」指向。本条所指的 compose 状态字段表已从 Step 7 移入核心 SKILL.md(Step 6 裁决小节),因此本文件第 147 行之下再无任何字段说明。第 223 行的同类指示语(review-JSON 示例中的 // the compose-review state below)同样过期,但其紧邻的「the field list there is authoritative for both consumers」一句为读者指了路;第 147 行没有这样的改道。对消费端的失败是真实的:compose-review.ts 只读 input.presubmit.{downgradeApprove,downgradeRequestChanges,downgradeReasons};执行者若按承诺在文件内寻找字段规范而不得、转而即兴发挥成顶层字段,降级会被静默丢弃 —— 自身 PR 或 head 漂移的运行将保留门控本应封顶的裁决。缓解事实:搬迁后的字段表位于始终注入的核心正文,规范仍然可达 —— 因此这是「指错位置」的修复,而非合同丢失。

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

@@ -183,7 +181,7 @@ Based on the parsed `target.type`:

- **`{"resumed": false, "resumeRefused": "<reason>"}`** — the same command has already fallen through to a fresh fetch; proceed exactly as a normal run (the report at `--out` is new) and tell the user why the resume was refused. A refusal with reason `head-moved` IS this review's one head-movement restart — `fetch-pr` records it on disk, and Step 7's restart bound reads as already spent.

- **The setup calls that do not feed each other go out in ONE response — as separate tool calls, never joined with `&&`/`;` into one Shell command** (high and medium effort — at low, Step 2's rules load is skipped and nothing consumes the comment index, so the batch is whatever calls remain). A joined chain changes the failure semantics — a `pr-context` failure must warn-and-continue, not skip the other two — and merges the `warning:` size lines the paging decisions below read. Once `fetch-pr` has returned (and the incremental check, which reads its report, is decided — except on the side-file anchor path, where the decision deliberately waits for `pr-context`'s side file), the next three commands are mutually independent — `pr-context` (below), `comment-status` (below), and Step 2's rules load — every one a read with no side effect the others observe (on an Aone target, `comment-status` drops out of the batch — it has no Aone backing; the skip list in the Aone section above names why — leaving a two-call batch). Issue the whole batch in a single response, exactly as Step 3 already requires for the agent fan-out, then read their outputs (paging where a file exceeds one read, and those reads can share a response too). The rules load takes `<remote>/<baseRefName>` — the ref `fetch-pr` just updated; no local-existence probe — **except when the fetch report recorded `baseFetchFailed: true`: drop it from the batch and `git fetch <remote> <baseRefName>` first** (on an unresolvable ref `load-rules` reports "no rules found", indistinguishable from a repo that has none, and the review silently enforces nothing). Measured on a real small-PR run: the stretch from `parse-args` to the first agent launch took **7 minutes of wall clock**, one round-trip at a time, on calls that never needed an order. The only orderings that matter: `fetch-pr` before all of them (it creates the worktree and the plan), **any side-file `fetch-pr --since` re-run before `repo-context`** (the re-run rewrites the fetch report from scratch, and `repo-context` enriches that same file in place — an enrichment written first is silently discarded, and the roster then builds without the manifest's required agents), `repo-context` before `agent-prompt --roster` (the roster and every brief bake the manifest's required agents and context blocks, so building them first silently drops the context), and `agent-prompt --roster` after the rules load (the roster bakes the rules into every brief).
- **The setup calls that do not feed each other go out in ONE response — as separate tool calls, never joined with `&&`/`;` into one Shell command** (high and medium effort — at low, Step 2's rules load is skipped and nothing consumes the comment index, so the batch is whatever calls remain). A joined chain changes the failure semantics — a `pr-context` failure must warn-and-continue, not skip the other two — and merges the `warning:` size lines the paging decisions below read. Once `fetch-pr` has returned (and the incremental check, which reads its report, is decided — except on the side-file anchor path, where the decision deliberately waits for `pr-context`'s side file), the next three commands are mutually independent — `pr-context` (below), `comment-status` (below), and Step 2's rules load — every one a read with no side effect the others observe. Issue the whole batch in a single response, exactly as Step 3 already requires for the agent fan-out, then read their outputs (paging where a file exceeds one read, and those reads can share a response too). The rules load takes `<remote>/<baseRefName>` — the ref `fetch-pr` just updated; no local-existence probe — **except when the fetch report recorded `baseFetchFailed: true`: drop it from the batch and `git fetch <remote> <baseRefName>` first** (on an unresolvable ref `load-rules` reports "no rules found", indistinguishable from a repo that has none, and the review silently enforces nothing). Measured on a real small-PR run: the stretch from `parse-args` to the first agent launch took **7 minutes of wall clock**, one round-trip at a time, on calls that never needed an order. The only orderings that matter: `fetch-pr` before all of them (it creates the worktree and the plan), **any side-file `fetch-pr --since` re-run before `repo-context`** (the re-run rewrites the fetch report from scratch, and `repo-context` enriches that same file in place — an enrichment written first is silently discarded, and the roster then builds without the manifest's required agents), `repo-context` before `agent-prompt --roster` (the roster and every brief bake the manifest's required agents and context blocks, so building them first silently drops the context), and `agent-prompt --roster` after the rules load (the roster bakes the rules into every brief).

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.

[Suggestion] R1-3: This diff removes the last three Aone comment-status skip residues (the "drops out of the batch — it has no Aone backing … leaving a two-call batch" parenthetical here, the "and on Aone targets, where the command has no backing" guard clause in the comment-status section, and the Step 6 no-report clause) — a deliberate, code-backed alignment with the a1 behavior that already landed — but no revert-guard test pins the removal. The existing guard 'runs comment-status and presubmit on Aone targets — backed, not skipped' (SKILL.test.ts) negates older caveat wordings only; none of its assertions mention the phrases this diff deleted or the replacement contract. A future merge resolution or partial revert re-adding the skip ships green — every existing assertion stays satisfied — while Aone runs would again skip comment-status, contradicting references/aone.md's a1-backing statement and degrading Step 6's blocker re-check to lightweight-mode routing. This file has a documented merge-residue incident already — the sibling 'not merge residue' test exists because of it.

Extend that guard with the removal and its replacement, e.g. in SKILL.test.ts:

expect(body).not.toContain('drops out of the batch');
expect(body).not.toContain('leaving a two-call batch');
expect(body).toContain('on an Aone target it runs a1-backed');
中文说明

本 diff 删除了最后三处 Aone comment-status 跳过残留(此处的「drops out of the batch — it has no Aone backing … leaving a two-call batch」括注、comment-status 小节的「and on Aone targets, where the command has no backing」守卫从句、以及 Step 6 的「无报告」从句)—— 这是与已落地的 a1 行为对齐的、有代码支撑的有意修复 —— 但没有任何防回归测试钉住这次删除。现有守卫『runs comment-status and presubmit on Aone targets — backed, not skipped』(SKILL.test.ts)只否定了更早期的告诫措辞;它的断言既不提及本 diff 删除的这些短语,也不钉住替代后的合同。未来某次合并解决或部分回退若重新加回跳过措辞,将一路绿灯地合入 —— 所有现有断言仍然满足 —— 而 Aone 运行将再次跳过 comment-status,与 references/aone.md 的 a1 支持声明矛盾,并把 Step 6 的 blocker 复核降级为轻量模式路由。本文件已有合并残留事故的先例 —— 姊妹测试『not merge residue』正是因此存在。

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

@@ -829,7 +827,7 @@ The posture binds the posting path; low and medium never post, so for them it ch

### Before an Approve or a zero-Critical verdict: re-check the open Criticals

A `C=0` outcome — Approve, or a Comment with no Critical — is a claim that nothing blocks the merge. It is not the default you fall back to when your own agents surfaced nothing. **If Step 1 set the context-unavailable state** (`pr-context` failed — lightweight or same-repo), there is no context file to read: skip the walk below, record every existing Critical as `cannot tell` by construction, and carry that into the verdict — which the Step 7 invariant already caps at `COMMENT`. Otherwise, take **each live blocker already on the PR — from every comment-bearing section of the context file: "Open inline comments", "Blockers to re-check", "Review summaries", and "Already discussed" (both its inline threads and its issue-level comments)** — and check it against the code as it stands at the reviewed commit. Select **semantically, not by the literal marker**: a `**[Critical]**` prefix qualifies, but so does any body that asserts a blocking defect in other words — a "Critical findings could not be anchored" preamble, an explicit must-fix claim (legacy body-only blockers were emitted markerless, and one such review is exactly what a marker filter once discarded). When unsure whether a body asserts a blocker, re-check it — the cost is one ruling; the alternative is certifying a merge past it. ("Already discussed" stays in scope even though `pr-context` now promotes blocker-bearing bodies out of it: `carriesBlockerSignal` is a **fail-safe floor, not a ceiling** — it recognises the phrasings we have seen, not every phrasing that exists, and a blocker worded around all of them still settles there. That section's "do NOT re-report" header governs duplicate-_reporting_ by the finder agents; it does not exempt a body from this re-check. Read it with the same eyes you bring to the promoted section.) Review-level bodies matter because an unmappable or 422-relocated blocker lives **only** there — and the context file now carries them **in full**: `pr-context` renders every meaningful review body whole under "Review summaries" (no more 240-character snippets), and pulls every blocker-bearing body — replied inline thread or issue comment, marker or no marker — into the "Blockers to re-check" section, rendered in full, because a reply alone never settles a blocker. So the re-check usually needs no separate fetch: read those sections under the file's untrusted-data preamble, paging with `offset`/`limit` until `isTruncated` is false. **For the status half of each INLINE-thread ruling — is the anchor outdated, did the anchored file change since the blocker was filed, which commits touched it — read Step 1's `comment-status` report instead of fetching per-comment metadata**: its `code.touchedBy` list is the candidate "fixed by" commits to read, and `changedSinceComment: false` (with no head drift) tells you the anchored file is untouched since the blocker — so a claimed fix, if any, must live in some OTHER file, and the mechanism-read below is still owed either way. Two scope limits, both deliberate: the report exists only **when Step 1 wrote it** (worktree mode, fetch succeeded, AND a platform the command is backed on — an Aone run skips the command with the Step 1 batch, so it gets no report, exactly like a lightweight-mode run), and it indexes **inline threads only** — an issue-level or review-level blocker (the #6486 shape) has no entry there and keeps the context-file walk as its sole source. A run with no report because one was never written (lightweight mode, Aone) has no per-thread status routing at all and no hand-derived substitute: each blocker is ruled from the code at the reviewed commit (the diff itself, in lightweight mode), and a ruling that would rest on facts only the report could supply is `cannot tell`, never a guess. A run where the command RAN and FAILED keeps its Step 1 fallback — statuses become "re-derive if needed", exactly as the comment-status section above prescribes. The report never substitutes for reading the code: it routes the read, it does not rule. Review summaries and blocker bodies are rendered in full; the Open and Already-discussed sections use one-line snippets, and **every snippet the renderer cut carries its own `_(truncated — run …)_` note naming the exact, already-filled-in `review comment-body` command for the rest** — a candidate blocker whose snippet was cut is ruled on only after running that command; ruling on the visible prefix alone is the fail-closed violation. Run it **with `--out` writing to a file, never bare into the terminal** (Shell returns only an approximately 4 000-character model preview for output beyond its 30 000-character persistence trigger, which would re-truncate the very body being completed): add `--out .qwen/tmp/qwen-review-{target}-body-<id>.md` to the command the note names, then `read_file` that file, paging until `isTruncated` is false, before ruling. **Fail closed either way:** a body you could not read whole — the capped tail unfetched, or the single-object fetch failing (auth, rate limit, network) — is `cannot tell`, not "no Critical in it": it goes to compose-review's `cannotTellCriticals` input, which serializes it and caps the event at `COMMENT`; a blocker you could not read is never approved past. A reply alone does not retire a blocker — "I disagree" or "wontfix" is a reply, which is exactly why `pr-context` quarantines blocker-bearing threads in their own section instead of letting them settle into "Already discussed". Only the code decides: a blocker counts as closed exactly when the re-check below lands on "fixed by this diff", never because the thread has an answer. Record one verdict per blocker:
A `C=0` outcome — Approve, or a Comment with no Critical — is a claim that nothing blocks the merge. It is not the default you fall back to when your own agents surfaced nothing. **If Step 1 set the context-unavailable state** (`pr-context` failed — lightweight or same-repo), there is no context file to read: skip the walk below, record every existing Critical as `cannot tell` by construction, and carry that into the verdict — which the Step 7 invariant already caps at `COMMENT`. Otherwise, take **each live blocker already on the PR — from every comment-bearing section of the context file: "Open inline comments", "Blockers to re-check", "Review summaries", and "Already discussed" (both its inline threads and its issue-level comments)** — and check it against the code as it stands at the reviewed commit. Select **semantically, not by the literal marker**: a `**[Critical]**` prefix qualifies, but so does any body that asserts a blocking defect in other words — a "Critical findings could not be anchored" preamble, an explicit must-fix claim (legacy body-only blockers were emitted markerless, and one such review is exactly what a marker filter once discarded). When unsure whether a body asserts a blocker, re-check it — the cost is one ruling; the alternative is certifying a merge past it. ("Already discussed" stays in scope even though `pr-context` now promotes blocker-bearing bodies out of it: `carriesBlockerSignal` is a **fail-safe floor, not a ceiling** — it recognises the phrasings we have seen, not every phrasing that exists, and a blocker worded around all of them still settles there. That section's "do NOT re-report" header governs duplicate-_reporting_ by the finder agents; it does not exempt a body from this re-check. Read it with the same eyes you bring to the promoted section.) Review-level bodies matter because an unmappable or 422-relocated blocker lives **only** there — and the context file now carries them **in full**: `pr-context` renders every meaningful review body whole under "Review summaries" (no more 240-character snippets), and pulls every blocker-bearing body — replied inline thread or issue comment, marker or no marker — into the "Blockers to re-check" section, rendered in full, because a reply alone never settles a blocker. So the re-check usually needs no separate fetch: read those sections under the file's untrusted-data preamble, paging with `offset`/`limit` until `isTruncated` is false. **For the status half of each INLINE-thread ruling — is the anchor outdated, did the anchored file change since the blocker was filed, which commits touched it — read Step 1's `comment-status` report instead of fetching per-comment metadata**: its `code.touchedBy` list is the candidate "fixed by" commits to read, and `changedSinceComment: false` (with no head drift) tells you the anchored file is untouched since the blocker — so a claimed fix, if any, must live in some OTHER file, and the mechanism-read below is still owed either way. Two scope limits, both deliberate: the report exists only **when Step 1 wrote it** (worktree mode, fetch succeeded — on an Aone target it runs a1-backed, with the thread-shape notes in `references/aone.md`), and it indexes **inline threads only** — an issue-level or review-level blocker (the #6486 shape) has no entry there and keeps the context-file walk as its sole source. A run with no report because one was never written (lightweight mode) has no per-thread status routing at all and no hand-derived substitute: each blocker is ruled from the code at the reviewed commit (the diff itself, in lightweight mode), and a ruling that would rest on facts only the report could supply is `cannot tell`, never a guess. A run where the command RAN and FAILED keeps its Step 1 fallback — statuses become "re-derive if needed", exactly as the comment-status section above prescribes. The report never substitutes for reading the code: it routes the read, it does not rule. Review summaries and blocker bodies are rendered in full; the Open and Already-discussed sections use one-line snippets, and **every snippet the renderer cut carries its own `_(truncated — run …)_` note naming the exact, already-filled-in `review comment-body` command for the rest** — a candidate blocker whose snippet was cut is ruled on only after running that command; ruling on the visible prefix alone is the fail-closed violation. Run it **with `--out` writing to a file, never bare into the terminal** (Shell returns only an approximately 4 000-character model preview for output beyond its 30 000-character persistence trigger, which would re-truncate the very body being completed): add `--out .qwen/tmp/qwen-review-{target}-body-<id>.md` to the command the note names, then `read_file` that file, paging until `isTruncated` is false, before ruling. **Fail closed either way:** a body you could not read whole — the capped tail unfetched, or the single-object fetch failing (auth, rate limit, network) — is `cannot tell`, not "no Critical in it": it goes to compose-review's `cannotTellCriticals` input, which serializes it and caps the event at `COMMENT`; a blocker you could not read is never approved past. A reply alone does not retire a blocker — "I disagree" or "wontfix" is a reply, which is exactly why `pr-context` quarantines blocker-bearing threads in their own section instead of letting them settle into "Already discussed". Only the code decides: a blocker counts as closed exactly when the re-check below lands on "fixed by this diff", never because the thread has an answer. Record one verdict per blocker:

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.

[Suggestion] R1-7: The hunk folds Aone into the comment-status report's existence ("on an Aone target it runs a1-backed"), but the same sentence's second scope limit — "it indexes inline threads only — an issue-level or review-level blocker (the #6486 shape) has no entry there" — is true only of the GitHub report. On Aone, listMrComments returns ALL MR comments, and the shared thread builder keeps another account's pathless (MR-level) blocker comments in the index — a probe driving the real aoneCommentToStatusComment/buildThreadStatuses with such a comment observed the entry: path "", isBlocker: true, file-level anchor with line null, all code facts unknown, never outdated (own-account pathless roots are dropped from blocker promotion; other accounts' are kept). The references/aone.md thread-shape note this sentence points at covers code-fact degradation and outdated/resolved bucketing but says nothing about pathless entries. Consequence: on an Aone MR where another account posted an issue-level blocker, Step 6's re-checker — told by this sentence that such blockers "have no entry" in the report — either distrusts the report it is told to route the status half through, or treats the pathless entry as an inline thread with vanished anchored code instead of taking the context-file walk prescribed here. The fail-closed cannot tell default prevents a wrong verdict; the cost is misrouting in the step whose purpose is fail-closed blocker re-checking.

Qualify the limit for the newly covered platform — e.g. "(GitHub shapes the index as inline threads only — the Aone index also carries pathless MR-level threads)" — or extend the references/aone.md thread-shape note with the pathless-entry shape.

中文说明

该 hunk 把 Aone 纳入了 comment-status 报告的存在条件(「on an Aone target it runs a1-backed」),但同句的第二个范围限定 —— 「it indexes inline threads only — an issue-level or review-level blocker (the #6486 shape) has no entry there」—— 只对 GitHub 报告成立。在 Aone 上,listMrComments 返回全部 MR 评论,共享的线程构造器会把其他账号的无路径(MR 级)blocker 评论保留进索引 —— 探针用这样一条评论驱动真实的 aoneCommentToStatusComment/buildThreadStatuses,观察到条目:path 为 ""isBlocker: true、文件级锚点且 line 为 null、所有代码事实为 unknown、永不过期(本账号的无路径根评论会被取消 blocker 提升,其他账号的保留)。本句指向的 references/aone.md 线程形态注释只覆盖代码事实降级与 outdated/resolved 分桶,完全未提及无路径条目。后果:当某个 Aone MR 上有其他账号发布了 issue 级 blocker 时,Step 6 的复核者被本句告知此类 blocker 在报告里「没有条目」,于是要么不信任它被告知要用来路由状态信息的报告,要么把无路径条目当成锚定代码已消失的行内线程,而不是走此处规定的 context 文件路径。失败即保守的 cannot tell 默认防止错误裁决;代价是在这个以「失败即保守复核 blocker」为目的的步骤里发生误路由。

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

// A run must learn from the injected core alone WHICH file to read and
// when; a gate that moved into the file it gates would be unreadable.
const core = coreBody();
expect(core).toContain('**Reference files, gated by this verdict.**');

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.

[Suggestion] R1-8: This test claims in its name and comment to pin "WHICH file to read and when", but its assertions stop at the file-enumeration prefixes — none of the three load-condition clauses in the core gate list (SKILL.md:78-80) is asserted by any test in the repo (grepped: zero hits for "posting is live", "cross-repo lightweight", "GitHub runs never", etc.). A probe confirmed the gap: rewriting posting.md's bullet to Load it before Step 7 on every run. with the enumeration prefix intact passes 35/35 — the mutant survives; adding toContain pins for the condition clauses fails the mutant and passes on the pristine corpus. The trigger is not hypothetical for this file — merge residue demonstrably happens here (the sibling 'not merge residue' test exists because of one), and the gate conditions are the mechanism this PR introduces.

Suggested change
expect(core).toContain('**Reference files, gated by this verdict.**');
expect(core).toContain('**Reference files, gated by this verdict.**');
expect(core).toContain('Load it when, and only when, posting is live');
expect(core).toContain('Load it before Step 8 on every run except cross-repo lightweight mode');
expect(core).toContain('Load it before `match-remote` when the target is Aone');
中文说明

该测试的名称与注释声称要钉住「读哪个文件、何时读」,但其断言止步于文件枚举报头 —— 核心门控表(SKILL.md:78-80)中三个加载条件从句,整个仓库没有任何测试断言(grep 证实:"posting is live"、"cross-repo lightweight"、"GitHub runs never" 等均零命中)。探针确认了缺口:把 posting.md 的条件从句改写为 Load it before Step 7 on every run.(保留枚举报头)仍通过 35/35 —— 变异体存活;为条件从句补上 toContain 钉住后,变异体失败、原始语料通过。对本文件而言这并非假想触发 —— 合并残留在这里有实锤先例(姊妹测试『not merge residue』正是因此存在),而门控条件正是本 PR 引入的机制。

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

const core = coreBody();
// Distinctive openings of the moved sections: present in exactly one file.
expect(core).not.toContain(
'**Use the "Create Review" API to submit verdict + inline comments',

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.

[Suggestion] R1-5: This test's name and comment promise the moved sections are "present in exactly one file", but the three section-opening pins assert absence from the CORE only — duplication between the three reference files passes. Only the separate modelId pin enforces corpus-wide uniqueness (toHaveLength(1)). A probe confirmed the gap: appending the "Create Review" opening to aone.md (so it exists in both aone.md and posting.md) passes 35/35 as shipped; corpus-wide toHaveLength(1) pins fail the mutant and pass on the pristine corpus. The harm path is real: an Aone --comment run loads both posting.md and aone.md (core gate block, SKILL.md:76-81), so a duplicated step body governs one run in two potentially divergent copies — and this PR's own head merge committed exactly this residue shape once (the sibling 'keeps the corrected Aone --comment contract, not merge residue' test exists because of it).

Promote the three pins to the modelId shape over skillBody():

const corpus = skillBody();
expect(corpus.match(/\*\*Use the "Create Review" API/g)).toHaveLength(1);
expect(corpus.match(/### Report persistence/g)).toHaveLength(1);
expect(corpus.match(/run `\/review` \*\*from inside a clone of that repo\*\*/g)).toHaveLength(1);

(optionally keeping the not.toContain(core) halves).

中文说明

该测试的名称与注释承诺被搬迁的小节「恰好存在于一个文件中」,但三个小节开头钉住只断言了核心正文中的缺席 —— 三个参考文件之间的重复可以通过。只有独立的 modelId 钉住通过 toHaveLength(1) 强制全语料唯一。探针确认了缺口:把 "Create Review" 开头追加到 aone.md(使其同时存在于 aone.md 与 posting.md)按现状仍通过 35/35;改为全语料 toHaveLength(1) 钉住后变异体失败、原始语料通过。危害路径真实存在:Aone --comment 运行会同时加载 posting.md 与 aone.md(核心门控块,SKILL.md:76-81),重复的步骤正文会让同一次运行受两份可能分叉的副本约束 —— 而本 PR 自己的头部合并就曾提交过完全相同的残留形态(姊妹测试『keeps the corrected Aone --comment contract, not merge residue』正是因此存在)。

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

}
}
}
return parts.join('\n').replace(/\r\n/g, '\n');

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.

[Suggestion] R1-6: The widened corpus oracle accepts each pinned template from ANY corpus file — including verdict-gated reference files many runs never load — weaker than both the pre-PR oracle (SKILL.md only = injected on every run) and the placement invariant the comment above states ("the composed-name template lives in the core SKILL.md, the report stems in references/persistence.md"). Today's placement is correct (composed-name template only at SKILL.md:921, stems only at persistence.md:14-16), so nothing is currently broken — the guard is just wider than the runtime visibility it is meant to pin. A probe confirmed both directions: moving the --out template into posting.md, or the stems into posting.md/aone.md, keeps both oracles green (2/2 passing) while a report-only PR run (never loads posting.md) or a GitHub run (never loads aone.md) would never see the template and would improvise artifact names — composedNameFor/reportPatternFor drifting from what the skill writes is the exact live defect class this test's header says the pinning exists to end.

Match each oracle to the files the owning step is guaranteed to see: extract the composed-name template from SKILL.md only, and the report stems from SKILL.md + references/persistence.md only (the one reference loaded before Step 8 on every run that has a Step 8), instead of the whole corpus for both.

中文说明

扩展后的语料 oracle 接受来自任意语料文件的模板匹配 —— 包括许多运行从不加载的、按 verdict 门控的参考文件 —— 这比拆分前的 oracle(只有 SKILL.md = 每次运行都注入)更弱,也弱于上方注释自述的摆放不变量(「composed-name 模板在核心 SKILL.md,report 词干在 references/persistence.md」)。当前的摆放是正确的(composed-name 模板仅在 SKILL.md:921,词干仅在 persistence.md:14-16),所以现在没有东西坏掉 —— 只是守卫比它想要钉住的运行时可见性更宽。探针双向确认:把 --out 模板移入 posting.md、或把词干移入 posting.md/aone.md,两个 oracle 都仍然绿灯(2/2 通过),而仅出报告的 PR 运行(从不加载 posting.md)或 GitHub 运行(从不加载 aone.md)将永远看不到该模板、只能即兴发挥产物文件名 —— composedNameFor/reportPatternFor 与技能实际写出的内容漂移,正是本测试头部注释声称钉住机制要终结的那类线上缺陷。修复:让每个 oracle 只匹配其所属步骤必然可见的文件 —— composed-name 模板只从 SKILL.md 提取,report 词干只从 SKILL.md + references/persistence.md 提取(唯一在所有含 Step 8 运行中于 Step 8 前加载的参考文件),而不是两者都读整个语料。

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

@qwen-code-dev-bot

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

Copy link
Copy Markdown
Collaborator

AutoFix round 3 finishedview run. See this round's report below.

中文说明

AutoFix 第 3 轮已完成 —— 查看运行。本轮报告见下方。

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

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

Round summary — PR #9804 (review round 2)

All seven inline findings (1 Critical, 6 Suggestions) were verified against the
code and resolved in one commit: daabf20dc5
fix(review): drop uninterpolated template tokens from skill references (#9804).
No conflict resolution was needed (--conflict false).

Findings and dispositions

[rc:3838826115] R1-1 — Critical: template tokens moved out of the loader's substitution pass — FIXED

Reproduced before changing anything: BundledSkillLoader.action interpolates
only skill.body (the core SKILL.md) — {{cliVersion}} at
references/posting.md:214,219,248 and {{model}} at
references/persistence.md:85 are read raw via read_file, so no pass ever
replaces them. A probe ran the real stripReviewFooter/reviewFooter on a
drafted body ending in _— qwen3-coder via Qwen Code /review (v{{cliVersion}})_:
the attribution-on strip removed the literal-token footer false, and the
posted body carried the marker twice ((v{{cliVersion}}) above the canonical
(v0.21.2)) — exactly as the finding described. The pre-PR interpolated shape
strips true; the attribution-off leg is unaffected (its forged-footer regex
admits braces), as the finding stated.

Fix (the finding's first option — root-cause, no new machinery): submit
already strips the drafted footer and re-appends the canonical one, so the
draft templates name the slot without template syntax — all three footer
templates now read _— YOUR_MODEL_ID via Qwen Code /review_ (the version span
is optional in REVIEW_FOOTER_RE/FOOTER_SPAN_RE, so the new shape strips
cleanly — probe-verified). The cache template's lastModelId now reads
"<your model id — the YOUR_MODEL_ID value declared at the top of the skill prompt>" — the loader prepends that declaration with the same
config.getModel() value {{model}} interpolated to, so the written cache
value is unchanged. A new revert-guard test
(keeps template tokens out of the raw-loaded reference files) bans any
{{…}} token from the reference files and pins that the core body still
carries a model token (the loader prepends the YOUR_MODEL_ID="…"
declaration only when the core body contains {{model}}/YOUR_MODEL_ID
without it the reference files' templates would dangle). Mutation probe:
re-adding "lastModelId": "{{model}}" to persistence.md reds the test;
restored green.

[rc:3838826118] R1-2 — stale "(below)" pointers in posting.md — FIXED

The compose-state field list moved into the core SKILL.md's Step 6 ### Verdict
section (verified: the list is there, including the presubmit entry). The
downgrade bullet now points at "(listed with the state fields in Step 6's
Verdict section)" and the review-JSON comment reads "// the compose-review
state fields, listed in Step 6's Verdict section".

[rc:3838826121] R1-3 — no revert guard pinned the Aone skip-residue removal — FIXED

Verified all three removed residues against origin/main ("drops out of the
batch … leaving a two-call batch", "the command has no backing", "skips the
command with the Step 1 batch") and confirmed they are absent from the current
corpus. Extended the runs comment-status and presubmit on Aone targets — backed, not skipped guard with four not.toContain pins for the removed
phrases plus the replacement contract on an Aone target it runs a1-backed.
Mutation probe: re-adding the setup-batch parenthetical reds the test;
restored green.

[rc:3838826124] R1-7 — "indexes inline threads only" is GitHub-only — FIXED

Reproduced with the real functions: driving aoneCommentToStatusComment +
buildThreadStatuses with another account's pathless MR-level blocker comment
keeps the entry in the index — path: "", isBlocker: true, file-level
anchor with line: null, all code facts unknown, never outdated (matching
the code comment that own-account pathless roots are dropped from blocker
promotion while other accounts' are kept). The Step 6 re-check sentence in the
core now qualifies the limit: "indexes inline threads only on GitHub …; an
Aone index also carries pathless MR-level threads (listMrComments returns
every MR comment) — another account's pathless blocker keeps its entry (path
"", file-level anchor, code facts unknown, never outdated) and is ruled
from its body and the code exactly like the #6486 shape, never as an inline
thread whose anchored code vanished."

[rc:3838826127] R1-8 — load-condition clauses unpinned — FIXED

Verified the gap: the gating test asserted only the enumeration prefixes.
Added the three clause pins the finding suggested (Load it when, and only when, posting is live, Load it before Step 8 on every run except cross-repo lightweight mode, Load it before \match-remote` when the target is Aone`).
Mutation probe: rewriting the posting clause to "Load it before Step 7 on
every run." with the prefix intact reds the test; restored green.

[rc:3838826139] R1-5 — section pins allowed cross-reference duplication — FIXED

Promoted the three section-opening pins to corpus-wide toHaveLength(1)
matches over skillBody(), keeping the absence-from-core halves (the count
alone would pass a revert that keeps a section in the core; absence alone
passes a duplication between reference files). Mutation probe: appending the
"Create Review" opening to aone.md reds the test; restored green.

[rc:3838826141] R1-6 — parity oracle wider than runtime visibility — FIXED

Verified current placement (composed-name template only at SKILL.md:921,
report stems only at persistence.md:14-16) and narrowed each oracle to the
files the owning step is guaranteed to see: the composed-name template is now
extracted from the core SKILL.md only, and the report stems from SKILL.md +
references/persistence.md only (the one reference loaded before Step 8 on
every run that has a Step 8). Mutation probes: moving the --out template out
of the core, or moving the stems into posting.md, each reds its oracle under
the narrowed read (both mutants survived the old whole-corpus oracle, as the
finding stated); restored green.

[rv:5002681043] CHANGES_REQUESTED — disclosed review gap (integration tests)

The review body discloses "build-and-test — Integration Tests (CLI, No
Sandbox) was skipped in CI and its suite did not run locally". There is no
review-skill suite under integration-tests/ (checked integration-tests/cli
and integration-tests/interactive — none exercises the review skill), so the
CI integration job gains no coverage over this diff either way. The closest
shipped-bundle gate — packages/core/src/skills/bundled-skills.integration.test.ts,
which asserts the three reference files ship beside the bundled skill — ran
green locally after npm run build (dist copies verified byte-identical to the
fixed sources). The PR's own E2E report (ic:5386073438) additionally records a
real-model headless run against the fresh bundle with the verdict-gated
loading observed.

[ic:5386073438] E2E verification report — notes

  • The duplicated resume.requested / resume.effective verdict bullet was
    verified real (SKILL.md lines 71-72; both copies byte-present at the merge
    base, untouched by the split, pinned by no test). Item 3 (lightweight mode)
    sits below the field list, so the "item 3 below" copy was kept and the
    "item 3 above" duplicate deleted.
  • The daemon-worktree-guard note ("12 of 34 escapes recorded as ALLOWED while
    the suite stayed green — worth a separate look") targets
    packages/cli/src/serve — outside this PR's footprint, and its witness (the
    probe file and its run log) was excluded from the PR, so it cannot be
    verified or fixed here. Recorded in deferred-findings.json for the
    follow-up queue so it survives the merge.

Verification

Commands actually run this round (repo root unless noted):

  • npm run build — passed (twice; after the final run, the dist copies of
    SKILL.md / posting.md / persistence.md were diffed byte-identical to the
    fixed sources)
  • npm run typecheck — passed
  • npm run lint — passed
  • npx vitest run src/skills/bundled/review/SKILL.test.ts src/skills/bundled-skills.integration.test.ts
    (packages/core) — 49 passed (36 + 13)
  • npx vitest run src/commands/review/run-skill-parity.test.ts (packages/cli)
    — 2 passed
  • npx vitest run src/commands/review/test-efficacy.test.ts src/commands/review/lib/diff-plan.test.ts src/services/BundledSkillLoader.test.ts
    (packages/cli, adjacent consumers of the skill path/loader) — 200 passed
  • npx vitest run src/skills/ (packages/core, full skills territory) —
    386 passed, 4 failed. All 4 failures are in skill-manager.test.ts
    (user-level base-dir/cache resolution) — proven unrelated to this change:
    neither skill-manager.ts nor its test is touched by this PR
    (git diff origin/main...HEAD --name-only lists neither), and the CI check
    "Test (ubuntu-latest, Node 22.x)" was SUCCESS at this branch's pre-round
    head 7ba1644905 running the identical code. The failures reproduce
    standalone on this runner and are environment-specific to it.
  • Mutation probes (all six mutants killed, each restore re-ran green):
    1. re-add "lastModelId": "{{model}}" to persistence.md → new token test reds
    2. re-add the "drops out of the batch … two-call batch" parenthetical → Aone guard reds
    3. rewrite the posting load-condition clause with its prefix intact → gating test reds
    4. duplicate the "Create Review" opening into aone.md → uniqueness test reds
    5. move the composed-name --out template out of the core → parity oracle reds
    6. move the report stems into posting.md → parity oracle reds
  • Reproduction probes (pre-fix evidence): R1-1 strip probe
    (stripReviewFooter leaves the literal-token footer, marker posts twice)
    and R1-7 index probe (buildThreadStatuses keeps the pathless other-account
    blocker entry), both quoted above.

Changed files: packages/core/src/skills/bundled/review/SKILL.md,
…/SKILL.test.ts, …/references/posting.md, …/references/persistence.md,
packages/cli/src/commands/review/run-skill-parity.test.ts.

中文说明

轮次总结 — PR #9804(评审第 2 轮)

全部七条行内发现(1 条 Critical、6 条 Suggestion)均已对照代码核实,并在一次提交中解决:daabf20dc5 fix(review): drop uninterpolated template tokens from skill references (#9804)。无需冲突解决(--conflict false)。

发现与处置

[rc:3838826115] R1-1 — Critical:模板变量被移出了加载器的替换通道 — 已修复

修改前先行复现:BundledSkillLoader.action 只对 skill.body(核心 SKILL.md)做插值 —— references/posting.md:214,219,248 处的 {{cliVersion}}references/persistence.md:85 处的 {{model}} 都是经 read_file 原样读取的,没有任何替换通道会替换它们。探针用真实的 stripReviewFooter/reviewFooter 处理以 _— qwen3-coder via Qwen Code /review (v{{cliVersion}})_ 结尾的起草正文:开启署名时字面量落款被剥掉的结果为 false,发布正文出现两次落款标记((v{{cliVersion}}) 位于规范的 (v0.21.2) 之上)—— 与发现描述完全一致。拆分前已插值的形态剥离为 true;关闭署名的分支不受影响(其伪造落款正则允许花括号),亦如发现所述。

修复(采用发现给出的第一方案 —— 根因修复,不引入新机制):submit 本就会剥掉草稿落款并重新追加规范落款,因此草稿模板可以不含模板语法地指明该槽位 —— 三个落款模板现均为 _— YOUR_MODEL_ID via Qwen Code /review_(版本段在 REVIEW_FOOTER_RE/FOOTER_SPAN_RE 中是可选的,新形态可被干净剥离 —— 已用探针验证)。缓存模板的 lastModelId 现为 "<your model id — the YOUR_MODEL_ID value declared at the top of the skill prompt>" —— 加载器前置的该声明与 {{model}} 插值所用的是同一个 config.getModel() 值,写入缓存的实际值不变。新增防回归测试(keeps template tokens out of the raw-loaded reference files):禁止参考文件出现任何 {{…}} 变量,并钉住核心正文仍须携带模型变量(加载器只有在核心正文包含 {{model}}/YOUR_MODEL_ID 时才会前置 YOUR_MODEL_ID="…" 声明 —— 否则参考文件中的模板将无所依附)。变异探针:把 "lastModelId": "{{model}}" 加回 persistence.md 会使该测试变红;恢复后绿灯。

[rc:3838826118] R1-2 — posting.md 中过期的「(below)」指向 — 已修复

compose 状态字段表已移入核心 SKILL.md 的 Step 6 ### Verdict 小节(已核实:字段表确在那里,包含 presubmit 条目)。降级要点的指向改为「(listed with the state fields in Step 6's Verdict section)」,review-JSON 注释改为「// the compose-review state fields, listed in Step 6's Verdict section」。

[rc:3838826121] R1-3 — Aone 跳过残留的删除没有防回归守卫 — 已修复

已对照 origin/main 核实三处被删除的残留(「drops out of the batch … leaving a two-call batch」「the command has no backing」「skips the command with the Step 1 batch」),并确认当前语料中均不存在。在守卫测试 runs comment-status and presubmit on Aone targets — backed, not skipped 中补入四条 not.toContain 钉住被删短语,外加替代合同 on an Aone target it runs a1-backed。变异探针:重新加回 setup-batch 括注会使测试变红;恢复后绿灯。

[rc:3838826124] R1-7 — 「indexes inline threads only」只对 GitHub 成立 — 已修复

用真实函数复现:以其他账号的无路径(MR 级)blocker 评论驱动 aoneCommentToStatusComment + buildThreadStatuses,该条目保留在索引中 —— path: ""isBlocker: true、文件级锚点且 line: null、所有代码事实为 unknown、永不过期(与代码注释一致:本账号的无路径根评论被取消 blocker 提升,其他账号的保留)。核心正文中 Step 6 复核句现对该限制作平台限定:「indexes inline threads only on GitHub …; an Aone index also carries pathless MR-level threads (listMrComments returns every MR comment) — another account's pathless blocker keeps its entry (path "", file-level anchor, code facts unknown, never outdated) and is ruled from its body and the code exactly like the #6486 shape, never as an inline thread whose anchored code vanished.」

[rc:3838826127] R1-8 — 加载条件从句未被钉住 — 已修复

缺口核实:门控测试此前只断言枚举报头。按发现建议补上三条从句钉住(Load it when, and only when, posting is liveLoad it before Step 8 on every run except cross-repo lightweight modeLoad it before \match-remote` when the target is Aone`)。变异探针:在保留报头的前提下把 posting 从句改写为「Load it before Step 7 on every run.」会使测试变红;恢复后绿灯。

[rc:3838826139] R1-5 — 小节钉住允许参考文件之间互相重复 — 已修复

把三个小节开头钉住提升为对 skillBody() 的全语料 toHaveLength(1) 匹配,同时保留「核心正文中缺席」的两半(仅靠计数会通过把小节留在核心的回退;仅靠缺席会通过参考文件之间的重复)。变异探针:把「Create Review」开头追加到 aone.md 会使测试变红;恢复后绿灯。

[rc:3838826141] R1-6 — parity oracle 比运行时可见性更宽 — 已修复

核实当前摆放(composed-name 模板仅在 SKILL.md:921,report 词干仅在 persistence.md:14-16),并把每个 oracle 收窄到其所属步骤必然可见的文件:composed-name 模板现只从核心 SKILL.md 提取,report 词干只从 SKILL.md + references/persistence.md 提取(唯一在所有含 Step 8 运行中于 Step 8 前加载的参考文件)。变异探针:把 --out 模板移出核心、或把词干移入 posting.md,在收窄后的读取下各自使对应 oracle 变红(两个变异体在旧的整语料 oracle 下均存活,如发现所述);恢复后绿灯。

[rv:5002681043] CHANGES_REQUESTED — 已披露的评审缺口(集成测试)

评审正文披露「build-and-test — Integration Tests (CLI, No Sandbox) was skipped in CI and its suite did not run locally」。integration-tests/ 下不存在 review 技能相关的测试套件(已检查 integration-tests/cliintegration-tests/interactive —— 均不演练 review 技能),因此 CI 集成任务对本 diff 本来也不提供覆盖。最接近的「发布产物」门控 —— packages/core/src/skills/bundled-skills.integration.test.ts(断言三个参考文件随捆绑技能一同发布)—— 已在本地 npm run build 后绿灯通过(dist 副本与修复后的源文件逐字节一致,已核对)。PR 自身的 E2E 报告(ic:5386073438)还记录了一次对新构建 bundle 的真实模型 headless 运行,观察到按 verdict 门控的加载行为。

[ic:5386073438] E2E 验证报告 — 备注

  • 重复的 resume.requested / resume.effective verdict 要点已核实为真实存在(SKILL.md 71-72 行;两份副本在合并基上即已存在,本拆分未触碰,也无任何测试钉住)。条目 3(轻量模式)位于该字段表之下,故保留「item 3 below」副本,删除「item 3 above」重复。
  • 关于 daemon-worktree-guard 的备注(「34 次逃逸中 12 次被记为 ALLOWED 而套件仍绿 —— 值得单独看一下」)指向 packages/cli/src/serve —— 在本 PR 足迹之外,其证据(探针文件及运行日志)又被排除在 PR 之外,无法在此核实或修复。已记入 deferred-findings.json 进入后续队列,以免合并时丢失。

验证

本轮实际执行的命令(未注明者均在仓库根目录):

  • npm run build — 通过(执行两次;最终一次后已将 SKILL.md / posting.md / persistence.md 的 dist 副本与修复后的源文件逐字节比对一致)
  • npm run typecheck — 通过
  • npm run lint — 通过
  • npx vitest run src/skills/bundled/review/SKILL.test.ts src/skills/bundled-skills.integration.test.ts(packages/core)— 49 通过(36 + 13)
  • npx vitest run src/commands/review/run-skill-parity.test.ts(packages/cli)— 2 通过
  • npx vitest run src/commands/review/test-efficacy.test.ts src/commands/review/lib/diff-plan.test.ts src/services/BundledSkillLoader.test.ts(packages/cli,技能路径/加载器的相邻消费方)— 200 通过
  • npx vitest run src/skills/(packages/core,skills 全域)— 386 通过、4 失败。4 个失败全部位于 skill-manager.test.ts(用户级基础目录/缓存解析)—— 已证明与本改动无关:skill-manager.ts 及其测试均未被本 PR 触碰(git diff origin/main...HEAD --name-only 两者皆不在列),且 CI 检查「Test (ubuntu-latest, Node 22.x)」在本分支本轮之前的 head 7ba1644905 上以完全相同的代码运行并为 SUCCESS。这些失败在本 runner 上单独运行即可复现,属该环境特有。
  • 变异探针(六个变异体全部被杀死,每次恢复后重跑均为绿灯):
    1. "lastModelId": "{{model}}" 加回 persistence.md → 新变量测试变红
    2. 加回「drops out of the batch … two-call batch」括注 → Aone 守卫变红
    3. 保留报头改写 posting 加载条件从句 → 门控测试变红
    4. 把「Create Review」开头复制进 aone.md → 唯一性测试变红
    5. 把 composed-name --out 模板移出核心 → parity oracle 变红
    6. 把 report 词干移入 posting.md → parity oracle 变红
  • 复现探针(修复前的证据):R1-1 剥离探针(stripReviewFooter 保留字面量落款、落款标记发布两次)与 R1-7 索引探针(buildThreadStatuses 保留其他账号的无路径 blocker 条目),已在上文引用。

变更文件:packages/core/src/skills/bundled/review/SKILL.md…/SKILL.test.ts…/references/posting.md…/references/persistence.mdpackages/cli/src/commands/review/run-skill-parity.test.ts

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

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


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

@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. Suggestions are inline.

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 1: executing npx vitest run src/commands/review/run-skill-parity.test.ts in packages/cli (no node_modules/dist in the review worktree); "agent reverse-audit (round 1)": locating the exact home of the "literal \n from -f body= " and body-vs-empty-comments refusals posting.md attributes to submit — structuralProblems now refus….

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

  • packages/core/src/skills/bundled/review/SKILL.test.ts:37 — [probe] corpus-wide revert guards lost placement guarantees when skillBody() widened (visibility-timing guards pin corpus-only)
  • packages/core/src/skills/bundled/review/SKILL.test.ts:27 — [probe] REFERENCE_FILES constant unreconciled with references/ directory — forward-drift hole in the guard suite
中文说明

仅完成部分审查,审查缺口已披露。 建议见行内评论。

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

未探索到全部深度(达到工具调用预算):chunk 1:executing npx vitest run src/commands/review/run-skill-parity.test.ts in packages/cli (no node_modules/dist in the review worktree)"agent reverse-audit (round 1)"locating the exact home of the "literal \n from -f body= " and body-vs-empty-comments refusals posting.md attributes to submit — structuralProblems now refus…

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

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

// covered by run.test.ts's own cases. Failing here would report a checkout
// shape as a contract drift.
const itWithSkill = skill === null ? it.skip : it;
const itWithSkill = coreSkill === null ? it.skip : it;

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.

[Suggestion] R2-1: The sparse-checkout skip guard keys only on the existence of SKILL.md, but the Step 8 report-stems oracle now also reads references/persistence.md. A sparse/partial checkout that has SKILL.md but not that file runs the stems test instead of skipping it, and the test then fails as if the skill's templates had drifted: step8Corpus falls back to the core body, the stems regex finds zero stems (all three live only in persistence.md), and the arrayContaining assertion reports a checkout shape as a contract drift — the exact misattribution the guard's own comment above exists to prevent. Pre-split the same checkout passed because the stems lived in SKILL.md itself, so the split widens the set of checkout shapes that fail spuriously. A probe at the reviewed commit reproduced it: removing only persistence.md fails reportPatternFor accepts Step 8's report stems with expected [] to deeply equal ArrayContaining ["local", "pr-<number>", "<filename>"], and splitting the guard flips that to 1 passed | 1 skipped. Split the guard so the stems oracle skips unless persistence.md exists too, and use it for the stems test:

Suggested change
const itWithSkill = coreSkill === null ? it.skip : it;
const itWithSkill = coreSkill === null ? it.skip : it;
const itWithStep8 =
coreSkill !== null &&
existsSync(join(SKILL_DIR, 'references', 'persistence.md'))
? it
: it.skip;
中文说明

sparse-checkout 跳过守卫只以 SKILL.md 是否存在为条件,但 Step 8 的报告文件名干(report stems)oracle 现在还会读取 references/persistence.md。当稀疏/部分检出包含 SKILL.md 但缺少该文件时,stems 测试会照常运行而不是被跳过,然后以「技能模板发生漂移」的姿态失败:step8Corpus 回退到核心正文,stems 正则一个也匹配不到(三个名干全部只存在于 persistence.md),arrayContaining 断言会把检出形态误报为合同漂移 —— 这正是上方守卫注释本要防止的误归因。拆分前同样的检出是绿的(名干当时就在 SKILL.md 里),因此本次拆分扩大了会被误报失败的检出形态。探针在受审提交上复现:仅删除 persistence.mdreportPatternFor accepts Step 8's report stemsexpected [] to deeply equal ArrayContaining ["local", "pr-<number>", "<filename>"] 失败;拆分守卫后同一形态变为 1 passed | 1 skipped。建议把守卫拆开,让 stems oracle 在 persistence.md 不存在时也跳过,并在 stems 测试中改用新守卫。

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

Comment on lines +1006 to +1012
expect(core).toContain('Load it when, and only when, posting is live');
expect(core).toContain(
'Load it before Step 8 on every run except cross-repo lightweight mode',
);
expect(core).toContain(
'Load it before `match-remote` when the target is Aone',
);

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.

[Suggestion] R2-2: The three load-condition clauses are pinned with position-free toContain checks that never tie a clause to its bullet, so swapping two clauses between bullets ships green. A merge resolution or paraphrase of the **Reference files, gated by this verdict.** block that reattaches Load it when, and only when, posting is live to the persistence.md bullet and the Step 8 clause to posting.md keeps all six assertions passing (each prefix present, each clause present, all in core), while a report-only run then never loads references/persistence.md — the review report is not saved and the incremental cache never written, silently degrading every later round to a full review. A probe at the reviewed commit confirmed it: with the two clauses swapped the suite passes 36/36, while pinning each prefix contiguously with its clause fails on that same mutation and stays green on the real corpus. (The un-pinned Step 8 forwarder at SKILL.md:1014 restates the correct gate, so a run hitting a swapped block sees conflicting instructions rather than one clean wrong gate — but that forwarder is not pinned either.) Pin each prefix together with its clause as one contiguous substring:

Suggested change
expect(core).toContain('Load it when, and only when, posting is live');
expect(core).toContain(
'Load it before Step 8 on every run except cross-repo lightweight mode',
);
expect(core).toContain(
'Load it before `match-remote` when the target is Aone',
);
expect(core).toContain(
'`references/posting.md` — Step 7 (authorisation, anchors, presubmit, `submit`, the 422/head-drift recovery, `publish-assets`). Load it when, and only when, posting is live',
);
expect(core).toContain(
'`references/persistence.md` — Step 8 (report, artifact registration, incremental cache). Load it before Step 8 on every run except cross-repo lightweight mode',
);
expect(core).toContain(
'`references/aone.md` — the Aone paths (see the Aone note below). Load it before `match-remote` when the target is Aone',
);
中文说明

三个加载条件从句由不定位的 toContain 检查钉住,但从未把从句与其所属条目绑定,因此把两个从句在条目之间互换仍能一路绿灯地合入。若对 **Reference files, gated by this verdict.** 块的一次合并解决或改写把 Load it when, and only when, posting is live 重新挂到 persistence.md 条目、把 Step 8 从句挂到 posting.md 条目,六个断言依旧全部通过(每个前缀都在、每个从句都在、且都在核心正文中),而仅出报告的运行将不再加载 references/persistence.md —— 评审报告不会保存、增量缓存不会写入,之后每一轮都会被静默降级为全量评审。探针在受审提交上确认:互换两个从句后套件 36/36 通过;把每个前缀与其从句作为连续子串钉住后,同一变异失败、真实语料保持绿。(SKILL.md:1014 处未钉住的 Step 8 转发句复述了正确的门控,撞上互换块的运行会看到相互矛盾的指示而非单一错误门控 —— 但该转发句同样未被钉住。)建议把每个前缀与其从句合并为一个连续子串钉住。

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

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

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

Review feedback addressed — round summary (PR #9804)

Both inline Suggestions from the automated reviewer were reproduced on the reviewed commit and fixed in one test-only commit: 84703e79ca. No source files changed; no conflict handling was needed (--conflict false).

Feedback points and dispositions

[rc:3839303895] R2-1 — sparse-checkout skip guard misses references/persistence.md (Suggestion) — FIXED

Reproduced first. At the reviewed commit, removing only packages/core/src/skills/bundled/review/references/persistence.md made reportPatternFor accepts Step 8's report stems fail with expected [] to deeply equal ArrayContaining ["local", "pr-<number>", "<filename>"] — a checkout shape misreported as a contract drift, exactly as the finding described.

Fix. The stems oracle's skip guard now keys on the corpus it actually reads: step8Corpus returns null when persistence.md is absent (the old : coreSkill fallback was the very thing that let a partial checkout reach the assertions with the wrong file set), and a new itWithStep8 guard derived from step8Corpus === null skips the stems test. The composed-name test keeps itWithSkill, since it reads SKILL.md only. One existence check total; no second existsSync duplicate.

Witness. After the fix, the same sparse shape reports 1 passed | 1 skipped instead of failing; a full checkout still runs both tests (2 passed).

[rc:3839303899] R2-2 — load-condition clauses not tied to their bullets (Suggestion) — FIXED

Reproduced first. At the reviewed commit, swapping the posting/persistence load-condition clauses between the two bullets kept the guard suite green at 36/36 — the position-free toContain checks could not see which clause belonged to which file.

Fix. In SKILL.test.ts's gates every reference file on the verdict in the core body, each enumeration prefix is now pinned together with its load-condition clause as ONE contiguous substring (3 assertions). The six previous separate prefix/clause assertions are strictly subsumed — each old string is a substring of a new pin — so this is a net simplification (−3 assertions, +1 line) with strictly stronger pinning. The comment was updated to name the swap hazard.

Witness. With the new pins, re-applying the same clause-swap mutation fails that exact test (1 failed | 35 passed), while the real corpus stays green at 36/36. SKILL.md was restored byte-identical after each probe.

[rv:5003107496] Review body (COMMENTED, partial review) — NO ACTION REQUESTED

The review discloses its gaps (Integration Tests (CLI, No Sandbox) not run; two chunks not explored to full depth) and explicitly defers two probe items under the convergence posture as "recorded, not requested in this round". Nothing in it was requested this round, so nothing was implemented from it.

Failed / still-red checks — NONE

No failed checks and no persisting red checks were present in this round's feedback.

Notes

  • Test-only round: no production code, no settings source (no schema regeneration), no files outside the PR's existing footprint.
  • Integration tests after npm run bundle were not run: the changes are unit-test guard hardening, not behavior exercised only through the bundled CLI or integration harness.

Verification

Commands actually run, with results:

  • npm run build — passed (run twice: once to restore missing workspace dist/ outputs before testing, once after the edits)
  • npm run typecheck — passed
  • npm run lint — passed
  • npx vitest run src/commands/review/run-skill-parity.test.ts (packages/cli, final run on restored tree) — 2 passed
  • npx vitest run src/skills/bundled/review/SKILL.test.ts (packages/core, final run on restored tree) — 36 passed
  • npx vitest run src/skills/bundled-skills.integration.test.ts (packages/core, same corpus territory) — 13 passed
  • npx prettier --write on both edited files — unchanged (already formatted)

Mutation probes (each new guard/pin witnessed; corpus files restored after each probe):

  • R2-1 guard: remove references/persistence.md → pre-fix the stems test FAILED (misattributed drift); post-fix 1 passed | 1 skipped. File restored.
  • R2-2 pins: swap the two load-condition clauses in SKILL.md → pre-fix 36/36 passed; post-fix the gate test FAILS (1 failed | 35 passed). SKILL.md restored byte-identical.
中文说明

已处理的评审反馈 — 本轮总结(PR #9804

自动评审器的两条行内 Suggestion 均已在受审提交上复现,并通过一个纯测试提交修复:84703e79ca。未改动任何源码文件;无需处理冲突(--conflict false)。

反馈点及处置

[rc:3839303895] R2-1 — sparse-checkout 跳过守卫遗漏 references/persistence.md(Suggestion)— 已修复

先复现。 在受审提交上,仅删除 packages/core/src/skills/bundled/review/references/persistence.md 会使 reportPatternFor accepts Step 8's report stemsexpected [] to deeply equal ArrayContaining ["local", "pr-<number>", "<filename>"] 失败 —— 检出形态被误报为合同漂移,与反馈描述完全一致。

修复。 stems oracle 的跳过守卫现在以它实际读取的语料为条件:persistence.md 缺失时 step8Corpus 返回 null(旧的 : coreSkill 回退正是让部分检得以错误文件集进入断言的根源),新增由 step8Corpus === null 推导出的 itWithStep8 守卫跳过 stems 测试。composed-name 测试保留 itWithSkill,因为它只读 SKILL.md。全程仅一次存在性检查,没有重复的 existsSync

见证。 修复后同一检出形态报告 1 passed | 1 skipped 而非失败;完整检出仍运行两个测试(2 passed)。

[rc:3839303899] R2-2 — 加载条件从句未与其所属条目绑定(Suggestion)— 已修复

先复现。 在受审提交上,把 posting/persistence 两个加载条件从句在条目之间互换,守卫套件依旧 36/36 全绿 —— 不定位的 toContain 检查看不出哪个从句属于哪个文件。

修复。 SKILL.test.tsgates every reference file on the verdict in the core body 中,每个枚举前缀现在与其加载条件从句作为一个连续子串钉住(共 3 条断言)。原先 6 条分离的前缀/从句断言被严格包含 —— 每条旧字符串都是新钉子的子串 —— 因此这是净简化(−3 条断言、+1 行)且钉扎严格更强。注释已更新以点明互换风险。

见证。 换上新钉子后,重放同一从句互换变异会使该测试恰好失败(1 failed | 35 passed),真实语料保持 36/36 绿。每次探针后 SKILL.md 均已逐字节还原。

[rv:5003107496] 评审正文(COMMENTED,部分审查)— 本轮无要求

评审披露了其缺口(Integration Tests (CLI, No Sandbox) 未运行;两个 chunk 未探索到全部深度),并在收敛姿态下明确延后两条探针项为"已记录、本轮不要求"。本轮没有任何来自它的修改要求,因此未据其做任何实现。

失败/持续红色的检查 — 无

本轮反馈中不存在失败的检查,也没有遗留的红色检查。

说明

  • 纯测试轮:无生产代码、无 settings 源改动(无需重新生成 schema)、未触及 PR 既有足迹之外的文件。
  • 未运行 npm run bundle 后的集成测试:本轮改动是单元测试守卫的加固,不是仅经由打包 CLI 或集成测试框架验证的行为。

验证

实际执行的命令及结果:

  • npm run build — 通过(执行两次:一次在测试前恢复缺失的 workspace dist/ 产物,一次在编辑后)
  • npm run typecheck — 通过
  • npm run lint — 通过
  • npx vitest run src/commands/review/run-skill-parity.test.ts(packages/cli,还原语料后的最终运行)— 2 passed
  • npx vitest run src/skills/bundled/review/SKILL.test.ts(packages/core,还原语料后的最终运行)— 36 passed
  • npx vitest run src/skills/bundled-skills.integration.test.ts(packages/core,同一语料区域)— 13 passed
  • 对两个编辑文件执行 npx prettier --write — 无变化(已符合格式)

变异探针(每个新守卫/钉子均有见证;每次探针后语料文件均已还原):

  • R2-1 守卫:删除 references/persistence.md → 修复前 stems 测试失败(误归因漂移);修复后 1 passed | 1 skipped。文件已还原。
  • R2-2 钉子:互换 SKILL.md 中两个加载条件从句 → 修复前 36/36 通过;修复后守卫测试失败1 failed | 35 passed)。SKILL.md 已逐字节还原。

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

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


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

doudouOUC
doudouOUC previously approved these changes Aug 23, 2026

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

No issues found. LGTM! ✅

Not explored to full depth (tool budget reached): chunk 9: Could not verify whether the presubmit command is being re-implemented elsewhere in this PR, or whether the posting.md reference is documenting a legacy com….

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

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

Head drift detected. The review was started against daabf20dc52e49575b0a51b1f540fc9b59c527a0, but the PR head is now 84703e79ca8107377f6f2f33cf7ba46d7b537eb3. Inline comments are therefore omitted; only the aggregate summary is kept below.

Round 1 review summary (deepseek-v4-flash)

Verdict: ISSUES_FOUND — no Critical issues, but the reverse audit surfaced 5 Suggestion-level findings.

The 12 review agents (10 chunks + test-coverage matrix + removal-behavior audit) and 10 reverse-audit agents did not identify any Critical problems.

Reverse-audit findings (pre-existing, not introduced by this PR)

  1. posting.md — the presubmit command example is missing the --host flag.
  2. Lightweight-mode 422 recovery description is inconsistent with the fetch-diff output format.
  3. publish-assets --findings-out lacks failure-behavior documentation.
  4. startLine !== line condition does not handle null/undefined.
  5. bodyCriticals description omits deferred Criticals as a source.

Key invariants verified

  • Core SKILL.md retains run-binding invariants (write prohibition, posting gates, step headings).
  • Reference files (posting.md, persistence.md, aone.md) are correctly verdict-gated.
  • Deleted content was faithfully migrated to reference files (byte-identical except for one necessary restatement).
  • Test coverage is reinforced with new revert guards.
  • Injected prompt size reduced from ~381 KB to ~304 KB for non-posting runs (~58 KB / ~15% saving).

Posted by qwen-review-bot after PR head drift.

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

No blocking issues. LGTM! ✅

Not explored to full depth (tool budget reached): "agent 1b": none — all checks above ran to completion..

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

  • packages/core/src/skills/bundled/review/SKILL.test.ts:27 — [probe] REFERENCE_FILES enumeration unreconciled with references/ directory — a fourth file escapes every corpus guard including the token ban
  • packages/core/src/skills/bundled/review/SKILL.test.ts:1043 — [probe] moved-section openings not pinned to their owning reference file — relocation between reference files ships green
  • packages/core/src/skills/bundled/review/SKILL.test.ts:37 — [probe] skillBody() corpus re-scoping silently re-pins ~40 every-run assertions to corpus-wide scope
中文说明

无阻断问题。LGTM!✅

未探索到全部深度(达到工具调用预算):"agent 1b"none — all checks above ran to completion.

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

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

@qwen-code-dev-bot

Copy link
Copy Markdown
Collaborator

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

Autofix round summary — PR #9804

This round triaged the five Suggestion-level reverse-audit findings from review [rv:5003294860] (posted after head drift, so the findings arrived as the aggregate summary with no inline threads). Three findings were fixed, two were declined with recorded evidence. No Critical findings were reported; no failed checks; no conflict resolution was needed (--conflict false).

Fixed

  1. posting.md — the presubmit command example is missing the --host flag.
    Verified real: presubmit accepts --host (packages/cli/src/commands/review/presubmit.ts builder declares .option('host', …)), references/aone.md instructs passing it for Aone targets, and every sibling Step 7 example (both submit blocks, meta, compose-review, publish-assets, the plan-diff note) carries host guidance — the presubmit block was the lone omission. Added [--host <host>] with the same comment the final submit example uses, and a revert-guard test pinning the flag to the presubmit example (keeps the presubmit example on the host rule).

  2. publish-assets --findings-out lacks failure-behavior documentation.
    Verified real against packages/cli/src/commands/review/publish-assets.ts: every refusal fires before any push (exit 3 + {"published": false}), and the --findings-out rewrite is the LAST step — it runs only after every file has landed and the manifest is written. Added one bullet to the "What the command enforces" list documenting that ordering: the artifact either keeps every local assetFiles path or carries every published URL (never a partial weave), and a run failing partway through the push is completed by an idempotent re-run. Pinned by the revert guard pins the publish-assets weave as the last, all-or-nothing step.

  3. bodyCriticals description omits deferred Criticals as a source.
    Verified real: compose-review.ts's splitDeferralChannel mechanically relocates a Critical entry written into deferredSuggestions into the body Criticals (rendered with "relocated from the deferral channel — a Critical is never deferred, it posts"), a third source beside the two model-written ones. The Step 6 bodyCriticals bullet now names it: "a Critical entry placed in deferredSuggestions is relocated here, never deferred." Pinned by the revert guard names the deferral channel in the bodyCriticals sources.

Declined (recorded evidence)

  1. Lightweight-mode 422 recovery description "inconsistent with the fetch-diff output format".
    Declined — the description is consistent. The recovery sentence already redirects lightweight mode explicitly: "(in lightweight mode, against the fetch-diff output you already have)" — wording a revert-guard test in SKILL.test.ts pins on purpose. fetch-diff writes a plain unified diff (packages/cli/src/commands/review/fetch-diff.ts), whose @@ … +start,count @@ headers supply exactly the hunk ranges the check needs; the containment criterion is stated as hunk arithmetic ("its line appears anywhere inside a diff hunk for path", "one hunk must contain the whole range"), which applies unchanged to raw-diff hunks. files[].hunks[] / newStart/newEnd are the fetch-report vocabulary for full mode (see lib/report.ts), and the parenthetical performs the substitution for lightweight mode. No instruction the agent cannot execute, no doc change worth the diff growth.

  2. startLine !== line condition does not handle null/undefined.
    Declined — refuted by the resolver. Every resolved[] entry carries BOTH line and startLine as numbers: both resolution paths in packages/cli/src/commands/review/lib/anchors.ts set the two fields together on every status: 'resolved' return, so the JSON report can never present a resolved entry missing one side of the comparison; unmatched entries (which carry neither) never enter comment construction. The doc's very next sentence covers the equality case ("When startLine === line, emit only line"), and the payload-side validator (NewSideAnchorCheck in the same file) already treats an absent startLine as a single-line anchor. There is no input domain where the documented condition misfires.

Mutation probes

Each new revert guard was proven to witness its fix before committing:

  • Removed the presubmit [--host <host>] line → keeps the presubmit example on the host rule FAILED; restored → green.
  • Removed the publish-assets weave bullet → pins the publish-assets weave as the last, all-or-nothing step FAILED; restored → green.
  • Removed the bodyCriticals deferral clause → names the deferral channel in the bodyCriticals sources FAILED; restored → green.

Files changed

  • packages/core/src/skills/bundled/review/references/posting.md — presubmit --host flag; publish-assets weave/failure-contract bullet.
  • packages/core/src/skills/bundled/review/SKILL.md — bodyCriticals bullet names the deferral-channel relocation.
  • packages/core/src/skills/bundled/review/SKILL.test.ts — three revert guards for the three fixes.

Verification

Commands actually run this round (all after the fixes were in place):

  • npm run build — passed (exit 0)
  • npm run typecheck — passed (exit 0)
  • npm run lint — passed (exit 0)
  • cd packages/core && npx vitest run src/skills/bundled/review/SKILL.test.ts src/skills/bundled-skills.integration.test.ts — 2 files, 52 tests passed (39 skill tests including the 3 new guards + 13 bundled-skills tests)
  • cd packages/cli && npx vitest run src/commands/review/run-skill-parity.test.ts — 2 tests passed (consumes the edited SKILL.md)
  • npx prettier --check on the three changed files — passed
  • Mutation probes: 3 probes, each red on revert and green on restore (details above)
  • No settings source changed → npm run generate:settings-schema not applicable; integration tests after npm run bundle not applicable — the changed behavior is skill-documentation content, exercised directly by the unit tests above, not through the bundled CLI.
中文说明

Autofix 轮次总结 — PR #9804

本轮分诊了评审 [rv:5003294860] 中的 5 条 Suggestion 级反向审计发现(该评审因 head 漂移而以聚合摘要形式发布,没有行内评论线程)。其中 3 条已修复,2 条附证据拒绝。本轮没有 Critical 发现;没有失败的检查项;无需冲突解决(--conflict false)。

已修复

  1. posting.mdpresubmit 命令示例缺少 --host 标志。
    核实属实:presubmit 接受 --hostpackages/cli/src/commands/review/presubmit.ts 的 builder 声明了 .option('host', …)),references/aone.md 明确要求对 Aone 目标传入该标志,且 Step 7 的所有兄弟示例(两个 submit 代码块、metacompose-reviewpublish-assets、plan-diff 注释)都带有 host 说明——唯独 presubmit 代码块遗漏了。已补上 [--host <host>],注释与最后一个 submit 示例完全一致,并新增防回退测试将该标志钉在 presubmit 示例上(keeps the presubmit example on the host rule)。

  2. publish-assets--findings-out 缺少失败行为文档。
    对照 packages/cli/src/commands/review/publish-assets.ts 核实属实:所有拒绝都发生在任何推送之前(exit 3 + {"published": false}),而 --findings-out 回写是最后一步——仅在所有文件推送完成且 manifest 写入之后才执行。在 "What the command enforces" 列表中新增一条,说明该顺序:artifact 要么保留全部本地 assetFiles 路径,要么携带全部已发布 URL(绝不会出现部分回写),推送中途失败的运行可通过幂等重跑完成。由防回退测试 pins the publish-assets weave as the last, all-or-nothing step 钉住。

  3. bodyCriticals 的描述遗漏了"被延迟的 Critical"这一来源。
    核实属实:compose-review.tssplitDeferralChannel 会把写入 deferredSuggestionsCritical 条目机械地迁移到正文 Critical 中(渲染时带有 "relocated from the deferral channel — a Critical is never deferred, it posts"),这是除两个由模型写入的来源之外的第三个来源。Step 6 的 bodyCriticals 条目现在明确了这一点:"a Critical entry placed in deferredSuggestions is relocated here, never deferred."。由防回退测试 names the deferral channel in the bodyCriticals sources 钉住。

已拒绝(附证据记录)

  1. 轻量模式 422 恢复描述"与 fetch-diff 输出格式不一致"。
    拒绝——该描述是一致的。恢复段落已经明确为轻量模式重定向:"(in lightweight mode, against the fetch-diff output you already have)"——这段措辞被 SKILL.test.ts 中的防回退测试刻意钉住。fetch-diff 写出的是纯 unified diff(见 packages/cli/src/commands/review/fetch-diff.ts),其 @@ … +start,count @@ 头部恰好提供了该校验所需的 hunk 行号范围;包含性判据是以 hunk 算术表述的("其 line 出现在 path 的任一 diff hunk 内"、"单个 hunk 必须包含整个范围"),对原始 diff 的 hunk 同样适用。files[].hunks[] / newStart/newEnd 是完整模式下 fetch report 的词汇(见 lib/report.ts),括号内的说明已为轻量模式做了替换。不存在代理无法执行的指令,不值得为此增长 diff。

  2. startLine !== line 条件未处理 null/undefined
    拒绝——被代码证伪。每个 resolved[] 条目都同时携带 linestartLine 两个数字:packages/cli/src/commands/review/lib/anchors.ts 中两条解析路径在每一个 status: 'resolved' 返回中都同时设置这两个字段,因此 JSON 报告不可能出现缺少比较某一端的已解析条目;unmatched 条目(两个字段都没有)根本不会进入评论构建。文档紧接着的下一句已覆盖相等的情况("When startLine === line, emit only line"),且载荷侧校验器(同文件中的 NewSideAnchorCheck)已把缺失 startLine 视为单行锚点。不存在该文档条件会误判的输入域。

变异探针

每个新增防回退测试在提交前都已证明能守护其对应修复:

  • 删除 presubmit 的 [--host <host>] 行 → keeps the presubmit example on the host rule 失败;恢复后 → 通过。
  • 删除 publish-assets 的 weave 条目 → pins the publish-assets weave as the last, all-or-nothing step 失败;恢复后 → 通过。
  • 删除 bodyCriticals 的延迟迁移子句 → names the deferral channel in the bodyCriticals sources 失败;恢复后 → 通过。

变更文件

  • packages/core/src/skills/bundled/review/references/posting.md — presubmit 的 --host 标志;publish-assets 的回写/失败契约条目。
  • packages/core/src/skills/bundled/review/SKILL.md — bodyCriticals 条目明确延迟通道的迁移来源。
  • packages/core/src/skills/bundled/review/SKILL.test.ts — 针对三处修复的三个防回退测试。

验证

本轮实际执行的命令(均在修复就位之后运行):

  • npm run build — 通过(exit 0)
  • npm run typecheck — 通过(exit 0)
  • npm run lint — 通过(exit 0)
  • cd packages/core && npx vitest run src/skills/bundled/review/SKILL.test.ts src/skills/bundled-skills.integration.test.ts — 2 个文件、52 个测试通过(39 个 skill 测试,含 3 个新增防回退测试 + 13 个 bundled-skills 测试)
  • cd packages/cli && npx vitest run src/commands/review/run-skill-parity.test.ts — 2 个测试通过(该测试消费被修改的 SKILL.md)
  • 对三个变更文件执行 npx prettier --check — 通过
  • 变异探针:3 个探针,回退时均为红色、恢复后均为绿色(详见上文)
  • 未改动任何 settings 源 → 无需 npm run generate:settings-schemanpm run bundle 之后的集成测试不适用——本次变更的是 skill 文档内容,由上述单元测试直接覆盖,不经过打包后的 CLI。

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

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


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

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

No blocking issues. LGTM! ✅

Not explored to full depth (tool budget reached): chunk 6: execute the vitest suite itself — the review worktree has no node_modules and no packages/core/dist , and npm install + build exceeds this review's tool bu….

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

  • packages/core/src/skills/bundled/review/SKILL.md:934 — [probe] SKILL.md:934 states the never-in-body rationale…
  • packages/core/src/skills/bundled/review/SKILL.test.ts:1067 — [probe] Revert guard pins the adjudicated-false mechanism clause…
  • packages/core/src/skills/bundled/review/references/persistence.md:4 — [review] persistence.md's preamble claims Steps 1–7 are in context,…
  • packages/core/src/skills/bundled/review/references/posting.md:21 — [review] Payload-refusal sentence misdescribes two checks that do…
  • packages/core/src/skills/bundled/review/references/posting.md:173 — [review] posting.md:173 fabricates a **[Suggestion]** workflow…
  • packages/core/src/skills/bundled/review/references/posting.md:184 — [probe] The actionable publish-assets block omits…
  • packages/core/src/skills/bundled/review/references/posting.md:188 — [probe] publish-assets --host annotation is GHE-only while every…
  • packages/core/src/skills/bundled/review/references/posting.md:250 — [review] posting.md:250 autofix rationale names a failure mode the…
  • packages/core/src/skills/bundled/review/references/posting.md:259 — [review] The actionable submit block omits [--user-authorized] ,…
中文说明

无阻断问题。LGTM!✅

未探索到全部深度(达到工具调用预算):chunk 6:execute the vitest suite itself — the review worktree has no node_modules and no packages/core/dist , and npm install + build exceeds this review's tool bu…

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

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

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

LGTM. Verified at head ec89eb8:

  • The sole Critical (R1-1) is closed: no {{...}} template token survives in any reference file — the uninterpolated {{cliVersion}}/{{model}} tokens were dropped rather than moved, the mandated footer now keys off the model name declared in the prompt, and nothing raw-loaded via read_file carries a token no substitution pass would fill.
  • The verdict-gated loading is pinned precisely: posting.md reads only when posting is live (comment.effective or an in-session post request, PR-only/high-only), persistence.md before Step 8 on every run except cross-repo lightweight, aone.md before match-remote on Aone targets — each gate clause pinned to its exact bullet text, and the no-duplication invariant (one rule, one file — an Aone --comment run loads posting.md and aone.md without divergent copies) is documented and pinned.
  • The compose-state field list relocation is sound: the fields the composer reads now live in the core verdict section, so a report-only run writes state without owing posting.md a read, and the one restated rule (no Suggestion text in the review body) carries its substance in core with a pointer to the full rule.
  • The test-side guards the later rounds asked for are in: the report-stems oracle reads only what Step 8 is guaranteed to see (core + persistence.md) with its own sparse-checkout skip keyed on persistence.md, and the corpus oracle refuses templates from verdict-gated files a run might never load.

CI at approval time: 14 checks passing, none failing. The remaining unresolved threads are earlier-round Suggestions on pin granularity, superseded by the later commits.

@wenshao
wenshao added this pull request to the merge queue Aug 24, 2026
Merged via the queue into main with commit 03bcfe4 Aug 24, 2026
59 checks passed
@qwen-code-ci-bot

Copy link
Copy Markdown
Collaborator

Released in v0.22.2.

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

Labels

autofix/takeover Summon the autofix loop to manage this PR (remove to release; needs triage+) review/self-reported The linked issue was opened by the PR author (self-reported)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

/review: split SKILL.md into a core body plus verdict-gated reference files

5 participants