@herbertgao/pi-extensions 2026.9.0 → 2026.9.1

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 (293) hide show
  1. package/node_modules/@czottmann/pi-automode/CHANGELOG.md +13 -1
  2. package/node_modules/@czottmann/pi-automode/README.md +20 -0
  3. package/node_modules/@czottmann/pi-automode/docs/GLOSSARY.md +1 -1
  4. package/node_modules/@czottmann/pi-automode/docs/automode-classifier-flow.md +2 -1
  5. package/node_modules/@czottmann/pi-automode/docs/defaults.md +3 -2
  6. package/node_modules/@czottmann/pi-automode/extensions/auto-mode/classifier.ts +38 -2
  7. package/node_modules/@czottmann/pi-automode/extensions/auto-mode/constants.ts +5 -3
  8. package/node_modules/@czottmann/pi-automode/extensions/auto-mode/extension.ts +11 -3
  9. package/node_modules/@czottmann/pi-automode/package.json +1 -1
  10. package/node_modules/@pi-plugins/fast-mode/README.md +5 -3
  11. package/node_modules/@pi-plugins/fast-mode/dist/index.d.mts.map +1 -1
  12. package/node_modules/@pi-plugins/fast-mode/dist/index.mjs +20 -55
  13. package/node_modules/@pi-plugins/fast-mode/dist/index.mjs.map +1 -1
  14. package/node_modules/@pi-plugins/fast-mode/package.json +1 -1
  15. package/node_modules/pi-lens/CHANGELOG.md +988 -0
  16. package/node_modules/pi-lens/README.md +3 -0
  17. package/node_modules/pi-lens/config/biome/core.jsonc +11 -2
  18. package/node_modules/pi-lens/config/dependency-cruiser-eager-allowlist.json +13 -1
  19. package/node_modules/pi-lens/dist/clients/actionable-warnings-logger.js +2 -2
  20. package/node_modules/pi-lens/dist/clients/actionable-warnings.js +927 -80
  21. package/node_modules/pi-lens/dist/clients/agent-behavior-client.js +13 -4
  22. package/node_modules/pi-lens/dist/clients/ast-grep-client.js +123 -3
  23. package/node_modules/pi-lens/dist/clients/ast-grep-rule-manager.js +60 -5
  24. package/node_modules/pi-lens/dist/clients/ast-grep-tool-logger.js +2 -2
  25. package/node_modules/pi-lens/dist/clients/bash-file-access.js +1 -3
  26. package/node_modules/pi-lens/dist/clients/biome-client.js +9 -2
  27. package/node_modules/pi-lens/dist/clients/blocker-freshness.js +14 -0
  28. package/node_modules/pi-lens/dist/clients/bootstrap.js +509 -73
  29. package/node_modules/pi-lens/dist/clients/bounded-cache.js +152 -12
  30. package/node_modules/pi-lens/dist/clients/bounded-telemetry.js +59 -4
  31. package/node_modules/pi-lens/dist/clients/bundled-resource-health.js +113 -0
  32. package/node_modules/pi-lens/dist/clients/bus-events-logger.js +2 -2
  33. package/node_modules/pi-lens/dist/clients/cache/rule-cache.js +31 -4
  34. package/node_modules/pi-lens/dist/clients/cache-manager.js +105 -6
  35. package/node_modules/pi-lens/dist/clients/cache-observability.js +44 -18
  36. package/node_modules/pi-lens/dist/clients/cargo-manifest.js +422 -0
  37. package/node_modules/pi-lens/dist/clients/cascade-logger.js +2 -2
  38. package/node_modules/pi-lens/dist/clients/code-quality-warnings.js +13 -3
  39. package/node_modules/pi-lens/dist/clients/complexity-client.js +16 -5
  40. package/node_modules/pi-lens/dist/clients/config-core/deny.js +221 -0
  41. package/node_modules/pi-lens/dist/clients/config-core/index.js +47 -0
  42. package/node_modules/pi-lens/dist/clients/config-core/merge.js +357 -0
  43. package/node_modules/pi-lens/dist/clients/config-core/normalize.js +340 -0
  44. package/node_modules/pi-lens/dist/clients/config-core/process-spec.js +248 -0
  45. package/node_modules/pi-lens/dist/clients/config-core/provenance.js +171 -0
  46. package/node_modules/pi-lens/dist/clients/config-core/records.js +218 -0
  47. package/node_modules/pi-lens/dist/clients/config-core/resolve.js +125 -0
  48. package/node_modules/pi-lens/dist/clients/config-core/safe-object.js +78 -0
  49. package/node_modules/pi-lens/dist/clients/config-core/schema.js +167 -0
  50. package/node_modules/pi-lens/dist/clients/config-diagnostic-codes.js +281 -0
  51. package/node_modules/pi-lens/dist/clients/config-locations.js +160 -0
  52. package/node_modules/pi-lens/dist/clients/config-resolve.js +789 -0
  53. package/node_modules/pi-lens/dist/clients/config-schema.js +197 -0
  54. package/node_modules/pi-lens/dist/clients/config-warn.js +407 -0
  55. package/node_modules/pi-lens/dist/clients/dead-code-client.js +19 -14
  56. package/node_modules/pi-lens/dist/clients/dead-code-logger.js +2 -2
  57. package/node_modules/pi-lens/dist/clients/deadline-utils.js +178 -0
  58. package/node_modules/pi-lens/dist/clients/debug-handles.js +2 -2
  59. package/node_modules/pi-lens/dist/clients/debug-heap.js +3 -3
  60. package/node_modules/pi-lens/dist/clients/deferred-lsp-work.js +106 -0
  61. package/node_modules/pi-lens/dist/clients/degradation-ledger.js +113 -7
  62. package/node_modules/pi-lens/dist/clients/dependency-checker.js +8 -19
  63. package/node_modules/pi-lens/dist/clients/diagnostic-line-freshness.js +12 -9
  64. package/node_modules/pi-lens/dist/clients/diagnostic-logger.js +14 -4
  65. package/node_modules/pi-lens/dist/clients/dispatch/dispatcher.js +162 -18
  66. package/node_modules/pi-lens/dist/clients/dispatch/fact-store.js +97 -0
  67. package/node_modules/pi-lens/dist/clients/dispatch/integration.js +9 -7
  68. package/node_modules/pi-lens/dist/clients/dispatch/runners/actionlint.js +0 -1
  69. package/node_modules/pi-lens/dist/clients/dispatch/runners/ast-grep-napi.js +380 -26
  70. package/node_modules/pi-lens/dist/clients/dispatch/runners/biome-check.js +0 -1
  71. package/node_modules/pi-lens/dist/clients/dispatch/runners/cpp-check.js +0 -1
  72. package/node_modules/pi-lens/dist/clients/dispatch/runners/credo.js +0 -1
  73. package/node_modules/pi-lens/dist/clients/dispatch/runners/cue-vet.js +0 -1
  74. package/node_modules/pi-lens/dist/clients/dispatch/runners/dart-analyze.js +0 -1
  75. package/node_modules/pi-lens/dist/clients/dispatch/runners/detekt.js +0 -1
  76. package/node_modules/pi-lens/dist/clients/dispatch/runners/dotnet-build.js +0 -1
  77. package/node_modules/pi-lens/dist/clients/dispatch/runners/elixir-check.js +0 -1
  78. package/node_modules/pi-lens/dist/clients/dispatch/runners/eslint.js +0 -1
  79. package/node_modules/pi-lens/dist/clients/dispatch/runners/fact-rules.js +0 -1
  80. package/node_modules/pi-lens/dist/clients/dispatch/runners/fish-indent.js +0 -1
  81. package/node_modules/pi-lens/dist/clients/dispatch/runners/gleam-check.js +0 -1
  82. package/node_modules/pi-lens/dist/clients/dispatch/runners/go-vet.js +1 -3
  83. package/node_modules/pi-lens/dist/clients/dispatch/runners/golangci-lint.js +0 -1
  84. package/node_modules/pi-lens/dist/clients/dispatch/runners/hadolint.js +0 -1
  85. package/node_modules/pi-lens/dist/clients/dispatch/runners/helm-lint.js +0 -1
  86. package/node_modules/pi-lens/dist/clients/dispatch/runners/helm-render.js +0 -1
  87. package/node_modules/pi-lens/dist/clients/dispatch/runners/htmlhint.js +0 -1
  88. package/node_modules/pi-lens/dist/clients/dispatch/runners/javac.js +0 -1
  89. package/node_modules/pi-lens/dist/clients/dispatch/runners/ktlint.js +0 -1
  90. package/node_modules/pi-lens/dist/clients/dispatch/runners/lsp.js +0 -1
  91. package/node_modules/pi-lens/dist/clients/dispatch/runners/markdownlint.js +0 -1
  92. package/node_modules/pi-lens/dist/clients/dispatch/runners/mypy.js +0 -1
  93. package/node_modules/pi-lens/dist/clients/dispatch/runners/oxlint.js +13 -18
  94. package/node_modules/pi-lens/dist/clients/dispatch/runners/php-lint.js +0 -1
  95. package/node_modules/pi-lens/dist/clients/dispatch/runners/phpstan.js +0 -1
  96. package/node_modules/pi-lens/dist/clients/dispatch/runners/prisma-validate.js +0 -1
  97. package/node_modules/pi-lens/dist/clients/dispatch/runners/psscriptanalyzer.js +0 -1
  98. package/node_modules/pi-lens/dist/clients/dispatch/runners/pyright.js +7 -4
  99. package/node_modules/pi-lens/dist/clients/dispatch/runners/rubocop.js +0 -1
  100. package/node_modules/pi-lens/dist/clients/dispatch/runners/ruff.js +0 -1
  101. package/node_modules/pi-lens/dist/clients/dispatch/runners/rust-clippy.js +1 -3
  102. package/node_modules/pi-lens/dist/clients/dispatch/runners/shellcheck.js +0 -1
  103. package/node_modules/pi-lens/dist/clients/dispatch/runners/shfmt.js +0 -1
  104. package/node_modules/pi-lens/dist/clients/dispatch/runners/spellcheck.js +0 -1
  105. package/node_modules/pi-lens/dist/clients/dispatch/runners/spotbugs.js +0 -1
  106. package/node_modules/pi-lens/dist/clients/dispatch/runners/sqlfluff.js +0 -1
  107. package/node_modules/pi-lens/dist/clients/dispatch/runners/stylelint.js +0 -1
  108. package/node_modules/pi-lens/dist/clients/dispatch/runners/swiftlint.js +0 -1
  109. package/node_modules/pi-lens/dist/clients/dispatch/runners/taplo.js +0 -1
  110. package/node_modules/pi-lens/dist/clients/dispatch/runners/terragrunt.js +0 -1
  111. package/node_modules/pi-lens/dist/clients/dispatch/runners/tflint.js +0 -1
  112. package/node_modules/pi-lens/dist/clients/dispatch/runners/tree-sitter.js +0 -1
  113. package/node_modules/pi-lens/dist/clients/dispatch/runners/trivy-config.js +0 -1
  114. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/availability-policy.js +3 -0
  115. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/diagnostic-parsers.js +3 -4
  116. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/runner-helpers.js +194 -80
  117. package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/toolchain-availability.js +84 -15
  118. package/node_modules/pi-lens/dist/clients/dispatch/runners/vale.js +0 -1
  119. package/node_modules/pi-lens/dist/clients/dispatch/runners/yamllint.js +0 -1
  120. package/node_modules/pi-lens/dist/clients/dispatch/runners/zig-check.js +0 -1
  121. package/node_modules/pi-lens/dist/clients/disposition-logger.js +3 -3
  122. package/node_modules/pi-lens/dist/clients/effective-config.js +403 -0
  123. package/node_modules/pi-lens/dist/clients/error-class.js +23 -0
  124. package/node_modules/pi-lens/dist/clients/event-loop-hold.js +274 -0
  125. package/node_modules/pi-lens/dist/clients/extension-log.js +2 -2
  126. package/node_modules/pi-lens/dist/clients/feature-hints.js +2 -1
  127. package/node_modules/pi-lens/dist/clients/file-time.js +6 -1
  128. package/node_modules/pi-lens/dist/clients/file-utils.js +112 -9
  129. package/node_modules/pi-lens/dist/clients/finding-delivery-gate.js +50 -13
  130. package/node_modules/pi-lens/dist/clients/format-service.js +6 -1
  131. package/node_modules/pi-lens/dist/clients/formatters.js +276 -102
  132. package/node_modules/pi-lens/dist/clients/freshness-cadence.js +17 -0
  133. package/node_modules/pi-lens/dist/clients/generated-artifacts.js +114 -19
  134. package/node_modules/pi-lens/dist/clients/generation-guard.js +4 -9
  135. package/node_modules/pi-lens/dist/clients/git-guard.js +1 -1
  136. package/node_modules/pi-lens/dist/clients/go-client.js +39 -0
  137. package/node_modules/pi-lens/dist/clients/gradle-ktfmt-style.js +252 -0
  138. package/node_modules/pi-lens/dist/clients/hashline-anchor.js +424 -0
  139. package/node_modules/pi-lens/dist/clients/hook-budgets.js +76 -0
  140. package/node_modules/pi-lens/dist/clients/host-edit-normalize.js +5 -2
  141. package/node_modules/pi-lens/dist/clients/host-ports.js +1 -1
  142. package/node_modules/pi-lens/dist/clients/installer/index.js +71 -52
  143. package/node_modules/pi-lens/dist/clients/instance-reaper.js +104 -230
  144. package/node_modules/pi-lens/dist/clients/instance-registry.js +6 -3
  145. package/node_modules/pi-lens/dist/clients/language-registry.js +595 -0
  146. package/node_modules/pi-lens/dist/clients/latency-logger.js +160 -2
  147. package/node_modules/pi-lens/dist/clients/ledger-bounds.js +13 -0
  148. package/node_modules/pi-lens/dist/clients/lens-config.js +141 -30
  149. package/node_modules/pi-lens/dist/clients/lens-engine.js +30 -37
  150. package/node_modules/pi-lens/dist/clients/lens-flag-registry.js +59 -6
  151. package/node_modules/pi-lens/dist/clients/log-cleanup.js +2 -2
  152. package/node_modules/pi-lens/dist/clients/lsp/aggregation.js +3 -1
  153. package/node_modules/pi-lens/dist/clients/lsp/client.js +168 -30
  154. package/node_modules/pi-lens/dist/clients/lsp/config.js +483 -158
  155. package/node_modules/pi-lens/dist/clients/lsp/diagnostic-binding.js +1 -1
  156. package/node_modules/pi-lens/dist/clients/lsp/edits.js +15 -2
  157. package/node_modules/pi-lens/dist/clients/lsp/index.js +676 -71
  158. package/node_modules/pi-lens/dist/clients/lsp/language.js +18 -169
  159. package/node_modules/pi-lens/dist/clients/lsp/launch.js +2 -1
  160. package/node_modules/pi-lens/dist/clients/lsp/pending-aux-coverage.js +5 -16
  161. package/node_modules/pi-lens/dist/clients/lsp/server.js +284 -147
  162. package/node_modules/pi-lens/dist/clients/lsp/session-roots.js +116 -23
  163. package/node_modules/pi-lens/dist/clients/lsp/spawn-history.js +2 -7
  164. package/node_modules/pi-lens/dist/clients/lsp/tsserver-sync.js +9 -2
  165. package/node_modules/pi-lens/dist/clients/lsp/workspace-diagnostics-cache.js +1 -1
  166. package/node_modules/pi-lens/dist/clients/lsp-mutation.js +163 -21
  167. package/node_modules/pi-lens/dist/clients/map-with-concurrency.js +36 -0
  168. package/node_modules/pi-lens/dist/clients/mcp/analyze.js +33 -4
  169. package/node_modules/pi-lens/dist/clients/mcp/session.js +5 -16
  170. package/node_modules/pi-lens/dist/clients/memory-sampler.js +8 -3
  171. package/node_modules/pi-lens/dist/clients/middle-man-analysis.js +2 -4
  172. package/node_modules/pi-lens/dist/clients/module-report.js +20 -45
  173. package/node_modules/pi-lens/dist/clients/mutating-tool.js +651 -0
  174. package/node_modules/pi-lens/dist/clients/mutation-attribution.js +368 -0
  175. package/node_modules/pi-lens/dist/clients/mutation-bridge.js +240 -0
  176. package/node_modules/pi-lens/dist/clients/ndjson-logger.js +247 -20
  177. package/node_modules/pi-lens/dist/clients/observed-mutation-sources.js +101 -0
  178. package/node_modules/pi-lens/dist/clients/observed-mutation.js +1215 -0
  179. package/node_modules/pi-lens/dist/clients/opaque-mutation-scan.js +68 -22
  180. package/node_modules/pi-lens/dist/clients/opengrep-config.js +4 -0
  181. package/node_modules/pi-lens/dist/clients/package-manager.js +195 -26
  182. package/node_modules/pi-lens/dist/clients/partial-edit-apply.js +359 -80
  183. package/node_modules/pi-lens/dist/clients/path-attribution-telemetry.js +23 -7
  184. package/node_modules/pi-lens/dist/clients/path-keyed-map.js +21 -2
  185. package/node_modules/pi-lens/dist/clients/path-utils.js +428 -13
  186. package/node_modules/pi-lens/dist/clients/persist-debounce.js +8 -1
  187. package/node_modules/pi-lens/dist/clients/php-cs-fixer-config.js +114 -0
  188. package/node_modules/pi-lens/dist/clients/pipeline.js +77 -16
  189. package/node_modules/pi-lens/dist/clients/probe-home-state.js +228 -0
  190. package/node_modules/pi-lens/dist/clients/process-bridge.js +66 -0
  191. package/node_modules/pi-lens/dist/clients/process-snapshot.js +68 -0
  192. package/node_modules/pi-lens/dist/clients/project-diagnostics/fresh-fetch.js +4 -3
  193. package/node_modules/pi-lens/dist/clients/project-diagnostics/runner-adapters/runner-findings.js +27 -3
  194. package/node_modules/pi-lens/dist/clients/project-diagnostics/scanner.js +51 -20
  195. package/node_modules/pi-lens/dist/clients/project-lens-config.js +393 -122
  196. package/node_modules/pi-lens/dist/clients/project-snapshot.js +52 -24
  197. package/node_modules/pi-lens/dist/clients/python-environment.js +217 -0
  198. package/node_modules/pi-lens/dist/clients/python-provenance.js +639 -0
  199. package/node_modules/pi-lens/dist/clients/quiet-window.js +6 -1
  200. package/node_modules/pi-lens/dist/clients/read-bridge.js +13 -21
  201. package/node_modules/pi-lens/dist/clients/read-expansion.js +9 -46
  202. package/node_modules/pi-lens/dist/clients/read-guard-logger.js +15 -4
  203. package/node_modules/pi-lens/dist/clients/read-guard-tool-lines.js +364 -212
  204. package/node_modules/pi-lens/dist/clients/read-guard.js +21 -0
  205. package/node_modules/pi-lens/dist/clients/resource-sampler.js +195 -96
  206. package/node_modules/pi-lens/dist/clients/review-graph/builder.js +152 -109
  207. package/node_modules/pi-lens/dist/clients/review-graph/service.js +55 -3
  208. package/node_modules/pi-lens/dist/clients/review-graph/shared-extraction-ir.js +7 -15
  209. package/node_modules/pi-lens/dist/clients/review-graph/workspace-modules.js +10 -74
  210. package/node_modules/pi-lens/dist/clients/review-graph-logger.js +9 -3
  211. package/node_modules/pi-lens/dist/clients/runtime-agent-end.js +18 -2
  212. package/node_modules/pi-lens/dist/clients/runtime-context.js +49 -16
  213. package/node_modules/pi-lens/dist/clients/runtime-coordinator.js +25 -6
  214. package/node_modules/pi-lens/dist/clients/runtime-session.js +139 -22
  215. package/node_modules/pi-lens/dist/clients/runtime-tool-call.js +168 -35
  216. package/node_modules/pi-lens/dist/clients/runtime-tool-result.js +797 -243
  217. package/node_modules/pi-lens/dist/clients/runtime-turn.js +1028 -53
  218. package/node_modules/pi-lens/dist/clients/rust-client.js +31 -0
  219. package/node_modules/pi-lens/dist/clients/safe-spawn.js +33 -10
  220. package/node_modules/pi-lens/dist/clients/sanitize.js +7 -1
  221. package/node_modules/pi-lens/dist/clients/scratch-tree-policy.js +1 -3
  222. package/node_modules/pi-lens/dist/clients/security-scan-client.js +3 -0
  223. package/node_modules/pi-lens/dist/clients/session-lifecycle.js +1 -1
  224. package/node_modules/pi-lens/dist/clients/session-start-observability.js +79 -0
  225. package/node_modules/pi-lens/dist/clients/sessionstart-logger.js +12 -3
  226. package/node_modules/pi-lens/dist/clients/sgconfig.js +6 -1
  227. package/node_modules/pi-lens/dist/clients/skills-resolver.js +105 -0
  228. package/node_modules/pi-lens/dist/clients/smells-rollup.js +2 -2
  229. package/node_modules/pi-lens/dist/clients/string-utils.js +13 -0
  230. package/node_modules/pi-lens/dist/clients/subagent-mode.js +17 -4
  231. package/node_modules/pi-lens/dist/clients/test-runner-client.js +176 -39
  232. package/node_modules/pi-lens/dist/clients/test-runner-delivery.js +239 -0
  233. package/node_modules/pi-lens/dist/clients/tool-definition.js +41 -1
  234. package/node_modules/pi-lens/dist/clients/tool-policy.js +91 -21
  235. package/node_modules/pi-lens/dist/clients/tree-sitter-cache.js +40 -40
  236. package/node_modules/pi-lens/dist/clients/tree-sitter-client.js +86 -48
  237. package/node_modules/pi-lens/dist/clients/tree-sitter-logger.js +2 -2
  238. package/node_modules/pi-lens/dist/clients/tree-sitter-query-loader.js +81 -1
  239. package/node_modules/pi-lens/dist/clients/tree-sitter-shared.js +51 -46
  240. package/node_modules/pi-lens/dist/clients/tree-sitter-symbol-extractor.js +28 -0
  241. package/node_modules/pi-lens/dist/clients/typos-config.js +5 -0
  242. package/node_modules/pi-lens/dist/clients/user-notify.js +6 -2
  243. package/node_modules/pi-lens/dist/clients/widget-state.js +191 -26
  244. package/node_modules/pi-lens/dist/clients/word-index-logger.js +2 -2
  245. package/node_modules/pi-lens/dist/clients/word-index-store.js +20 -5
  246. package/node_modules/pi-lens/dist/clients/word-index.js +243 -31
  247. package/node_modules/pi-lens/dist/clients/workspace-topology.js +8 -1
  248. package/node_modules/pi-lens/dist/clients/zizmor-config.js +3 -0
  249. package/node_modules/pi-lens/dist/index.js +64335 -54300
  250. package/node_modules/pi-lens/dist/mcp/analyze-cli.js +3 -1
  251. package/node_modules/pi-lens/dist/mcp/server.js +127 -5
  252. package/node_modules/pi-lens/dist/scripts/lib/process-scan.mjs +583 -0
  253. package/node_modules/pi-lens/dist/scripts/lib/skills-predicate.mjs +129 -0
  254. package/node_modules/pi-lens/dist/tools/effective-config.js +89 -0
  255. package/node_modules/pi-lens/dist/tools/lens-diagnostics.js +95 -24
  256. package/node_modules/pi-lens/dist/tools/lsp-diagnostics.js +67 -80
  257. package/node_modules/pi-lens/dist/tools/lsp-navigation.js +37 -16
  258. package/node_modules/pi-lens/dist/tools/shared.js +0 -1
  259. package/node_modules/pi-lens/docs/agent-guide.md +64 -1
  260. package/node_modules/pi-lens/docs/configuration.md +222 -0
  261. package/node_modules/pi-lens/docs/dependencies.md +3 -3
  262. package/node_modules/pi-lens/docs/features.md +44 -5
  263. package/node_modules/pi-lens/docs/language-coverage.md +2 -2
  264. package/node_modules/pi-lens/docs/pi-lens-fixer.md +25 -0
  265. package/node_modules/pi-lens/docs/pi-lens-investigator.md +25 -0
  266. package/node_modules/pi-lens/docs/pi-lens-reviewer.md +27 -0
  267. package/node_modules/pi-lens/docs/pi-lens-subagent.md +38 -0
  268. package/node_modules/pi-lens/docs/pi-lens-warden.md +55 -0
  269. package/node_modules/pi-lens/docs/public-api-stability.md +359 -0
  270. package/node_modules/pi-lens/docs/release-qa-baseline.md +182 -0
  271. package/node_modules/pi-lens/docs/subagent-compat.md +110 -30
  272. package/node_modules/pi-lens/docs/tree-sitter_rules_catalog.md +2 -2
  273. package/node_modules/pi-lens/package.json +15 -23
  274. package/node_modules/pi-lens/rules/tree-sitter-queries/python/python-cross-language-method.yml +3 -3
  275. package/node_modules/pi-lens/rules/tree-sitter-queries/python/python-hallucinated-import.yml +2 -2
  276. package/node_modules/pi-lens/rules/tree-sitter-queries/python/python-sql-injection.yml +12 -2
  277. package/node_modules/pi-lens/scripts/analyze-pi-lens-logs.mjs +192 -1
  278. package/node_modules/pi-lens/scripts/install-selftest.mjs +58 -2
  279. package/node_modules/pi-lens/scripts/lib/skills-predicate.mjs +129 -0
  280. package/node_modules/pi-lens/scripts/rpc-load-check.mjs +3 -1
  281. package/node_modules/pi-web-access/CHANGELOG.md +28 -0
  282. package/node_modules/pi-web-access/README.md +62 -15
  283. package/node_modules/pi-web-access/curator-page.ts +3 -1
  284. package/node_modules/pi-web-access/curator-server.ts +5 -1
  285. package/node_modules/pi-web-access/gemini-search.ts +8 -4
  286. package/node_modules/pi-web-access/github-extract.ts +242 -1
  287. package/node_modules/pi-web-access/index.ts +118 -64
  288. package/node_modules/pi-web-access/mistral-search.ts +281 -0
  289. package/node_modules/pi-web-access/package.json +2 -2
  290. package/node_modules/pi-web-access/perplexity.ts +14 -1
  291. package/node_modules/pi-web-access/utils.ts +23 -6
  292. package/node_modules/pi-web-access/xai-search.ts +96 -33
  293. package/package.json +5 -5
@@ -0,0 +1,368 @@
1
+ /**
2
+ * Learned mutation attribution for tools pi-lens cannot classify (#2430).
3
+ *
4
+ * ## Why this module exists
5
+ *
6
+ * `clients/mutating-tool.ts` recognizes a mutation by NAME (pi's built-ins) or
7
+ * by input SHAPE (the adapter registry). The population of third-party edit
8
+ * tools is open-ended, so neither tier can ever be complete: a tool called
9
+ * `patch_file` taking `{target, body}` matches nothing and is dropped before
10
+ * the first bookkeeping call.
11
+ *
12
+ * `clients/observed-mutation.ts` closes that by WATCHING — it snapshots a
13
+ * bounded file set around an unclassified call and diffs it afterwards. This
14
+ * module is the memory of what that watching learned, so the observation is
15
+ * paid for at most twice per tool instead of on every call:
16
+ *
17
+ * - **First** observed mutation after tool X: `X -> mutating` for this SESSION,
18
+ * plus one `unclassified-mutating-tool` degradation record naming X, so the
19
+ * registry gap is visible rather than silent.
20
+ * - **Second**: the attribution is PERSISTED under `getProjectDataDir(cwd)`, so
21
+ * a later session on the same project classifies X by name with no snapshot
22
+ * at all.
23
+ *
24
+ * The dual also matters: a tool observed to change NOTHING twice stops being
25
+ * armed for the rest of the session. Without that, every `read`-shaped tool
26
+ * carrying a `path` field would pay for a snapshot on every single call, which
27
+ * is exactly the hot-path cost the net must not have. The settled sweep
28
+ * (#2430 item 3) remains the last-resort net for anything this latch stops
29
+ * watching.
30
+ *
31
+ * ## Lifetimes (catalog shape 17, shape 25)
32
+ *
33
+ * The session map and the loaded persisted set are SESSION state and are
34
+ * cleared by `resetMutationAttribution` from the `runtime-session.ts` reset
35
+ * block; `tests/support/session-state-registry.ts` registers them. The
36
+ * container lives in a process singleton, because a second module evaluation
37
+ * holding its own copy would re-emit the degradation record and re-write the
38
+ * persisted file from a stale view (catalog shape 25).
39
+ */
40
+ import * as fs from "node:fs";
41
+ import * as path from "node:path";
42
+ import { writeFileAtomic } from "./atomic-write.js";
43
+ import { recordDegradationOnce } from "./degradation-ledger.js";
44
+ import { BoundedFifoMap } from "./bounded-cache.js";
45
+ import { getProjectDataDir } from "./file-utils.js";
46
+ import { getProcessSingleton } from "./process-singletons.js";
47
+ /** Persisted-file schema version. A file of any other version is ignored. */
48
+ export const MUTATION_ATTRIBUTION_FILE_VERSION = 1;
49
+ /** File under `getProjectDataDir(cwd)` holding the learned attributions. */
50
+ export const MUTATION_ATTRIBUTION_FILE = "observed-mutating-tools.json";
51
+ /**
52
+ * Observations needed before an attribution is written to disk. One is enough
53
+ * to classify for THIS session (the observation itself proved it); a second is
54
+ * required before the claim outlives the session, so a single coincidental
55
+ * co-occurrence — an unrelated tool call that happened to overlap a background
56
+ * write — cannot durably mislabel a tool for every future session.
57
+ */
58
+ export const PERSIST_AFTER_OBSERVATIONS = 2;
59
+ /**
60
+ * Consecutive clean observations after which an UNATTRIBUTED tool stops being
61
+ * armed for the session. Two, not one: a mutating tool whose FIRST call
62
+ * happened to be a no-op (an edit that changed nothing) still gets a second
63
+ * chance.
64
+ */
65
+ export const CLEAN_OBSERVATION_ARM_LIMIT = 2;
66
+ /**
67
+ * Consecutive clean observations after which a SESSION-learned attribution is
68
+ * forgotten (#2449 review round 2, F4).
69
+ *
70
+ * The session map is a claim about a tool made from ONE disk observation, and
71
+ * a claim made from evidence has to be revisable by evidence. Three armed
72
+ * observations in a row where the tool's own target did not move is the
73
+ * signal that the first observation was a coincidence — a background write, a
74
+ * formatter, another agent — and the tool goes back to unattributed rather
75
+ * than staying mislabelled for the rest of the session.
76
+ *
77
+ * CONSECUTIVE is literal, and it is the run tracked by `ToolObservation.cleanRun`
78
+ * rather than the lifetime `clean` total (#2449 review round 3, S4): an
79
+ * observation the net could not COMPLETE — a truncated directory watch, a cut
80
+ * capture — is not evidence of cleanliness, so it breaks the run instead of
81
+ * voting in it.
82
+ *
83
+ * Higher than {@link CLEAN_OBSERVATION_ARM_LIMIT} on purpose: forgetting is
84
+ * the more consequential direction, so it takes strictly more evidence than
85
+ * merely deciding to stop watching. It applies only BEFORE persistence — an
86
+ * attribution that already earned {@link PERSIST_AFTER_OBSERVATIONS} is not
87
+ * armed any more, so nothing can un-learn it by accident.
88
+ */
89
+ export const DEATTRIBUTE_AFTER_CLEAN_OBSERVATIONS = 3;
90
+ /** Bound on distinct tool names remembered, in-memory and on disk. */
91
+ export const MUTATION_ATTRIBUTION_MAX_TOOLS = 64;
92
+ const ATTRIBUTION_FAMILY = "mutation-attribution";
93
+ /**
94
+ * Bumped to 2 (#2449 review round 5, F3): `session` changed shape from a
95
+ * plain `Map` to a `BoundedFifoMap` without a version bump at the time, so a
96
+ * cell built by an older process (still alive in a multi-agent session, or
97
+ * surviving a hot reload) is adopted here as if it already had the newer
98
+ * shape. `getProcessSingleton`'s adoption check only compares the version
99
+ * NUMBER — it has no way to see that a v1 cell's `session` lacks
100
+ * `entriesArray()` — so every read of it throws, and there is no fallback:
101
+ * the mismatch is discovered mid-call, not at adoption (reviewer PROBE-A).
102
+ * The version bump makes `getProcessSingleton` discard the old-shaped cell
103
+ * and rebuild fresh instead of handing out a value this build cannot use.
104
+ */
105
+ const ATTRIBUTION_VERSION = 2;
106
+ function state() {
107
+ return getProcessSingleton(ATTRIBUTION_FAMILY, ATTRIBUTION_VERSION, () => ({
108
+ session: new BoundedFifoMap(MUTATION_ATTRIBUTION_MAX_TOOLS),
109
+ fromDisk: undefined,
110
+ primedCwd: undefined,
111
+ }));
112
+ }
113
+ function observationFor(toolName) {
114
+ const current = state().session.get(toolName);
115
+ if (current)
116
+ return current;
117
+ const created = {
118
+ mutating: 0,
119
+ clean: 0,
120
+ cleanRun: 0,
121
+ unverifiable: 0,
122
+ persisted: false,
123
+ };
124
+ state().session.set(toolName, created);
125
+ return created;
126
+ }
127
+ function attributionFilePath(cwd) {
128
+ return path.join(getProjectDataDir(cwd), MUTATION_ATTRIBUTION_FILE);
129
+ }
130
+ function isPersistedEntry(entry) {
131
+ const candidate = entry;
132
+ return (typeof candidate?.name === "string" &&
133
+ candidate.name.length > 0 &&
134
+ typeof candidate.observations === "number");
135
+ }
136
+ function readPersisted(cwd) {
137
+ try {
138
+ const raw = fs.readFileSync(attributionFilePath(cwd), "utf-8");
139
+ const parsed = JSON.parse(raw);
140
+ if (parsed?.version !== MUTATION_ATTRIBUTION_FILE_VERSION)
141
+ return undefined;
142
+ if (!Array.isArray(parsed.tools))
143
+ return undefined;
144
+ return {
145
+ version: MUTATION_ATTRIBUTION_FILE_VERSION,
146
+ tools: parsed.tools
147
+ .filter(isPersistedEntry)
148
+ .slice(0, MUTATION_ATTRIBUTION_MAX_TOOLS)
149
+ .map((entry) => ({
150
+ name: entry.name,
151
+ observations: entry.observations,
152
+ lastSeen: typeof entry.lastSeen === "number" ? entry.lastSeen : 0,
153
+ })),
154
+ };
155
+ }
156
+ catch {
157
+ // Missing or corrupt file: start with nothing learned. Never throw — a
158
+ // broken attribution file must not break a session.
159
+ return undefined;
160
+ }
161
+ }
162
+ /**
163
+ * Adopt this project's persisted attributions. Called once from the
164
+ * `session_start` reset block, AFTER `resetMutationAttribution`, so a session
165
+ * classifies a tool a previous session learned about with no snapshot.
166
+ *
167
+ * Synchronous by design: `classifyMutatingTool` is synchronous and on the
168
+ * tool-event hot path, so the file is read once at a session boundary rather
169
+ * than lazily from inside classification.
170
+ */
171
+ export function primePersistedMutationAttribution(cwd) {
172
+ const current = state();
173
+ current.primedCwd = cwd;
174
+ current.fromDisk = new Set();
175
+ if (!cwd)
176
+ return;
177
+ const file = readPersisted(cwd);
178
+ if (!file)
179
+ return;
180
+ for (const entry of file.tools)
181
+ current.fromDisk.add(entry.name);
182
+ }
183
+ /**
184
+ * `"session"` or `"persisted"` when this tool has been attributed as mutating,
185
+ * `undefined` otherwise. This is the lookup `classifyMutatingTool` consults for
186
+ * its `provenance: "learned"` branch.
187
+ */
188
+ export function lookupLearnedMutatingTool(toolName) {
189
+ const current = state();
190
+ if ((current.session.get(toolName)?.mutating ?? 0) > 0)
191
+ return "session";
192
+ return current.fromDisk?.has(toolName) === true ? "persisted" : undefined;
193
+ }
194
+ /**
195
+ * Whether a SESSION attribution exists but has not yet earned persistence.
196
+ *
197
+ * This is the window in which the tool IS classified by name (so #2430's
198
+ * second acceptance criterion holds) and is STILL watched, because the second
199
+ * observation that makes the attribution durable can only come from another
200
+ * real disk diff. `runtime-tool-call.ts` consults this alongside
201
+ * `classifyMutatingTool` when deciding whether to arm.
202
+ */
203
+ export function isProvisionalLearnedAttribution(toolName) {
204
+ const current = state();
205
+ if (current.fromDisk?.has(toolName) === true)
206
+ return false;
207
+ const observation = current.session.get(toolName);
208
+ if (!observation || observation.persisted)
209
+ return false;
210
+ return (observation.mutating > 0 &&
211
+ observation.mutating < PERSIST_AFTER_OBSERVATIONS);
212
+ }
213
+ /**
214
+ * Whether a call to `toolName` should still pay for a snapshot.
215
+ *
216
+ * Three states, in order:
217
+ *
218
+ * 1. **Attributed durably** — persisted this session, or adopted from disk at
219
+ * `session_start`. Never armed: classification no longer needs the diff.
220
+ * 2. **Attributed provisionally** — one observation, not yet persisted. STILL
221
+ * armed. The first cut returned `false` the moment
222
+ * `lookupLearnedMutatingTool` went non-`undefined`, which is after ONE
223
+ * observation, so `PERSIST_AFTER_OBSERVATIONS = 2` was unreachable on the
224
+ * production path and no attribution ever reached disk (#2449 review round
225
+ * 2, F2). The only test that "proved" persistence called
226
+ * `noteObservedMutation` directly, so it proved the counter, not the path.
227
+ * 3. **Unattributed** — armed until observed clean
228
+ * {@link CLEAN_OBSERVATION_ARM_LIMIT} times (it is not an edit tool, and
229
+ * re-proving that on every call is the hot-path cost this latch removes).
230
+ */
231
+ export function shouldArmObservationForTool(toolName) {
232
+ const observation = state().session.get(toolName);
233
+ if ((observation?.mutating ?? 0) > 0)
234
+ return isProvisionalLearnedAttribution(toolName);
235
+ if (state().fromDisk?.has(toolName) === true)
236
+ return false;
237
+ return (observation?.clean ?? 0) < CLEAN_OBSERVATION_ARM_LIMIT;
238
+ }
239
+ /**
240
+ * Record that a mutation was observed after `toolName` ran.
241
+ *
242
+ * Emits ONE `unclassified-mutating-tool` degradation per tool (the ledger's
243
+ * own once-key does the deduping), so a session report names every tool whose
244
+ * edits pi-lens could only find by watching the disk.
245
+ */
246
+ export function noteObservedMutation(toolName, cwd) {
247
+ const observation = observationFor(toolName);
248
+ observation.mutating += 1;
249
+ observation.clean = 0;
250
+ observation.cleanRun = 0;
251
+ recordDegradationOnce({
252
+ kind: "unclassified-mutating-tool",
253
+ subject: toolName,
254
+ reason: "tool mutated a tracked file but matched no built-in name and no mutation shape adapter; classified by disk observation (#2430)",
255
+ });
256
+ let persisted = false;
257
+ if (observation.mutating >= PERSIST_AFTER_OBSERVATIONS &&
258
+ !observation.persisted) {
259
+ persisted = persistAttribution(toolName, cwd, observation.mutating);
260
+ observation.persisted = persisted;
261
+ }
262
+ return { observations: observation.mutating, persisted };
263
+ }
264
+ /**
265
+ * Record that an armed observation found the tool's own target unchanged.
266
+ *
267
+ * Also the DE-ATTRIBUTION point (#2449 review round 2, F4). A session
268
+ * attribution that then goes {@link DEATTRIBUTE_AFTER_CLEAN_OBSERVATIONS}
269
+ * consecutive armed observations without its target moving is withdrawn: the
270
+ * one observation behind it was a coincidence, and leaving it standing would
271
+ * keep a read-shaped tool labelled as mutating for the rest of the session.
272
+ *
273
+ * Withdrawing resets BOTH counters (#2449 review round 3, S4). The first cut
274
+ * zeroed `mutating` and left `clean` at three, which is a state no evidence
275
+ * can leave: `shouldArmObservationForTool` reads three cleans as "not worth
276
+ * watching", so the tool was never armed again and therefore could never be
277
+ * RE-learned — a terminal verdict reached from three no-ops, dressed up as a
278
+ * revisable one. Zeroing both puts the tool back exactly where it started, and
279
+ * that is bounded, not unbounded: two more cleans latch the watching off again
280
+ * through the ordinary {@link CLEAN_OBSERVATION_ARM_LIMIT} path, and only a
281
+ * real disk diff re-attributes it.
282
+ */
283
+ export function noteObservedClean(toolName) {
284
+ const observation = observationFor(toolName);
285
+ observation.clean += 1;
286
+ observation.cleanRun += 1;
287
+ if (observation.mutating > 0 &&
288
+ !observation.persisted &&
289
+ observation.cleanRun >= DEATTRIBUTE_AFTER_CLEAN_OBSERVATIONS) {
290
+ observation.mutating = 0;
291
+ observation.clean = 0;
292
+ observation.cleanRun = 0;
293
+ }
294
+ }
295
+ /**
296
+ * Record that an armed observation could not be COMPLETED (#2449 review round
297
+ * 3, S3/S4): the tool named a directory wider than the net may watch, or a
298
+ * bound cut the capture short.
299
+ *
300
+ * This is deliberately neither a clean nor a mutating observation. It does not
301
+ * advance {@link CLEAN_OBSERVATION_ARM_LIMIT}, because "we stopped looking" is
302
+ * not evidence the tool changes nothing — scoring it as clean is exactly how a
303
+ * real codemod over an 84-entry directory de-attributed itself. And it BREAKS
304
+ * the de-attribution run, because three-in-a-row means three, not two plus a
305
+ * shrug.
306
+ *
307
+ * The cost that buys: a tool whose target is permanently too wide stays armed
308
+ * for the session. That is bounded per call (one `readdir` plus at most
309
+ * {@link MUTATION_ATTRIBUTION_MAX_TOOLS}-independent
310
+ * `OBSERVED_TARGET_DIR_MAX_ENTRIES` stat/hash pairs) and bounded per turn by
311
+ * the net's own wall-clock budget, and it is the direction that loses a little
312
+ * time rather than a real mutation.
313
+ */
314
+ export function noteObservedUnverifiable(toolName) {
315
+ const observation = observationFor(toolName);
316
+ observation.unverifiable += 1;
317
+ observation.cleanRun = 0;
318
+ }
319
+ function persistAttribution(toolName, cwd, observations) {
320
+ const root = cwd ?? state().primedCwd;
321
+ if (!root)
322
+ return false;
323
+ try {
324
+ const existing = readPersisted(root) ?? {
325
+ version: MUTATION_ATTRIBUTION_FILE_VERSION,
326
+ tools: [],
327
+ };
328
+ const tools = existing.tools.filter((entry) => entry.name !== toolName);
329
+ tools.push({ name: toolName, observations, lastSeen: Date.now() });
330
+ // Oldest-first drop keeps the cap honest without a second data structure.
331
+ tools.sort((a, b) => a.lastSeen - b.lastSeen);
332
+ const bounded = tools.slice(-MUTATION_ATTRIBUTION_MAX_TOOLS);
333
+ const dir = getProjectDataDir(root);
334
+ fs.mkdirSync(dir, { recursive: true });
335
+ writeFileAtomic(path.join(dir, MUTATION_ATTRIBUTION_FILE), JSON.stringify({
336
+ version: MUTATION_ATTRIBUTION_FILE_VERSION,
337
+ tools: bounded,
338
+ }));
339
+ state().fromDisk?.add(toolName);
340
+ return true;
341
+ }
342
+ catch {
343
+ // Persistence is an optimization for LATER sessions; this session already
344
+ // has the attribution in memory, so a failed write must not break it.
345
+ return false;
346
+ }
347
+ }
348
+ /**
349
+ * Session boundary (#2430). Clears the learned map and the adopted disk set so
350
+ * a new session re-primes from disk instead of inheriting the previous
351
+ * project's attributions — a `pi --session` switch can change project root.
352
+ */
353
+ export function resetMutationAttribution() {
354
+ const current = state();
355
+ current.session.clear();
356
+ current.fromDisk = undefined;
357
+ current.primedCwd = undefined;
358
+ }
359
+ /** Test seam: the learned map, as plain data. */
360
+ export function _mutationAttributionSnapshotForTests() {
361
+ const current = state();
362
+ return {
363
+ session: current.session
364
+ .entriesArray()
365
+ .map(([name, obs]) => [name, { ...obs }]),
366
+ fromDisk: current.fromDisk ? [...current.fromDisk] : undefined,
367
+ };
368
+ }
@@ -0,0 +1,240 @@
1
+ /**
2
+ * Generic mutation-recording bridge for pi-lens (#2423).
3
+ *
4
+ * ## Trust model — explicitly advisory
5
+ *
6
+ * Sibling of `clients/read-bridge.ts` and it inherits that module's trust
7
+ * model verbatim: any code sharing this Node.js process already has full access
8
+ * to pi-lens's internal state, so the bridge is not a security boundary. What
9
+ * it provides is a stable API surface, one place for flag and scope checks, and
10
+ * defensive validation that catches integration bugs early.
11
+ *
12
+ * ## What it is for
13
+ *
14
+ * `clients/mutating-tool.ts` classifies mutations pi-lens SEES as tool events.
15
+ * A producer that writes a file some other way — a co-process extension with
16
+ * its own registered tool, or pi-lens's own `ast_grep_replace` running
17
+ * `--update-all` — is invisible to that path. It records the mutation here
18
+ * instead, and the same downstream bookkeeping runs: read-guard staleness
19
+ * stamp, turn-state modified ranges, an attributed change-log receipt, and a
20
+ * DEFERRED autofix and format pass at `agent_settled`.
21
+ *
22
+ * Deferred, not immediate, is deliberate: a bulk rewrite usually touches many
23
+ * files, and formatting each one as it lands fights the producer that is still
24
+ * writing.
25
+ *
26
+ * Protocol (producer side)
27
+ * ────────────────────────
28
+ *
29
+ * const bridge = (globalThis as any)[Symbol.for("pi-lens:mutation-bridge")];
30
+ * bridge?.recordMutation({
31
+ * filePath, // absolute path
32
+ * kind, // "write" (whole file authored) or "edit" (part changed)
33
+ * touchedLines, // optional [start, end], 1-based inclusive
34
+ * editRanges, // optional [start, end][] for a scattered multi-range edit
35
+ * consumer, // optional identifier, e.g. "my-extension"
36
+ * });
37
+ *
38
+ * Check `bridge.version` before calling. A bridge whose version you do not
39
+ * recognize is unsupported. Calling before pi-lens is loaded, or when the guard
40
+ * is disabled, is safe: the bridge is absent or the call is dropped.
41
+ *
42
+ * `recordMutation` returns `true` when pi-lens took the record and `false` when
43
+ * it dropped it (malformed payload, out-of-scope path, or a bookkeeping error),
44
+ * so a producer can count its own drops.
45
+ *
46
+ * Protocol (registration side, internal to pi-lens)
47
+ * ──────────────────────────────────────────────────
48
+ * `registerMutationBridge` is called once from the extension factory, next to
49
+ * `registerReadBridge`, behind a module-level singleton guard so factory
50
+ * re-activations do not mount a second bridge. Every dep is a GETTER resolved
51
+ * at call time, so a replaced runtime or cache manager is picked up without
52
+ * re-registration — the same live-getter discipline the read bridge uses.
53
+ */
54
+ import { classifyBridgeMutation, } from "./mutating-tool.js";
55
+ import { noteMutationHandled } from "./observed-mutation.js";
56
+ import { getProcessBridge, registerProcessBridge } from "./process-bridge.js";
57
+ /** Stable Symbol key — identical across module reloads in the same process. */
58
+ export const MUTATION_BRIDGE_KEY = Symbol.for("pi-lens:mutation-bridge");
59
+ function isValidRange(value) {
60
+ if (!Array.isArray(value) || value.length !== 2)
61
+ return false;
62
+ const [start, end] = value;
63
+ return (typeof start === "number" &&
64
+ typeof end === "number" &&
65
+ Number.isInteger(start) &&
66
+ Number.isInteger(end) &&
67
+ start >= 1 &&
68
+ end >= start);
69
+ }
70
+ /**
71
+ * Validate a raw entry from an untrusted caller. Deliberately lightweight, for
72
+ * the same reason `read-bridge.ts` gives: this is an advisory protocol between
73
+ * same-process extensions, so the goal is catching typos and bad numbers rather
74
+ * than enforcing a boundary.
75
+ */
76
+ export function isValidMutationEntry(entry) {
77
+ if (typeof entry !== "object" || entry === null)
78
+ return false;
79
+ const e = entry;
80
+ if (typeof e["filePath"] !== "string" || e["filePath"] === "")
81
+ return false;
82
+ const kind = e["kind"];
83
+ if (kind !== "write" && kind !== "edit")
84
+ return false;
85
+ if (e["touchedLines"] !== undefined && !isValidRange(e["touchedLines"]))
86
+ return false;
87
+ const editRanges = e["editRanges"];
88
+ if (editRanges !== undefined) {
89
+ if (!Array.isArray(editRanges) || editRanges.length === 0)
90
+ return false;
91
+ if (!editRanges.every(isValidRange))
92
+ return false;
93
+ }
94
+ if (e["consumer"] !== undefined && typeof e["consumer"] !== "string")
95
+ return false;
96
+ if (e["importsChanged"] !== undefined &&
97
+ typeof e["importsChanged"] !== "boolean")
98
+ return false;
99
+ if (e["deferAutofix"] !== undefined && typeof e["deferAutofix"] !== "boolean")
100
+ return false;
101
+ // #2430: only the observational net's two values are accepted. An unknown
102
+ // string is rejected rather than silently downgraded, so a producer that
103
+ // invents a provenance learns about it instead of publishing a wrong one.
104
+ const provenance = e["provenance"];
105
+ if (provenance !== undefined &&
106
+ provenance !== "observed" &&
107
+ provenance !== "settled-sweep")
108
+ return false;
109
+ return true;
110
+ }
111
+ /**
112
+ * The one range the change log records for this mutation. A multi-range edit
113
+ * records its bounding box, matching how `runtime-tool-result.ts` collapses a
114
+ * multi-hunk diff (`singleRange`) — the change log carries one range per entry.
115
+ */
116
+ function resolveChangedRange(classification, deps, filePath) {
117
+ if (classification.touchedLines) {
118
+ const [start, end] = classification.touchedLines;
119
+ return { start, end };
120
+ }
121
+ if (classification.editRanges && classification.editRanges.length > 0) {
122
+ const starts = classification.editRanges.map(([start]) => start);
123
+ const ends = classification.editRanges.map(([, end]) => end);
124
+ return { start: Math.min(...starts), end: Math.max(...ends) };
125
+ }
126
+ // No range stated. A write replaced the whole file, and an edit whose ranges
127
+ // the producer could not name is treated the same way: the safe
128
+ // over-approximation is the entire file, never an empty set.
129
+ return { start: 1, end: Math.max(1, deps.countFileLines(filePath)) };
130
+ }
131
+ /**
132
+ * The mutation-recording body, exported so tests drive it against a real
133
+ * `RuntimeCoordinator` and `CacheManager` without mounting the global
134
+ * singleton.
135
+ */
136
+ export function recordMutationThroughSeam(entry, deps) {
137
+ if (!isValidMutationEntry(entry)) {
138
+ deps.dbg?.("mutation_bridge: dropped malformed entry");
139
+ return false;
140
+ }
141
+ if (!deps.isRecordable(entry.filePath)) {
142
+ deps.dbg?.(`mutation_bridge: out of scope ${entry.filePath}`);
143
+ return false;
144
+ }
145
+ const classification = classifyBridgeMutation(entry);
146
+ const filePath = entry.filePath;
147
+ const runtime = deps.getRuntime();
148
+ const projectRoot = deps.getProjectRoot();
149
+ const dispatchCwd = deps.getDispatchCwd(filePath);
150
+ try {
151
+ // 1. Staleness stamp: the file changed under pi-lens, so a later edit is
152
+ // judged by read coverage rather than by this write. #2465: gated on
153
+ // `shouldStampReadGuard` (the `no-read-guard` flag) ALONE — the
154
+ // `isRecordable` check above already passed, so the write itself is
155
+ // still bookkept below whether or not the stamp fires.
156
+ if (deps.shouldStampReadGuard?.() ?? true) {
157
+ runtime.readGuard?.recordWritten?.(filePath);
158
+ }
159
+ // 2. Turn state: this is the insert that leaves `turn-state.json` `files`
160
+ // non-empty for a mutation no `tool_result` described. `importsChanged`
161
+ // defaults to `false` (the historical, pre-#2450 behavior every
162
+ // existing producer that doesn't compute it still gets); a producer
163
+ // that DOES know the real value threads it through the entry instead
164
+ // of this seam silently understating it (#2450 review round 2, F1).
165
+ const changedRange = resolveChangedRange(classification, deps, filePath);
166
+ deps
167
+ .getCacheManager()
168
+ .addModifiedRange?.(filePath, changedRange, entry.importsChanged ?? false, projectRoot, runtime.telemetrySessionId);
169
+ // 3. Attributed change-log receipt. The source carries the producer's
170
+ // identity instead of collapsing onto `agent-edit`, so a report can
171
+ // tell an extension's rewrite apart from the model's own edit.
172
+ runtime.recordProjectMutation?.({
173
+ filePath,
174
+ source: `agent-tool:${classification.toolName}`,
175
+ cwd: projectRoot,
176
+ changedRange,
177
+ onAppendError: (err) => deps.dbg?.(`mutation_bridge: change log append failed: ${err}`),
178
+ });
179
+ // #2430: this file is now accounted for this run, so the `agent_settled`
180
+ // sweep re-baselines it instead of reporting the same bytes as drift no
181
+ // tool call explains. Every in-process producer passes through here, so
182
+ // this is the one place that has to say so.
183
+ //
184
+ // It sits OUTSIDE the `deferAutofix` guard below and must stay there
185
+ // (#2465). "pi-lens accounted for this write" and "pi-lens will also
186
+ // format this file later" are different questions: the LSP
187
+ // mutation-bridge fallback passes `deferAutofix: false` precisely
188
+ // because an LSP-applied edit is not this seam's to format, and it is
189
+ // still a write pi-lens recorded. Move this inside the guard and every
190
+ // such write is re-read by the settled sweep as unattributed drift.
191
+ noteMutationHandled(filePath);
192
+ // 4. Deferred autofix and format at `agent_settled` — never immediate.
193
+ // Skippable per entry (`deferAutofix: false`, #2450 review round 2 F3):
194
+ // the LSP mutation-bridge fallback (`clients/lsp-mutation.ts`) sets
195
+ // this because `bookkeepLspMutation`'s direct path never enqueues a
196
+ // deferred pass for an LSP-applied edit — the two branches must stay
197
+ // behaviorally equivalent for the same write. Every other producer
198
+ // (ast_grep_replace, a third-party extension) omits the field and
199
+ // keeps deferring, unchanged.
200
+ if (entry.deferAutofix !== false) {
201
+ for (const kind of ["autofix", "format"]) {
202
+ runtime.deferMutation?.(filePath, dispatchCwd, classification.toolName, projectRoot, kind, runtime.telemetrySessionId, projectRoot);
203
+ }
204
+ }
205
+ }
206
+ catch (err) {
207
+ // Bookkeeping must never break a producer's own write path.
208
+ deps.dbg?.(`mutation_bridge: recording failed for ${filePath}: ${err}`);
209
+ return false;
210
+ }
211
+ return true;
212
+ }
213
+ /**
214
+ * Mount the bridge singleton. Call once from inside the extension factory,
215
+ * protected by the caller's module-level flag. Subsequent calls are no-ops
216
+ * (first-wins, `clients/process-bridge.ts` owns the mount body — see that
217
+ * module's header, #2437).
218
+ */
219
+ export function registerMutationBridge(deps) {
220
+ registerProcessBridge(MUTATION_BRIDGE_KEY, () => ({
221
+ version: 1,
222
+ recordMutation(entry) {
223
+ return recordMutationThroughSeam(entry, deps);
224
+ },
225
+ }));
226
+ }
227
+ /**
228
+ * The mounted bridge, or `undefined` when pi-lens has not registered one (or
229
+ * a differently-versioned bridge is mounted, or the mounted value is missing
230
+ * `recordMutation`).
231
+ *
232
+ * In-repo producers use this instead of reaching for `globalThis` themselves,
233
+ * so there is one spelling of the key and one version check.
234
+ */
235
+ export function getMutationBridge() {
236
+ const candidate = getProcessBridge(MUTATION_BRIDGE_KEY, 1);
237
+ return typeof candidate?.recordMutation === "function"
238
+ ? candidate
239
+ : undefined;
240
+ }