@herbertgao/pi-extensions 2026.8.5 → 2026.8.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (389) hide show
  1. package/README.md +5 -5
  2. package/node_modules/@herbertgao/pi-cc-extensions/README.en.md +2 -2
  3. package/node_modules/@herbertgao/pi-cc-extensions/README.md +2 -2
  4. package/node_modules/@herbertgao/pi-cc-extensions/extensions/config/config.ts +19 -7
  5. package/node_modules/@herbertgao/pi-cc-extensions/extensions/config/panel.ts +30 -9
  6. package/node_modules/@herbertgao/pi-cc-extensions/extensions/feature/compact-thinking.ts +272 -22
  7. package/node_modules/@herbertgao/pi-cc-extensions/extensions/feature/context.ts +74 -5
  8. package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/compact-mode.ts +94 -77
  9. package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/markdown-enhance.ts +48 -6
  10. package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/message-display.ts +1 -1
  11. package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/mouse/hover.ts +14 -0
  12. package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/mouse/interaction.ts +55 -17
  13. package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/mouse/layout.ts +41 -2
  14. package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/tool/diff/diff-renderer.ts +75 -6
  15. package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/tool/diff/types.ts +7 -3
  16. package/node_modules/@herbertgao/pi-cc-extensions/extensions/renderer/tool/grouping.ts +64 -1
  17. package/node_modules/@herbertgao/pi-cc-extensions/package.json +3 -3
  18. package/node_modules/@herbertgao/pi-subagents/CHANGELOG.md +16 -0
  19. package/node_modules/@herbertgao/pi-subagents/README.md +30 -22
  20. package/node_modules/@herbertgao/pi-subagents/examples/agent-tool-description.md +5 -5
  21. package/node_modules/@herbertgao/pi-subagents/package.json +7 -7
  22. package/node_modules/@herbertgao/pi-subagents/src/agent-file-toggle.ts +7 -1
  23. package/node_modules/@herbertgao/pi-subagents/src/agent-manager.ts +48 -19
  24. package/node_modules/@herbertgao/pi-subagents/src/agent-runner.ts +22 -15
  25. package/node_modules/@herbertgao/pi-subagents/src/custom-agents.ts +26 -2
  26. package/node_modules/@herbertgao/pi-subagents/src/index.ts +219 -40
  27. package/node_modules/@herbertgao/pi-subagents/src/invocation-config.ts +101 -3
  28. package/node_modules/@herbertgao/pi-subagents/src/nested-tools.ts +18 -4
  29. package/node_modules/@herbertgao/pi-subagents/src/settings.ts +99 -0
  30. package/node_modules/@herbertgao/pi-subagents/src/types.ts +22 -3
  31. package/node_modules/@herbertgao/pi-subagents/src/ui/agent-widget.ts +51 -3
  32. package/node_modules/@herbertgao/pi-subagents/src/ui/conversation-viewer.ts +20 -2
  33. package/node_modules/@herbertgao/pi-subagents/src/ui/fleet-list.ts +34 -10
  34. package/node_modules/@herbertgao/pi-subagents/src/usage.ts +129 -1
  35. package/node_modules/@herbertgao/pi-subagents/src/worktree.ts +29 -5
  36. package/node_modules/@juicesharp/rpiv-ask-user-question/README.md +3 -0
  37. package/node_modules/@juicesharp/rpiv-ask-user-question/ask-user-question.ts +46 -10
  38. package/node_modules/@juicesharp/rpiv-ask-user-question/config.ts +25 -0
  39. package/node_modules/@juicesharp/rpiv-ask-user-question/docs/configuration.md +13 -4
  40. package/node_modules/@juicesharp/rpiv-ask-user-question/docs/hosts.md +8 -1
  41. package/node_modules/@juicesharp/rpiv-ask-user-question/docs/localization.md +3 -1
  42. package/node_modules/@juicesharp/rpiv-ask-user-question/locales/en.json +2 -2
  43. package/node_modules/@juicesharp/rpiv-ask-user-question/locales/zh.json +2 -2
  44. package/node_modules/@juicesharp/rpiv-ask-user-question/package.json +3 -2
  45. package/node_modules/@juicesharp/rpiv-ask-user-question/state/build-questionnaire.ts +10 -0
  46. package/node_modules/@juicesharp/rpiv-ask-user-question/state/key-router.ts +3 -1
  47. package/node_modules/@juicesharp/rpiv-ask-user-question/state/questionnaire-session.ts +30 -7
  48. package/node_modules/@juicesharp/rpiv-ask-user-question/state/state.ts +14 -6
  49. package/node_modules/@juicesharp/rpiv-ask-user-question/view/dialog-builder.ts +30 -4
  50. package/node_modules/@juicesharp/rpiv-ask-user-question/view/tab-content-strategy.ts +26 -5
  51. package/node_modules/@narumitw/pi-btw/README.md +119 -103
  52. package/node_modules/@narumitw/pi-btw/dist/index.ts +2898 -0
  53. package/node_modules/@narumitw/pi-btw/dist/index.ts.map +7 -0
  54. package/node_modules/@narumitw/pi-btw/package.json +13 -9
  55. package/node_modules/@narumitw/pi-btw/src/btw.ts +40 -42
  56. package/node_modules/@narumitw/pi-btw/src/fullscreen-ui.ts +55 -10
  57. package/node_modules/@narumitw/pi-btw/src/main-tree-picker.ts +390 -0
  58. package/node_modules/@narumitw/pi-btw/src/menu.ts +78 -15
  59. package/node_modules/@narumitw/pi-btw/src/settings.ts +22 -2
  60. package/node_modules/@narumitw/pi-btw/src/transcript-pager.ts +136 -45
  61. package/node_modules/pi-lens/CHANGELOG.md +1004 -0
  62. package/node_modules/pi-lens/README.md +11 -3
  63. package/node_modules/pi-lens/config/ruff/core.toml +42 -0
  64. package/node_modules/pi-lens/dist/clients/actionable-warnings.js +130 -27
  65. package/node_modules/pi-lens/dist/clients/advisory-provenance.js +427 -0
  66. package/node_modules/pi-lens/dist/clients/agent-nudge.js +79 -16
  67. package/node_modules/pi-lens/dist/clients/ast-grep-client.js +9 -3
  68. package/node_modules/pi-lens/dist/clients/atomic-write.js +9 -3
  69. package/node_modules/pi-lens/dist/clients/bash-file-access.js +285 -8
  70. package/node_modules/pi-lens/dist/clients/biome-client.js +176 -37
  71. package/node_modules/pi-lens/dist/clients/blocker-freshness.js +428 -0
  72. package/node_modules/pi-lens/dist/clients/blocker-past-eof.js +119 -0
  73. package/node_modules/pi-lens/dist/clients/bootstrap.js +12 -1
  74. package/node_modules/pi-lens/dist/clients/bounded-pid-file-lock.js +12 -3
  75. package/node_modules/pi-lens/dist/clients/bounded-telemetry.js +192 -0
  76. package/node_modules/pi-lens/dist/clients/bus-events-logger.js +62 -6
  77. package/node_modules/pi-lens/dist/clients/bus-publish.js +11 -3
  78. package/node_modules/pi-lens/dist/clients/cascade-budget.js +196 -0
  79. package/node_modules/pi-lens/dist/clients/cascade-format.js +76 -2
  80. package/node_modules/pi-lens/dist/clients/cascade-types.js +9 -1
  81. package/node_modules/pi-lens/dist/clients/child-unref.js +54 -6
  82. package/node_modules/pi-lens/dist/clients/code-quality-warnings.js +76 -24
  83. package/node_modules/pi-lens/dist/clients/console-guard-install.js +16 -4
  84. package/node_modules/pi-lens/dist/clients/dead-code-client.js +249 -52
  85. package/node_modules/pi-lens/dist/clients/deadline-utils.js +8 -1
  86. package/node_modules/pi-lens/dist/clients/debug-handles.js +5 -0
  87. package/node_modules/pi-lens/dist/clients/degradation-ledger.js +62 -13
  88. package/node_modules/pi-lens/dist/clients/dependency-checker.js +43 -9
  89. package/node_modules/pi-lens/dist/clients/diagnostic-dispositions.js +153 -37
  90. package/node_modules/pi-lens/dist/clients/diagnostic-line-freshness.js +298 -0
  91. package/node_modules/pi-lens/dist/clients/diagnostics-publish.js +10 -3
  92. package/node_modules/pi-lens/dist/clients/dispatch/dispatcher.js +165 -11
  93. package/node_modules/pi-lens/dist/clients/dispatch/integration.js +325 -72
  94. package/node_modules/pi-lens/dist/clients/dispatch/lazy.js +7 -4
  95. package/node_modules/pi-lens/dist/clients/dispatch/plan.js +5 -0
  96. package/node_modules/pi-lens/dist/clients/dispatch/runners/ast-grep-napi.js +234 -18
  97. package/node_modules/pi-lens/dist/clients/dispatch/runners/biome-check.js +187 -19
  98. package/node_modules/pi-lens/dist/clients/dispatch/runners/cpp-check.js +6 -3
  99. package/node_modules/pi-lens/dist/clients/dispatch/runners/credo.js +11 -9
  100. package/node_modules/pi-lens/dist/clients/dispatch/runners/cue-vet.js +398 -0
  101. package/node_modules/pi-lens/dist/clients/dispatch/runners/elixir-check.js +11 -3
  102. package/node_modules/pi-lens/dist/clients/dispatch/runners/eslint.js +12 -7
  103. package/node_modules/pi-lens/dist/clients/dispatch/runners/go-vet.js +18 -0
  104. package/node_modules/pi-lens/dist/clients/dispatch/runners/helm-render.js +895 -0
  105. package/node_modules/pi-lens/dist/clients/dispatch/runners/index.js +4 -0
  106. package/node_modules/pi-lens/dist/clients/dispatch/runners/javac.js +16 -3
  107. package/node_modules/pi-lens/dist/clients/dispatch/runners/lsp.js +81 -41
  108. package/node_modules/pi-lens/dist/clients/dispatch/runners/markdownlint.js +16 -0
  109. package/node_modules/pi-lens/dist/clients/dispatch/runners/mypy.js +23 -0
  110. package/node_modules/pi-lens/dist/clients/dispatch/runners/psscriptanalyzer.js +331 -55
  111. package/node_modules/pi-lens/dist/clients/dispatch/runners/pyright.js +38 -5
  112. package/node_modules/pi-lens/dist/clients/dispatch/runners/rust-clippy.js +97 -19
  113. package/node_modules/pi-lens/dist/clients/dispatch/runners/spellcheck.js +14 -0
  114. package/node_modules/pi-lens/dist/clients/dispatch/runners/sqlfluff.js +20 -0
  115. package/node_modules/pi-lens/dist/clients/dispatch/runners/stylelint.js +22 -0
  116. package/node_modules/pi-lens/dist/clients/dispatch/runners/swiftlint.js +10 -0
  117. package/node_modules/pi-lens/dist/clients/dispatch/runners/taplo.js +18 -6
  118. package/node_modules/pi-lens/dist/clients/dispatch/runners/trivy-config.js +73 -12
  119. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/availability-policy.js +488 -0
  120. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/candidate-probe.js +84 -0
  121. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/lazy-installer.js +260 -27
  122. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/runner-helpers.js +943 -93
  123. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/spawn-outcome.js +86 -11
  124. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/tool-failure.js +72 -0
  125. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/toolchain-availability.js +106 -0
  126. package/node_modules/pi-lens/dist/clients/dispatch/runners/vale.js +9 -0
  127. package/node_modules/pi-lens/dist/clients/dispatch/runners/yamllint.js +18 -1
  128. package/node_modules/pi-lens/dist/clients/dispatch/runners/zig-check.js +4 -2
  129. package/node_modules/pi-lens/dist/clients/disposition-publish.js +10 -3
  130. package/node_modules/pi-lens/dist/clients/eval-timestamp.js +17 -0
  131. package/node_modules/pi-lens/dist/clients/event-loop-monitor.js +28 -5
  132. package/node_modules/pi-lens/dist/clients/extension-log.js +317 -3
  133. package/node_modules/pi-lens/dist/clients/file-kinds.js +8 -2
  134. package/node_modules/pi-lens/dist/clients/finding-delivery-gate.js +294 -0
  135. package/node_modules/pi-lens/dist/clients/finding-identity.js +88 -0
  136. package/node_modules/pi-lens/dist/clients/fix-worklog.js +5 -1
  137. package/node_modules/pi-lens/dist/clients/format-events-publish.js +39 -8
  138. package/node_modules/pi-lens/dist/clients/formatters-lazy.js +3 -2
  139. package/node_modules/pi-lens/dist/clients/formatters.js +500 -115
  140. package/node_modules/pi-lens/dist/clients/generation-guard.js +216 -0
  141. package/node_modules/pi-lens/dist/clients/git-guard.js +49 -21
  142. package/node_modules/pi-lens/dist/clients/gitleaks-client.js +181 -8
  143. package/node_modules/pi-lens/dist/clients/go-client.js +21 -39
  144. package/node_modules/pi-lens/dist/clients/govulncheck-client.js +219 -10
  145. package/node_modules/pi-lens/dist/clients/grammar-source.js +333 -10
  146. package/node_modules/pi-lens/dist/clients/host-ports.js +9 -1
  147. package/node_modules/pi-lens/dist/clients/installer/index.js +1119 -101
  148. package/node_modules/pi-lens/dist/clients/installer/managed-tool-refresh-session.js +58 -0
  149. package/node_modules/pi-lens/dist/clients/installer/managed-tool-refresh.js +715 -0
  150. package/node_modules/pi-lens/dist/clients/instance-reaper.js +643 -97
  151. package/node_modules/pi-lens/dist/clients/instance-registry.js +87 -17
  152. package/node_modules/pi-lens/dist/clients/jscpd-client.js +86 -15
  153. package/node_modules/pi-lens/dist/clients/knip-client.js +361 -24
  154. package/node_modules/pi-lens/dist/clients/language-policy.js +8 -2
  155. package/node_modules/pi-lens/dist/clients/language-profile.js +2 -0
  156. package/node_modules/pi-lens/dist/clients/latency-logger.js +487 -9
  157. package/node_modules/pi-lens/dist/clients/lazy-import.js +21 -0
  158. package/node_modules/pi-lens/dist/clients/ledger-bounds.js +21 -0
  159. package/node_modules/pi-lens/dist/clients/lens-events.js +56 -25
  160. package/node_modules/pi-lens/dist/clients/lens-flag-registry.js +16 -0
  161. package/node_modules/pi-lens/dist/clients/live-bus-emitter.js +45 -2
  162. package/node_modules/pi-lens/dist/clients/lsp/aggregation.js +30 -4
  163. package/node_modules/pi-lens/dist/clients/lsp/cascade-tier.js +160 -20
  164. package/node_modules/pi-lens/dist/clients/lsp/client.js +1666 -148
  165. package/node_modules/pi-lens/dist/clients/lsp/diagnostic-binding.js +111 -0
  166. package/node_modules/pi-lens/dist/clients/lsp/document-drift.js +389 -0
  167. package/node_modules/pi-lens/dist/clients/lsp/index.js +2496 -171
  168. package/node_modules/pi-lens/dist/clients/lsp/inferred-project.js +215 -0
  169. package/node_modules/pi-lens/dist/clients/lsp/jvm-runtime.js +146 -14
  170. package/node_modules/pi-lens/dist/clients/lsp/language.js +48 -4
  171. package/node_modules/pi-lens/dist/clients/lsp/server.js +517 -69
  172. package/node_modules/pi-lens/dist/clients/lsp/spawn-history.js +22 -0
  173. package/node_modules/pi-lens/dist/clients/lsp/sync-kind.js +43 -0
  174. package/node_modules/pi-lens/dist/clients/lsp/tsserver-sync.js +172 -0
  175. package/node_modules/pi-lens/dist/clients/lsp/wait-policy/classification.js +21 -5
  176. package/node_modules/pi-lens/dist/clients/lsp/wait-policy/strategies.js +61 -3
  177. package/node_modules/pi-lens/dist/clients/lsp/workspace-diagnostics-cache.js +422 -28
  178. package/node_modules/pi-lens/dist/clients/lsp/workspace-diagnostics-session.js +30 -0
  179. package/node_modules/pi-lens/dist/clients/lsp/workspace-sweep-hold.js +175 -0
  180. package/node_modules/pi-lens/dist/clients/lsp-lazy.js +3 -2
  181. package/node_modules/pi-lens/dist/clients/mcp/analyze.js +4 -0
  182. package/node_modules/pi-lens/dist/clients/mcp/session.js +39 -18
  183. package/node_modules/pi-lens/dist/clients/model-provider.js +53 -0
  184. package/node_modules/pi-lens/dist/clients/module-report.js +8 -0
  185. package/node_modules/pi-lens/dist/clients/opengrep-client.js +15 -1
  186. package/node_modules/pi-lens/dist/clients/package-manager.js +170 -14
  187. package/node_modules/pi-lens/dist/clients/path-attribution-telemetry.js +27 -0
  188. package/node_modules/pi-lens/dist/clients/path-utils.js +160 -0
  189. package/node_modules/pi-lens/dist/clients/pipeline.js +178 -30
  190. package/node_modules/pi-lens/dist/clients/post-autofix-notice.js +37 -0
  191. package/node_modules/pi-lens/dist/clients/project-diagnostics/cache.js +17 -3
  192. package/node_modules/pi-lens/dist/clients/project-diagnostics/extractors.js +89 -22
  193. package/node_modules/pi-lens/dist/clients/project-diagnostics/fresh-fetch.js +85 -15
  194. package/node_modules/pi-lens/dist/clients/project-diagnostics/runner-adapters/gitleaks.js +15 -3
  195. package/node_modules/pi-lens/dist/clients/project-diagnostics/runner-adapters/runner-findings.js +23 -2
  196. package/node_modules/pi-lens/dist/clients/project-diagnostics/runner-adapters/trivy.js +50 -2
  197. package/node_modules/pi-lens/dist/clients/project-diagnostics/scanner.js +5 -0
  198. package/node_modules/pi-lens/dist/clients/project-lens-config.js +3 -0
  199. package/node_modules/pi-lens/dist/clients/project-snapshot.js +299 -0
  200. package/node_modules/pi-lens/dist/clients/quiet-window-config.js +47 -0
  201. package/node_modules/pi-lens/dist/clients/quiet-window.js +11 -25
  202. package/node_modules/pi-lens/dist/clients/read-guard-logger.js +1 -1
  203. package/node_modules/pi-lens/dist/clients/read-guard.js +184 -10
  204. package/node_modules/pi-lens/dist/clients/resource-sampler.js +49 -17
  205. package/node_modules/pi-lens/dist/clients/reverse-deps.js +50 -11
  206. package/node_modules/pi-lens/dist/clients/review-graph/query.js +76 -4
  207. package/node_modules/pi-lens/dist/clients/run-duration.js +55 -0
  208. package/node_modules/pi-lens/dist/clients/runtime-agent-end.js +248 -13
  209. package/node_modules/pi-lens/dist/clients/runtime-context.js +112 -12
  210. package/node_modules/pi-lens/dist/clients/runtime-coordinator.js +472 -61
  211. package/node_modules/pi-lens/dist/clients/runtime-session.js +359 -13
  212. package/node_modules/pi-lens/dist/clients/runtime-tool-call.js +217 -22
  213. package/node_modules/pi-lens/dist/clients/runtime-tool-result.js +269 -22
  214. package/node_modules/pi-lens/dist/clients/runtime-turn.js +948 -87
  215. package/node_modules/pi-lens/dist/clients/rust-client.js +21 -37
  216. package/node_modules/pi-lens/dist/clients/safe-spawn.js +220 -7
  217. package/node_modules/pi-lens/dist/clients/scratch-tree-policy.js +161 -0
  218. package/node_modules/pi-lens/dist/clients/search-read-registration.js +34 -6
  219. package/node_modules/pi-lens/dist/clients/security-scan-client.js +224 -8
  220. package/node_modules/pi-lens/dist/clients/sg-runner.js +249 -37
  221. package/node_modules/pi-lens/dist/clients/single-flight.js +158 -0
  222. package/node_modules/pi-lens/dist/clients/smells-rollup.js +18 -11
  223. package/node_modules/pi-lens/dist/clients/stale-marker.js +17 -0
  224. package/node_modules/pi-lens/dist/clients/startup-timing.js +26 -2
  225. package/node_modules/pi-lens/dist/clients/test-runner-client.js +574 -32
  226. package/node_modules/pi-lens/dist/clients/tool-event.js +56 -5
  227. package/node_modules/pi-lens/dist/clients/tool-policy.js +127 -20
  228. package/node_modules/pi-lens/dist/clients/tool-set-policy.js +76 -0
  229. package/node_modules/pi-lens/dist/clients/tree-sitter-cache.js +75 -1
  230. package/node_modules/pi-lens/dist/clients/tree-sitter-client.js +769 -64
  231. package/node_modules/pi-lens/dist/clients/tree-sitter-shared.js +11 -0
  232. package/node_modules/pi-lens/dist/clients/tree-sitter-symbol-extractor.js +90 -0
  233. package/node_modules/pi-lens/dist/clients/trivy-client.js +19 -1
  234. package/node_modules/pi-lens/dist/clients/warm-attach.js +17 -0
  235. package/node_modules/pi-lens/dist/clients/widget-state.js +336 -36
  236. package/node_modules/pi-lens/dist/clients/word-index.js +305 -33
  237. package/node_modules/pi-lens/dist/clients/zizmor-config.js +214 -14
  238. package/node_modules/pi-lens/dist/index.js +64677 -49484
  239. package/node_modules/pi-lens/dist/mcp/server.js +8 -2
  240. package/node_modules/pi-lens/dist/tools/activate-tools.js +17 -5
  241. package/node_modules/pi-lens/dist/tools/ast-grep-replace.js +9 -4
  242. package/node_modules/pi-lens/dist/tools/lens-diagnostic-mark.js +5 -2
  243. package/node_modules/pi-lens/dist/tools/lens-diagnostics.js +469 -56
  244. package/node_modules/pi-lens/dist/tools/lsp-diagnostics.js +190 -46
  245. package/node_modules/pi-lens/dist/tools/lsp-navigation.js +46 -7
  246. package/node_modules/pi-lens/dist/tools/symbol-search.js +1 -1
  247. package/node_modules/pi-lens/docs/agent-guide.md +44 -14
  248. package/node_modules/pi-lens/docs/ast-grep_rules_catalog.md +518 -501
  249. package/node_modules/pi-lens/docs/dispositions.md +21 -0
  250. package/node_modules/pi-lens/docs/features.md +33 -6
  251. package/node_modules/pi-lens/docs/globalconfig.md +14 -0
  252. package/node_modules/pi-lens/docs/language-coverage.md +71 -5
  253. package/node_modules/pi-lens/docs/mcp.md +2 -2
  254. package/node_modules/pi-lens/docs/servercapabilities.md +4 -1
  255. package/node_modules/pi-lens/docs/settings.md +25 -1
  256. package/node_modules/pi-lens/docs/usage.md +24 -5
  257. package/node_modules/pi-lens/docs/word-index.md +35 -0
  258. package/node_modules/pi-lens/package.json +10 -6
  259. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/__snapshots__/no-reflect-get-js-snapshot.yml +23 -0
  260. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/__snapshots__/no-reflect-get-snapshot.yml +23 -0
  261. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/__snapshots__/ts-void-zero-snapshot.yml +23 -0
  262. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-bare-object-param-test.yml +16 -0
  263. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-chained-type-assertions-test.yml +22 -0
  264. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-compile-call-test.yml +29 -1
  265. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-conditional-empty-object-spread-js-test.yml +9 -0
  266. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-conditional-empty-object-spread-test.yml +9 -0
  267. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-dupe-class-members-test.yml +33 -0
  268. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-inner-html-js-test.yml +7 -1
  269. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-inner-html-test.yml +7 -1
  270. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-known-value-widening-test.yml +9 -0
  271. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-non-null-assertion-test.yml +216 -0
  272. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-reflect-apply-js-test.yml +9 -0
  273. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-reflect-apply-test.yml +9 -0
  274. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-reflect-get-js-test.yml +9 -0
  275. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-reflect-get-test.yml +9 -0
  276. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-return-value-in-generator-test.yml +12 -0
  277. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-runtime-typeof-test.yml +33 -0
  278. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-server-bind-wildcard-test.yml +9 -0
  279. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-shape-in-symbol-names-test.yml +13 -0
  280. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-sql-in-code-js-test.yml +5 -1
  281. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-sql-in-code-test.yml +5 -1
  282. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-unknown-laundering-test.yml +11 -0
  283. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-unknown-parameters-test.yml +12 -0
  284. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-unknown-returns-test.yml +16 -0
  285. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-unsafe-dictionary-any-test.yml +10 -0
  286. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/no-unsafe-dictionary-unknown-test.yml +8 -0
  287. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/redundant-unsafe-function-test.yml +35 -0
  288. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/require-safety-comment-for-as-unknown-as-test.yml +177 -0
  289. package/node_modules/pi-lens/rules/ast-grep-rules/rule-tests/ts-void-zero-test.yml +1 -0
  290. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-await-expression-member-js.yml +13 -2
  291. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-await-expression-member.yml +13 -2
  292. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-bare-host-path-in-win32-branch.yml +2 -0
  293. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-bare-object-param.yml +60 -0
  294. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-chained-type-assertions.yml +66 -0
  295. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-compile-call.yml +63 -5
  296. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-conditional-empty-object-spread-js.yml +21 -0
  297. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-conditional-empty-object-spread.yml +29 -0
  298. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-dupe-class-members.yml +52 -8
  299. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-inner-html-js.yml +27 -2
  300. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-inner-html.yml +27 -2
  301. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-known-value-widening.yml +71 -0
  302. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-non-null-assertion.yml +316 -0
  303. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-raw-json-store-write.yml +7 -0
  304. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-reflect-apply-js.yml +29 -0
  305. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-reflect-apply.yml +30 -0
  306. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-reflect-get-js.yml +41 -0
  307. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-reflect-get.yml +42 -0
  308. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-return-value-in-generator.yml +22 -5
  309. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-runtime-typeof.yml +121 -0
  310. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-server-bind-wildcard.yml +23 -7
  311. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-shape-in-symbol-names.yml +68 -0
  312. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-sql-in-code-js.yml +41 -2
  313. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-sql-in-code.yml +41 -2
  314. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-unknown-laundering.yml +32 -0
  315. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-unknown-parameters.yml +67 -0
  316. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-unknown-returns.yml +106 -0
  317. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-unsafe-dictionary-any.yml +50 -0
  318. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-unsafe-dictionary-unknown.yml +56 -0
  319. package/node_modules/pi-lens/rules/ast-grep-rules/rules/no-win32-isabsolute-for-qualification.yml +2 -0
  320. package/node_modules/pi-lens/rules/ast-grep-rules/rules/redundant-unsafe-function.yml +32 -0
  321. package/node_modules/pi-lens/rules/ast-grep-rules/rules/require-safety-comment-for-as-unknown-as.yml +184 -0
  322. package/node_modules/pi-lens/rules/ast-grep-rules/rules/ts-void-zero.yml +5 -0
  323. package/node_modules/pi-lens/rules/ast-grep-rules/self-scan-baseline.json +5 -0
  324. package/node_modules/pi-lens/scripts/analyze-pi-lens-logs.mjs +132 -1
  325. package/node_modules/pi-lens/scripts/download-grammars.js +25 -0
  326. package/node_modules/pi-lens/scripts/grammars.lock.json +9 -0
  327. package/node_modules/pi-lens/skills/pi-lens-ast-grep/SKILL.md +12 -11
  328. package/node_modules/pi-lens/skills/pi-lens-lsp-navigation/SKILL.md +22 -22
  329. package/node_modules/pi-lens/skills/pi-lens-write-ast-grep-rule/SKILL.md +87 -116
  330. package/node_modules/pi-lens/skills/pi-lens-write-ast-grep-rule/reference.md +170 -0
  331. package/node_modules/pi-lens/skills/pi-lens-write-tree-sitter-rule/SKILL.md +3 -1
  332. package/node_modules/pi-lens/vendor/grammars/tree-sitter-cue.wasm +0 -0
  333. package/node_modules/pi-mcp-adapter/CHANGELOG.md +49 -0
  334. package/node_modules/pi-mcp-adapter/README.md +51 -6
  335. package/node_modules/pi-mcp-adapter/agent-dir.ts +12 -4
  336. package/node_modules/pi-mcp-adapter/cli.js +188 -5
  337. package/node_modules/pi-mcp-adapter/commands.ts +128 -22
  338. package/node_modules/pi-mcp-adapter/config.ts +28 -10
  339. package/node_modules/pi-mcp-adapter/direct-tools.ts +23 -19
  340. package/node_modules/pi-mcp-adapter/index.ts +219 -32
  341. package/node_modules/pi-mcp-adapter/init.ts +36 -4
  342. package/node_modules/pi-mcp-adapter/lifecycle.ts +315 -24
  343. package/node_modules/pi-mcp-adapter/mcp-auth-flow.ts +39 -6
  344. package/node_modules/pi-mcp-adapter/mcp-bearer-store.ts +387 -0
  345. package/node_modules/pi-mcp-adapter/mcp-callback-server.ts +27 -3
  346. package/node_modules/pi-mcp-adapter/mcp-code.ts +4 -0
  347. package/node_modules/pi-mcp-adapter/mcp-panel.ts +42 -13
  348. package/node_modules/pi-mcp-adapter/mcp-setup-panel.ts +2 -1
  349. package/node_modules/pi-mcp-adapter/metadata-cache.ts +46 -25
  350. package/node_modules/pi-mcp-adapter/package-mcp-loader.ts +168 -0
  351. package/node_modules/pi-mcp-adapter/package.json +4 -1
  352. package/node_modules/pi-mcp-adapter/proxy-modes.ts +5 -4
  353. package/node_modules/pi-mcp-adapter/request-headers-command.ts +330 -0
  354. package/node_modules/pi-mcp-adapter/search-ranking.ts +92 -22
  355. package/node_modules/pi-mcp-adapter/server-manager.ts +145 -2
  356. package/node_modules/pi-mcp-adapter/session-recovery.ts +7 -0
  357. package/node_modules/pi-mcp-adapter/tool-approval.ts +15 -2
  358. package/node_modules/pi-mcp-adapter/tool-metadata.ts +38 -18
  359. package/node_modules/pi-mcp-adapter/tool-result-renderer.ts +44 -4
  360. package/node_modules/pi-mcp-adapter/types.ts +95 -10
  361. package/node_modules/pi-mcp-adapter/ui-server.ts +18 -16
  362. package/node_modules/pi-mcp-adapter/utils.ts +70 -0
  363. package/node_modules/pi-web-access/CHANGELOG.md +37 -0
  364. package/node_modules/pi-web-access/README.md +38 -14
  365. package/node_modules/pi-web-access/anysearch.ts +4 -2
  366. package/node_modules/pi-web-access/auth-fetch.ts +148 -0
  367. package/node_modules/pi-web-access/brave.ts +16 -4
  368. package/node_modules/pi-web-access/chrome-cookies.ts +110 -23
  369. package/node_modules/pi-web-access/curator-page.ts +8 -3
  370. package/node_modules/pi-web-access/curator-server.ts +5 -1
  371. package/node_modules/pi-web-access/exa.ts +18 -7
  372. package/node_modules/pi-web-access/extract.ts +134 -37
  373. package/node_modules/pi-web-access/fetch-params.ts +17 -3
  374. package/node_modules/pi-web-access/firecrawl.ts +172 -12
  375. package/node_modules/pi-web-access/gemini-search.ts +33 -7
  376. package/node_modules/pi-web-access/index.ts +160 -104
  377. package/node_modules/pi-web-access/package.json +2 -2
  378. package/node_modules/pi-web-access/page-query.ts +4 -2
  379. package/node_modules/pi-web-access/parallel-mcp.ts +249 -0
  380. package/node_modules/pi-web-access/parallel.ts +2 -2
  381. package/node_modules/pi-web-access/query-rewrite.ts +51 -0
  382. package/node_modules/pi-web-access/serper.ts +211 -0
  383. package/node_modules/pi-web-access/summary-model-scope.ts +12 -4
  384. package/node_modules/pi-web-access/summary-review.ts +51 -23
  385. package/node_modules/pi-web-access/tavily.ts +16 -4
  386. package/node_modules/pi-web-access/utils.ts +87 -0
  387. package/node_modules/pi-web-access/valyu.ts +199 -0
  388. package/node_modules/pi-web-access/youtube-extract.ts +2 -2
  389. package/package.json +13 -13
@@ -1,11 +1,29 @@
1
1
  import { randomBytes } from "node:crypto";
2
2
  import * as fs from "node:fs";
3
3
  import * as path from "node:path";
4
- import { normalizeMapKey } from "./path-utils.js";
4
+ import { logCascade } from "./cascade-logger.js";
5
+ import { normalizeMapKey, pathsEqual } from "./path-utils.js";
5
6
  import { PathKeyedMap } from "./path-keyed-map.js";
7
+ import { BoundedLruCache } from "./bounded-cache.js";
6
8
  import { ReadGuard } from "./read-guard.js";
7
9
  import { RUNTIME_CONFIG } from "./runtime-config.js";
8
10
  import { TurnSummaryCollector } from "./turn-summary.js";
11
+ import { deriveProviderFromModelId } from "./model-provider.js";
12
+ /**
13
+ * Bound on in-flight tool_call → tool_result correlations. A tool_result
14
+ * follows its tool_call almost immediately, so this only needs to cover
15
+ * calls genuinely in flight; sized generously above any realistic
16
+ * in-flight-batch width so a slow paired result is never evicted before use.
17
+ */
18
+ const TOOL_CALL_ATTRIBUTION_CAPACITY = 256;
19
+ /**
20
+ * A recorded attribution older than this is treated as expired (as if it
21
+ * were never recorded) rather than trusted — defense in depth against a host
22
+ * that reuses a call id, or a pathologically delayed/duplicated tool_result,
23
+ * outliving the LRU capacity bound. Generous relative to any real tool
24
+ * round-trip; only guards against genuine identity reuse, not slow tools.
25
+ */
26
+ const TOOL_CALL_ATTRIBUTION_TTL_MS = 5 * 60_000;
9
27
  export class RuntimeCoordinator {
10
28
  _projectRoot = normalizeMapKey(process.cwd());
11
29
  _sessionGeneration = 0;
@@ -15,6 +33,8 @@ export class RuntimeCoordinator {
15
33
  _cachedExports = new Map();
16
34
  _startupScansInFlight = new Map();
17
35
  _cascadeRuns = [];
36
+ _turnEndCascadeSettleStarts = new Map();
37
+ _nextCascadeSettleToken = 0;
18
38
  // Cascade computes are kicked off unawaited by the pipeline (#450); their
19
39
  // promises park here until turn_end drains them via settleCascadeRuns. Each is
20
40
  // guaranteed non-rejecting by the pipeline's .catch.
@@ -25,7 +45,9 @@ export class RuntimeCoordinator {
25
45
  coldSnapshotTouches: 0,
26
46
  };
27
47
  _complexityBaselines = new Map();
28
- _fixedThisTurn = new Set();
48
+ _fixedThisTurn = new PathKeyedMap(normalizeMapKey);
49
+ _writtenThisTurn = new PathKeyedMap(normalizeMapKey);
50
+ _autofixDemotedThisTurn = new PathKeyedMap(normalizeMapKey);
29
51
  _reportedThisTurn = new Set();
30
52
  _projectRulesScan = {
31
53
  rules: [],
@@ -35,6 +57,19 @@ export class RuntimeCoordinator {
35
57
  _lifecycleReason;
36
58
  _hasStableSessionId = false;
37
59
  _telemetryModel = "unknown";
60
+ // Raw model/provider identity, separate from the combined `provider/model`
61
+ // display string above — worklog/disposition attribution (#1448) wants the
62
+ // two fields apart, blank when the host never supplied them. `_telemetryProvider`
63
+ // is the explicit host value when given, else derived from the model id
64
+ // (deriveProviderFromModelId, blank on ambiguity — never guessed).
65
+ _telemetryModelId = "";
66
+ _telemetryProvider = "";
67
+ // True once a host has supplied an explicit provider this session. An
68
+ // explicit provider is never downgraded by a derivation from a later
69
+ // model-only call; a DERIVED provider, by contrast, is re-derived on
70
+ // every model-only call so a mid-session model switch (e.g. gpt-5-mini →
71
+ // claude-sonnet-4-5) doesn't leave a stale provider from the old model.
72
+ _telemetryProviderIsExplicit = false;
38
73
  _turnIndex = 0;
39
74
  _writeIndex = 0;
40
75
  _projectSeq = 0;
@@ -51,7 +86,9 @@ export class RuntimeCoordinator {
51
86
  callGraph = null;
52
87
  wordIndex = null;
53
88
  _readGuard = null;
54
- _pendingDeferredFormatFiles = new Map();
89
+ _pendingDeferredMutations = new PathKeyedMap(normalizeMapKey);
90
+ /** tool_call → tool_result path-attribution correlation (#1642). */
91
+ _toolCallAttributions = new BoundedLruCache(TOOL_CALL_ATTRIBUTION_CAPACITY);
55
92
  _lspReadWarmState = new Map();
56
93
  _pendingInlineBlockers = new PathKeyedMap(normalizeMapKey);
57
94
  _actionableWarningsThisTurn = new Map();
@@ -72,16 +109,22 @@ export class RuntimeCoordinator {
72
109
  this._startupScansInFlight.clear();
73
110
  this._cascadeRuns = [];
74
111
  this._pendingCascadeRuns = [];
112
+ this._turnEndCascadeSettleStarts.clear();
75
113
  this._cascadeSessionStats = {
76
114
  runs: 0,
77
115
  diagnosticsSurfaced: 0,
78
116
  coldSnapshotTouches: 0,
79
117
  };
80
118
  this._fixedThisTurn.clear();
119
+ this._writtenThisTurn.clear();
120
+ this._autofixDemotedThisTurn.clear();
81
121
  this._reportedThisTurn.clear();
82
122
  this._telemetrySessionId = `lens-${Date.now().toString(36)}-${randomBytes(4).toString("hex")}`;
83
123
  this._hasStableSessionId = false;
84
124
  this._telemetryModel = "unknown";
125
+ this._telemetryModelId = "";
126
+ this._telemetryProvider = "";
127
+ this._telemetryProviderIsExplicit = false;
85
128
  this._turnIndex = 0;
86
129
  this._writeIndex = 0;
87
130
  this._projectSeq = 0;
@@ -92,7 +135,11 @@ export class RuntimeCoordinator {
92
135
  this._gitGuardSummary = "";
93
136
  this._gitGuardCacheUnknownReason = undefined;
94
137
  this._readGuard = null;
95
- this._pendingDeferredFormatFiles.clear();
138
+ this._pendingDeferredMutations.clear();
139
+ // #1642 F5: every sibling correlation/state map is cleared here. A
140
+ // per-session-numbered host reusing tool-call ids across sessions must
141
+ // not let a NEW session inherit a DEAD session's recorded skip verdict.
142
+ this._toolCallAttributions.clear();
96
143
  this._lspReadWarmState.clear();
97
144
  this._pendingInlineBlockers.clear();
98
145
  this._actionableWarningsThisTurn.clear();
@@ -145,7 +192,30 @@ export class RuntimeCoordinator {
145
192
  return this._gitGuardCacheUnknownReason;
146
193
  }
147
194
  beginTurn() {
148
- this._cascadeRuns = [];
195
+ // #1443: runs sitting here at turn_start were appended AFTER the last
196
+ // turn_end drained them (consumeCascadeRuns) — the quiet-window reconcile's
197
+ // late re-injection (`onResolvedFound`, clients/lsp/cascade-tier.ts) lands
198
+ // in exactly that window. Wiping them dead-ended that delivery path: the
199
+ // finding was computed, formatted, appended, and then deleted before any
200
+ // turn_end could render it. Carry them into THIS turn instead, exactly
201
+ // once: `carriedTurns` is stamped on the way through and a run that the
202
+ // next turn_end still did not consume is dropped here with a log line
203
+ // rather than queued forever (a stale finding must not outlive the state
204
+ // it describes, and an unbounded queue would replay it every turn).
205
+ this._cascadeRuns = this._cascadeRuns.flatMap((run) => {
206
+ const carriedTurns = (run.carriedTurns ?? 0) + 1;
207
+ if (carriedTurns > 1) {
208
+ logCascade({
209
+ phase: "cascade_carry_over_drop",
210
+ filePath: run.filePath,
211
+ neighborCount: run.neighborCount,
212
+ diagnosticCount: run.diagnosticCount,
213
+ metadata: { carriedTurns, turnIndex: this._turnIndex },
214
+ });
215
+ return [];
216
+ }
217
+ return [{ ...run, carriedTurns }];
218
+ });
149
219
  // _pendingCascadeRuns is deliberately NOT cleared here: a cascade compute
150
220
  // still in flight past last turn_end's settle cap (fresh graph builds have
151
221
  // measured up to ~19s) must surface on the NEXT turn_end, not be dropped —
@@ -166,6 +236,25 @@ export class RuntimeCoordinator {
166
236
  this._turnIndex += 1;
167
237
  this._writeIndex = 0;
168
238
  this._reportedThisTurn.clear();
239
+ this._writtenThisTurn.clear();
240
+ this._autofixDemotedThisTurn.clear();
241
+ }
242
+ /** Atomically records write/edit ordering before debounce can coalesce it. */
243
+ recordMutationToolReceipt(filePath, toolName) {
244
+ if (toolName === "write") {
245
+ this._writtenThisTurn.set(filePath, true);
246
+ }
247
+ else if (this._writtenThisTurn.has(filePath)) {
248
+ this._autofixDemotedThisTurn.set(filePath, true);
249
+ // A later edit establishes a new final state that must be eligible for
250
+ // the deferred pass even if the preceding write was fixed immediately.
251
+ this._fixedThisTurn.delete(filePath);
252
+ }
253
+ return {
254
+ autofixMode: toolName === "edit" || this._autofixDemotedThisTurn.has(filePath)
255
+ ? "deferred"
256
+ : "immediate",
257
+ };
169
258
  }
170
259
  get reportedThisTurn() {
171
260
  return this._reportedThisTurn;
@@ -192,6 +281,23 @@ export class RuntimeCoordinator {
192
281
  else if (provider) {
193
282
  this._telemetryModel = provider;
194
283
  }
284
+ if (model)
285
+ this._telemetryModelId = model;
286
+ if (provider) {
287
+ this._telemetryProvider = provider;
288
+ this._telemetryProviderIsExplicit = true;
289
+ }
290
+ else if (model && !this._telemetryProviderIsExplicit) {
291
+ // No explicit provider has ever been reported this session, so the
292
+ // provider is (still) a derivation — re-derive it from the CURRENT
293
+ // model id every time. Without this, a stale derived provider from
294
+ // an earlier model would survive a mid-session model switch (e.g.
295
+ // gpt-5-mini → claude-sonnet-4-5 with no explicit provider on
296
+ // either call) because the old "has any provider ever been set"
297
+ // guard treated the derived value as sticky. An explicit provider,
298
+ // once set, is never touched here regardless of later model calls.
299
+ this._telemetryProvider = deriveProviderFromModelId(model);
300
+ }
195
301
  }
196
302
  get telemetrySessionId() {
197
303
  return this._telemetrySessionId;
@@ -220,6 +326,17 @@ export class RuntimeCoordinator {
220
326
  get telemetryModel() {
221
327
  return this._telemetryModel;
222
328
  }
329
+ /** Raw model id (never the combined `provider/model` display string), blank
330
+ * when the host hasn't reported one this session. Worklog/disposition
331
+ * attribution (#1448) reads this, not {@link telemetryModel}. */
332
+ get telemetryModelId() {
333
+ return this._telemetryModelId;
334
+ }
335
+ /** Explicit host-reported provider, or a conservative derivation from the
336
+ * model id (see clients/model-provider.ts), blank when neither is known. */
337
+ get telemetryProviderId() {
338
+ return this._telemetryProvider;
339
+ }
223
340
  get turnIndex() {
224
341
  return this._turnIndex;
225
342
  }
@@ -329,6 +446,24 @@ export class RuntimeCoordinator {
329
446
  appendCascadePromise(p) {
330
447
  this._pendingCascadeRuns.push(p);
331
448
  }
449
+ /**
450
+ * The active turn_end settle clock, or undefined outside that wait.
451
+ *
452
+ * #1462 review F-F: every cascade compute in flight on this coordinator
453
+ * reads the SAME clock. `_turnEndCascadeSettleStarts` is keyed by settle
454
+ * token so `settleCascadeRuns` can distinguish its own drain from a nested
455
+ * one, but this getter always answers with the latest active window —
456
+ * there is one turn_end per runtime, not one per caller. A cascade begun
457
+ * moments before turn_end and one begun long before it both measure elapsed
458
+ * time against the same start, which is correct: they are racing the same
459
+ * settle wait and share its deadline, not separate ones.
460
+ */
461
+ getTurnEndCascadeSettleStart() {
462
+ let latest;
463
+ for (const start of this._turnEndCascadeSettleStarts.values())
464
+ latest = start;
465
+ return latest;
466
+ }
332
467
  /**
333
468
  * Drain the deferred cascade computes kicked off this turn (#450), racing them
334
469
  * against a bounded wait. Fulfilled runs feed the same accumulator as inline
@@ -336,57 +471,206 @@ export class RuntimeCoordinator {
336
471
  * late-resolving compute is picked up on the next turn_end rather than lost.
337
472
  * The stored promises never reject (pipeline guarantees an "error" skip-run).
338
473
  */
339
- async settleCascadeRuns(maxWaitMs) {
474
+ async settleCascadeRuns(maxWaitMs, settleOptions = {}) {
340
475
  const pending = this._pendingCascadeRuns;
341
476
  if (pending.length === 0)
342
477
  return { settled: 0, timedOut: 0 };
343
478
  this._pendingCascadeRuns = [];
344
- // Track per-promise settlement so promises still in flight at the cap can be
345
- // carried over. A settled entry records its run; an unsettled one is re-parked.
346
- const tracked = pending.map((p) => {
347
- const entry = { done: false, promise: p };
348
- entry.promise = p.then((run) => {
349
- entry.done = true;
350
- entry.run = run;
351
- return run;
479
+ const settleToken = settleOptions.trackTurnEndClock
480
+ ? ++this._nextCascadeSettleToken
481
+ : undefined;
482
+ if (settleToken !== undefined) {
483
+ this._turnEndCascadeSettleStarts.set(settleToken, Date.now());
484
+ }
485
+ try {
486
+ // Track per-promise settlement so promises still in flight at the cap can be
487
+ // carried over. A settled entry records its run; an unsettled one is re-parked.
488
+ const tracked = pending.map((p) => {
489
+ const entry = { done: false, promise: p };
490
+ entry.promise = p.then((run) => {
491
+ entry.done = true;
492
+ entry.run = run;
493
+ return run;
494
+ });
495
+ return entry;
352
496
  });
353
- return entry;
354
- });
355
- const timeout = new Promise((resolve) => {
356
- setTimeout(resolve, maxWaitMs).unref?.();
357
- });
358
- await Promise.race([
359
- Promise.allSettled(tracked.map((t) => t.promise)),
360
- timeout,
361
- ]);
362
- let settled = 0;
363
- let timedOut = 0;
364
- for (const entry of tracked) {
365
- if (entry.done && entry.run) {
366
- this.appendCascadeRun(entry.run);
367
- settled += 1;
497
+ const timeout = new Promise((resolve) => {
498
+ setTimeout(resolve, maxWaitMs).unref?.();
499
+ });
500
+ await Promise.race([
501
+ Promise.allSettled(tracked.map((t) => t.promise)),
502
+ timeout,
503
+ ]);
504
+ let settled = 0;
505
+ let timedOut = 0;
506
+ for (const entry of tracked) {
507
+ if (entry.done && entry.run) {
508
+ this.appendCascadeRun(entry.run);
509
+ settled += 1;
510
+ }
511
+ else {
512
+ this._pendingCascadeRuns.push(entry.promise);
513
+ timedOut += 1;
514
+ }
368
515
  }
369
- else {
370
- this._pendingCascadeRuns.push(entry.promise);
371
- timedOut += 1;
516
+ return { settled, timedOut };
517
+ }
518
+ finally {
519
+ if (settleToken !== undefined) {
520
+ this._turnEndCascadeSettleStarts.delete(settleToken);
372
521
  }
373
522
  }
374
- return { settled, timedOut };
375
523
  }
376
524
  consumeCascadeRuns() {
377
525
  const runs = this._cascadeRuns;
378
526
  this._cascadeRuns = [];
379
527
  return runs;
380
528
  }
381
- recordInlineBlockers(filePath, summary) {
529
+ /**
530
+ * R1 (#1443 follow-up): non-destructive peek used by turn_end's read-only
531
+ * fast path. A carried cascade run (or one still in flight) represents a
532
+ * DELIVERY OPPORTUNITY, not turn activity — an agent that answers a question
533
+ * without editing anything must still get yesterday's late finding. Before
534
+ * this, the files-empty early return skipped `settleCascadeRuns` /
535
+ * `consumeCascadeRuns` entirely on a read-only turn, so `beginTurn`'s next
536
+ * carry pass saw the run as having survived a turn_start with no offsetting
537
+ * drain and dropped it — burning the one-turn carry allowance on a turn that
538
+ * never had a chance to deliver.
539
+ */
540
+ hasCascadeRuns() {
541
+ // Carried, ALREADY-BUILT runs only. Pending (still-settling) computes are
542
+ // deliberately excluded: a read-only turn that fell through for a pending
543
+ // run would block on the full settle cap — every turn, forever, when the
544
+ // compute never resolves (re-review finding F1). A pending run loses
545
+ // nothing by waiting: settleCascadeRuns re-parks it and the next turn
546
+ // that actually settles it delivers it.
547
+ return this._cascadeRuns.length > 0;
548
+ }
549
+ recordInlineBlockers(filePath, summary, writeIndex, sources, lines) {
382
550
  this._pendingInlineBlockers.set(path.resolve(filePath), {
383
551
  filePath,
384
552
  summary,
553
+ writeIndex,
554
+ sources,
555
+ lines,
556
+ recordedAtMs: Date.now(),
557
+ stale: false,
385
558
  });
386
559
  }
387
560
  clearInlineBlockers(filePath) {
388
561
  this._pendingInlineBlockers.delete(path.resolve(filePath));
389
562
  }
563
+ /**
564
+ * #1631: demote a cached blocker to stale without dropping it (#1419
565
+ * demote-not-drop). Called by the turn-boundary freshness sweep when the
566
+ * file or one of its forward imports drifted on disk after the verdict.
567
+ * Idempotent: re-marking an already-stale entry (for ANY reason) is a
568
+ * no-op — a `"past-eof"` demotion already took this record out of the
569
+ * authoritative channel, and `sweepInlineBlockerFreshness` re-checks next
570
+ * turn once that heals. Returns true only when this call transitioned the
571
+ * entry to stale, so a caller can log the demotion exactly once.
572
+ */
573
+ markInlineBlockerStale(filePath, reason = "dependency-drift") {
574
+ const key = path.resolve(filePath);
575
+ const existing = this._pendingInlineBlockers.get(key);
576
+ if (!existing || existing.stale)
577
+ return false;
578
+ this._pendingInlineBlockers.set(key, {
579
+ ...existing,
580
+ stale: true,
581
+ staleReason: reason,
582
+ });
583
+ return true;
584
+ }
585
+ /**
586
+ * #1641: re-derive the past-EOF demotion for one inline-blocker record.
587
+ * Unlike {@link markInlineBlockerStale} (a one-way latch for the
588
+ * dependency-drift gate), this RE-ARMS: called every turn end with the
589
+ * gate's freshly-computed verdict, it can both demote (rising edge) and
590
+ * heal (falling edge — a transient shrink-then-restore of the file). Never
591
+ * touches a record a sibling gate demoted (`staleReason !== "past-eof"`
592
+ * while `stale`) — composing with #1631's dependency-drift gate means each
593
+ * gate only heals its own demotions. Returns true only on an actual
594
+ * transition, so the caller logs/resyncs exactly once per edge.
595
+ */
596
+ setInlineBlockerPastEofStale(filePath, isPastEof) {
597
+ const key = path.resolve(filePath);
598
+ const existing = this._pendingInlineBlockers.get(key);
599
+ if (!existing)
600
+ return false;
601
+ if (existing.stale && existing.staleReason !== "past-eof")
602
+ return false;
603
+ const currentlyPastEof = !!existing.stale && existing.staleReason === "past-eof";
604
+ if (currentlyPastEof === isPastEof)
605
+ return false;
606
+ this._pendingInlineBlockers.set(key, {
607
+ ...existing,
608
+ stale: isPastEof,
609
+ staleReason: isPastEof ? "past-eof" : undefined,
610
+ });
611
+ return true;
612
+ }
613
+ /**
614
+ * Retire a file's inline blocker because a FRESH, content-bound diagnostic
615
+ * verdict proved it gone (#1561).
616
+ *
617
+ * The map was invalidated by exactly two events: a later dispatch of the
618
+ * SAME path returning no blockers, and that path ceasing to exist (#1245).
619
+ * Neither covers the common case that produced #1561 — a blocker on file F
620
+ * whose cause lives in file G. Fixing G re-dispatches G, not F, so F's
621
+ * verdict was never re-taken and "Unresolved from this turn" was re-injected
622
+ * for the rest of the session. In the live case the agent then ran
623
+ * `lsp_diagnostics` on F, pi-lens answered "confirmed clean", and the
624
+ * blocker was STILL re-served on the next three turn ends: #571 wired that
625
+ * tool's confirmed result into the widget footer and stopped there.
626
+ *
627
+ * This is the seam #1198 invariant 4 left undecided, decided: an affirmative
628
+ * clean from the authoritative current view retires the stale verdict.
629
+ *
630
+ * Ordering (#1198 invariants 1-2). Both stores draw from the same
631
+ * `nextWriteIndex()` counter, so when both sides are stamped the retire
632
+ * requires the clean verdict to be strictly NEWER. A slow old clean that
633
+ * settles after a fresh dispatch found real blockers must not erase them.
634
+ * When either side is unstamped the two cannot be ordered at all; the fresh
635
+ * confirmed verdict wins, because it is the only one of the two backed by an
636
+ * actual observation of current content. Only production's single record site
637
+ * is stamped, so in practice the unstamped branch is legacy callers/tests.
638
+ *
639
+ * COVERAGE (#1561 F1). A blocker is retired only by a verdict that can speak
640
+ * for the tools that raised it. Inline blockers come from the whole dispatch,
641
+ * not just the language server: `dispatcher.ts` collects every
642
+ * `semantic === "blocking"` diagnostic across all runners, so eslint,
643
+ * biome-check, actionlint, elixir/gleam-check and ast-grep security rules all
644
+ * land in this map. A language-server check knows nothing about any of them,
645
+ * so `coveredSources` must be a SUPERSET of the recorded sources or the entry
646
+ * stands. This is a commit gate: a record whose provenance is unknown (no
647
+ * `sources`) fails CLOSED and is never retired, because "we don't know what
648
+ * raised this" must not resolve to "an LSP check can clear it".
649
+ *
650
+ * @returns true when an entry was retired — the caller logs it, so an
651
+ * eviction is never silent (#1432 Gap 1).
652
+ */
653
+ retireInlineBlockerOnConfirmedClean(filePath, confirmedAtWriteIndex, coveredSources) {
654
+ const key = path.resolve(filePath);
655
+ const existing = this._pendingInlineBlockers.get(key);
656
+ if (!existing)
657
+ return false;
658
+ if (existing.writeIndex !== undefined &&
659
+ confirmedAtWriteIndex !== undefined &&
660
+ confirmedAtWriteIndex <= existing.writeIndex) {
661
+ return false;
662
+ }
663
+ // Fail closed on unknown provenance, and on any source the fresh verdict
664
+ // did not consult. An eslint-origin blocker outliving an LSP-only clean is
665
+ // the correct outcome — the next dispatch of that file is what clears it.
666
+ if (!existing.sources || existing.sources.length === 0)
667
+ return false;
668
+ const covered = new Set(coveredSources ?? []);
669
+ if (!existing.sources.every((source) => covered.has(source)))
670
+ return false;
671
+ this._pendingInlineBlockers.delete(key);
672
+ return true;
673
+ }
390
674
  reconcileInlineBlockers() {
391
675
  // Rebuild, never delete-in-place: `PathKeyedMap.delete()` re-normalizes
392
676
  // the key, and `normalizeMapKey` realpaths a live file but lowercases
@@ -462,7 +746,19 @@ export class RuntimeCoordinator {
462
746
  return this._complexityBaselines;
463
747
  }
464
748
  get fixedThisTurn() {
465
- return this._fixedThisTurn;
749
+ // Self-referencing local so chained add() returns the same facade
750
+ // instead of re-entering this getter and allocating a new one per call
751
+ // (sonar S7725).
752
+ const facade = {
753
+ add: (filePath) => {
754
+ this._fixedThisTurn.set(filePath, true);
755
+ return facade;
756
+ },
757
+ has: (filePath) => this._fixedThisTurn.has(filePath),
758
+ delete: (filePath) => this._fixedThisTurn.delete(filePath),
759
+ clear: () => this._fixedThisTurn.clear(),
760
+ };
761
+ return facade;
466
762
  }
467
763
  get projectRulesScan() {
468
764
  return this._projectRulesScan;
@@ -475,39 +771,81 @@ export class RuntimeCoordinator {
475
771
  return this._readGuard;
476
772
  }
477
773
  /**
478
- * Queue `filePath` for deferred formatting at `agent_end`. Returns `true`
479
- * when this call created a NEW pending entry, `false` when it re-touched
480
- * an already-queued file. #673: the caller uses this to publish
481
- * `pilens:format:queued` only on first queue entry, so repeated edits to
482
- * the same already-queued file before `agent_end` don't spam the bus.
774
+ * Record the canonical target `tool_call` resolved for `toolCallId`
775
+ * (#1642). The paired `tool_result` claims this exactly once via
776
+ * {@link takeToolCallAttribution} instead of re-deriving a path from its
777
+ * own diff metadata.
483
778
  */
484
- deferFormat(filePath, cwd, toolName, turnStateCwd, ownerSessionId) {
779
+ recordToolCallAttribution(toolCallId, attribution) {
780
+ this._toolCallAttributions.set(toolCallId, {
781
+ ...attribution,
782
+ recordedAt: Date.now(),
783
+ });
784
+ }
785
+ /**
786
+ * One-shot claim of a previously recorded tool-call attribution. Removed
787
+ * on read: a given `tool_call`/`tool_result` pair correlates exactly once,
788
+ * and leaving it behind would let a later, unrelated `tool_result` that
789
+ * happens to reuse a stale id inherit a stranger's resolved path.
790
+ *
791
+ * An expired entry (older than `TOOL_CALL_ATTRIBUTION_TTL_MS`) is treated
792
+ * as a miss and removed rather than returned — see the constant's doc.
793
+ */
794
+ takeToolCallAttribution(toolCallId) {
795
+ const attribution = this._toolCallAttributions.get(toolCallId);
796
+ if (attribution === undefined)
797
+ return undefined;
798
+ this._toolCallAttributions.delete(toolCallId);
799
+ if (Date.now() - attribution.recordedAt > TOOL_CALL_ATTRIBUTION_TTL_MS) {
800
+ return undefined;
801
+ }
802
+ return attribution;
803
+ }
804
+ /**
805
+ * Queue one mutation kind for `filePath` at `agent_end`. Returns `true`
806
+ * when this call created a pending entry or added a new kind, and `false`
807
+ * for a same-kind re-touch. Callers publish each kind's first transition
808
+ * without spamming repeated edits before `agent_end`.
809
+ */
810
+ deferMutation(filePath, cwd, toolName, turnStateCwd, kind, ownerSessionId, originCwd) {
485
811
  const key = path.resolve(filePath);
486
812
  const now = Date.now();
487
- const existing = this._pendingDeferredFormatFiles.get(key);
813
+ const resolvedOriginCwd = originCwd ?? turnStateCwd;
814
+ const existing = this._pendingDeferredMutations.get(key);
488
815
  if (existing) {
816
+ const addedKind = !existing.kinds.has(kind);
489
817
  existing.lastTouchedAt = now;
490
818
  existing.cwd = cwd;
491
819
  existing.turnStateCwd = turnStateCwd;
492
820
  existing.toolNames.add(toolName);
821
+ existing.kinds.add(kind);
493
822
  existing.queuedTurnIndex = this._turnIndex;
494
823
  existing.ownerSessionId = ownerSessionId;
495
- return false;
824
+ existing.originCwd = resolvedOriginCwd;
825
+ return addedKind;
496
826
  }
497
- this._pendingDeferredFormatFiles.set(key, {
827
+ this._pendingDeferredMutations.set(key, {
498
828
  filePath: key,
499
829
  cwd,
500
830
  turnStateCwd,
501
831
  firstTouchedAt: now,
502
832
  lastTouchedAt: now,
503
833
  toolNames: new Set([toolName]),
834
+ kinds: new Set([kind]),
504
835
  queuedTurnIndex: this._turnIndex,
505
836
  ownerSessionId,
837
+ originCwd: resolvedOriginCwd,
506
838
  });
507
839
  return true;
508
840
  }
841
+ deferFormat(filePath, cwd, toolName, turnStateCwd, ownerSessionId, originCwd) {
842
+ return this.deferMutation(filePath, cwd, toolName, turnStateCwd, "format", ownerSessionId, originCwd);
843
+ }
509
844
  get pendingDeferredFormatCount() {
510
- return this._pendingDeferredFormatFiles.size;
845
+ return this._pendingDeferredMutations.size;
846
+ }
847
+ get pendingDeferredMutationCount() {
848
+ return this._pendingDeferredMutations.size;
511
849
  }
512
850
  /**
513
851
  * Legacy unconditional drain — still exposed for any caller that
@@ -515,8 +853,8 @@ export class RuntimeCoordinator {
515
853
  * flush call sites should prefer {@link claimDeferredFormatFiles}.
516
854
  */
517
855
  consumeDeferredFormatFiles() {
518
- const records = [...this._pendingDeferredFormatFiles.values()];
519
- this._pendingDeferredFormatFiles.clear();
856
+ const records = [...this._pendingDeferredMutations.values()];
857
+ this._pendingDeferredMutations.clear();
520
858
  return records;
521
859
  }
522
860
  /**
@@ -528,46 +866,92 @@ export class RuntimeCoordinator {
528
866
  * - otherwise (both known, and they differ) the record belongs to a
529
867
  * DIFFERENT session (e.g. a concurrent in-process secondary/subagent)
530
868
  * and is left queued for its owner's own flush — UNLESS it has sat
531
- * unclaimed longer than `staleAfterMs` (the owner presumably died),
532
- * in which case this flush claims it anyway as an orphan-recovery
533
- * fallback.
869
+ * unclaimed longer than `staleAfterMs` (the owner presumably died), in
870
+ * which case this flush claims it as an orphan-recovery fallback ONLY
871
+ * when `currentOriginCwd` (this flush's own workspace/worktree) exactly
872
+ * matches the record's `originCwd` (the cwd it was actually queued
873
+ * under, #1642 F3 — NOT `turnStateCwd`, which is always the workspace
874
+ * root by design and so would match every session unconditionally). A
875
+ * mismatch means the record belongs to a DIFFERENT checkout/worktree
876
+ * than the one now running `agent_end` — claiming it across that
877
+ * boundary is exactly how a worktree's queued edit got formatted onto
878
+ * the parent checkout in the reported incident. It is left queued
879
+ * (NOT deleted) and logged instead: a legitimate crashed-session
880
+ * orphan from, say, a monorepo subdir must still be claimable later by
881
+ * a flush whose origin actually matches, or stay visible for
882
+ * observability — deleting it here would drop it forever with no
883
+ * origin ever able to reclaim it.
534
884
  *
535
- * Returns both the claimed records and, per skipped record, why it was
536
- * left behind — callers use this for `agent_end`'s latency-log
537
- * provenance and for the "stale fallback fired" log line.
885
+ * Returns the claimed records, the left-queued mismatched-origin records,
886
+ * and per-skipped record why it was left behind — callers use this for
887
+ * `agent_end`'s latency-log provenance and for the "stale fallback
888
+ * fired"/"orphan mismatch" log lines.
538
889
  */
539
- claimDeferredFormatFiles(currentSessionId, now, staleAfterMs) {
890
+ claimDeferredFormatFiles(currentSessionId, now, staleAfterMs, currentOriginCwd) {
540
891
  const claimed = [];
541
892
  const staleClaimed = [];
542
893
  const deferredToOwner = [];
543
- for (const [key, record] of this._pendingDeferredFormatFiles) {
894
+ const droppedOrphans = [];
895
+ for (const [key, record] of this._pendingDeferredMutations) {
544
896
  const sameSession = record.ownerSessionId === undefined ||
545
897
  currentSessionId === undefined ||
546
898
  record.ownerSessionId === currentSessionId;
547
899
  if (sameSession) {
548
900
  claimed.push(record);
549
- this._pendingDeferredFormatFiles.delete(key);
901
+ this._pendingDeferredMutations.delete(key);
550
902
  continue;
551
903
  }
552
904
  const age = now - record.lastTouchedAt;
553
905
  if (age > staleAfterMs) {
554
- staleClaimed.push(record);
555
- this._pendingDeferredFormatFiles.delete(key);
906
+ // #1642 F3: origin identity is required before an orphan-recovery
907
+ // claim, not just staleness. `currentOriginCwd === undefined`
908
+ // means the caller can't state its own origin — fail-safe as
909
+ // "can't prove different" (same posture as the sameSession check
910
+ // above), not as a free pass to claim across a KNOWN mismatch.
911
+ const originMatches = currentOriginCwd === undefined ||
912
+ pathsEqual(record.originCwd, currentOriginCwd);
913
+ if (originMatches) {
914
+ this._pendingDeferredMutations.delete(key);
915
+ staleClaimed.push(record);
916
+ }
917
+ else {
918
+ // Left queued — see the doc above for why this must not be
919
+ // deleted. Reported once per claim attempt; a genuinely
920
+ // abandoned origin will keep surfacing here, which is the
921
+ // intended, safer trade-off over silent, permanent loss.
922
+ droppedOrphans.push(record);
923
+ }
556
924
  continue;
557
925
  }
558
926
  deferredToOwner.push(record);
559
927
  }
560
- return { claimed, staleClaimed, deferredToOwner };
928
+ return { claimed, staleClaimed, deferredToOwner, droppedOrphans };
561
929
  }
562
930
  /** Return claimed records that were never started by an aborted drain. */
563
931
  requeueDeferredFormatFiles(records) {
564
932
  for (const record of records) {
565
933
  const key = path.resolve(record.filePath);
566
- if (!this._pendingDeferredFormatFiles.has(key)) {
567
- this._pendingDeferredFormatFiles.set(key, record);
934
+ const existing = this._pendingDeferredMutations.get(key);
935
+ if (existing) {
936
+ for (const kind of record.kinds)
937
+ existing.kinds.add(kind);
938
+ for (const toolName of record.toolNames)
939
+ existing.toolNames.add(toolName);
940
+ continue;
568
941
  }
942
+ this._pendingDeferredMutations.set(key, {
943
+ ...record,
944
+ kinds: new Set(record.kinds),
945
+ toolNames: new Set(record.toolNames),
946
+ });
569
947
  }
570
948
  }
949
+ claimDeferredMutations(currentSessionId, now, staleAfterMs, currentOriginCwd) {
950
+ return this.claimDeferredFormatFiles(currentSessionId, now, staleAfterMs, currentOriginCwd);
951
+ }
952
+ requeueDeferredMutations(records) {
953
+ this.requeueDeferredFormatFiles(records);
954
+ }
571
955
  shouldWarmLspOnRead(filePath, maxAgeMs = 120_000) {
572
956
  const state = this._lspReadWarmState.get(path.resolve(filePath));
573
957
  if (!state)
@@ -592,3 +976,30 @@ export class RuntimeCoordinator {
592
976
  this._lspReadWarmState.delete(path.resolve(filePath));
593
977
  }
594
978
  }
979
+ /**
980
+ * Read the live model identity off a pi extension context (#1655 item 2).
981
+ *
982
+ * `ExtensionContext.model` is `AgentSession.model`, projected through a lazy
983
+ * getter guarded by `assertActive()`
984
+ * (`@earendil-works/pi-coding-agent/dist/core/extensions/runner.js:488-491`;
985
+ * `dist/core/agent-session.js:580-582`). The value is a `Model` with `id` and
986
+ * `provider` (`@earendil-works/pi-ai/dist/types.d.ts:661-667`), or `undefined`
987
+ * when no model is selected.
988
+ *
989
+ * Because the getter is lazy and guarded, reading it on a REPLACED runner
990
+ * throws. Telemetry identity is advisory; a stale ctx must degrade to "no
991
+ * identity", never take down the event handler that happened to carry it.
992
+ */
993
+ export function readHostModelIdentity(ctx) {
994
+ try {
995
+ const model = ctx
996
+ ?.model;
997
+ return {
998
+ model: typeof model?.id === "string" ? model.id : undefined,
999
+ provider: typeof model?.provider === "string" ? model.provider : undefined,
1000
+ };
1001
+ }
1002
+ catch {
1003
+ return {};
1004
+ }
1005
+ }