@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,651 @@
1
+ /**
2
+ * The inbound mutation-classification seam (#2423).
3
+ *
4
+ * ## Why this module exists
5
+ *
6
+ * Before this seam, every producer in pi-lens decided "is this event a file
7
+ * mutation?" by comparing `event.toolName` against the string literals
8
+ * `"write"` and `"edit"`. Fifteen call sites across `runtime-tool-call.ts`,
9
+ * `runtime-tool-result.ts`, `read-guard-tool-lines.ts`,
10
+ * `runtime-coordinator.ts`, `read-guard.ts` and `agent-behavior-client.ts` each
11
+ * made that decision on their own, so a host or extension that registered an
12
+ * edit tool under ANY other name was dropped before the first bookkeeping
13
+ * call: no read-guard preflight, no `turn-state.json` entry, no deferred
14
+ * autofix, no format at `agent_settled`, no change-log receipt.
15
+ *
16
+ * The READ side already solved the same problem twice — `details.searchReads`
17
+ * is consumed by SHAPE for any tool (#169), and `clients/read-bridge.ts` lets
18
+ * an out-of-band producer record a read directly (#1265). This module plus
19
+ * `clients/mutation-bridge.ts` is the mutation-side equivalent.
20
+ *
21
+ * ## The contract
22
+ *
23
+ * `classifyMutatingTool(event, ctx)` is THE way to ask whether an event mutates
24
+ * a file. It answers with a {@link MutatingToolClassification} or `undefined`;
25
+ * no consumer compares a tool name to `"write"` or `"edit"` itself.
26
+ * `tests/clients/mutating-tool-classification.test.ts` greps `clients/` and
27
+ * fails when such a literal comparison reappears outside this file.
28
+ *
29
+ * Three recognition tiers, applied in this order:
30
+ *
31
+ * 1. **The built-in table** — pi's own `write` and `edit`. Behavior is
32
+ * unchanged, and `write` short-circuits because its shape is unambiguous.
33
+ * 2. **The shape-adapter registry** ({@link MUTATION_SHAPE_ADAPTERS}), promoted
34
+ * out of `resolveHashlineEditInput`. An adapter recognizes an INPUT SHAPE,
35
+ * not a name, so a third-party tool called `replace` or `insert` is
36
+ * classified on the strength of its arguments. Order is deterministic and
37
+ * the first non-`undefined` result wins.
38
+ * 3. **The mutation bridge** (`clients/mutation-bridge.ts`) — an in-process
39
+ * producer that already knows it mutated a file calls `recordMutation` and
40
+ * gets a `provenance: "bridge"` classification from
41
+ * {@link classifyBridgeMutation}.
42
+ *
43
+ * ## Telemetry
44
+ *
45
+ * Every adapter stamps its own `source` discriminator into the existing
46
+ * `touched_lines_detected` and `edit_preflight_blocked` read-guard events, so a
47
+ * production log says WHICH shape resolved a range. Adapters log only when the
48
+ * caller supplies `ctx.filePath`. A path-resolution call runs before the path
49
+ * is known, passes no context, and stays silent, exactly as the pre-seam code
50
+ * did.
51
+ *
52
+ * ## Deliberately not here
53
+ *
54
+ * A declarative `tools.mutating` catalog entry and the `FormatQueuedPayload.tool`
55
+ * widening are public-API decisions and belong to the #2421 and #2415 program.
56
+ *
57
+ * ## The fourth tier lives elsewhere (#2430)
58
+ *
59
+ * Recognition tiers 1–3 are finite; the population of third-party edit tools is
60
+ * not. `clients/observed-mutation.ts` therefore WATCHES an unclassified call —
61
+ * a bounded disk diff around it — and `clients/mutation-attribution.ts`
62
+ * remembers what that watching proved. This module consults that memory as tier
63
+ * 4 ({@link MutationProvenance} `"learned"`), so a tool observed once is
64
+ * classified by name from then on with no snapshot at all. The observation
65
+ * itself, and the `agent_settled` sweep for tools that name no path, stay in
66
+ * those modules: this one is the classifier, not the observer.
67
+ */
68
+ import { BoundedFifoMap } from "./bounded-cache.js";
69
+ import { resolveHashlineAnchor, } from "./hashline-anchor.js";
70
+ import { lookupLearnedMutatingTool } from "./mutation-attribution.js";
71
+ import { boundedIndexesForCount, createReadGuardEditBatchSummary, logReadGuardEvent, } from "./read-guard-logger.js";
72
+ /**
73
+ * pi's own mutating tools. This table is the ONLY place those two names are
74
+ * compared against an event.
75
+ */
76
+ const BUILTIN_MUTATING_TOOLS = new Map([
77
+ ["write", "write"],
78
+ ["edit", "edit"],
79
+ ]);
80
+ /**
81
+ * Header marker for an adapter's blocking verdict. Identical to the marker the
82
+ * promoted `resolveHashlineEditInput` used, so the agent-facing text does not
83
+ * change. It is a constant because this module's delivery surface is registered
84
+ * in `clients/finding-delivery-gate.ts`.
85
+ */
86
+ const BLOCKED_MARKER = "\u{1F534} BLOCKED —";
87
+ /**
88
+ * `true` when the NAME alone identifies a pi built-in mutating tool.
89
+ *
90
+ * Name-only consumers use this: the agent-behavior heuristics see a tool name
91
+ * and a path but never the event. It cannot see a third-party tool, because
92
+ * that needs the input shape, so a consumer takes `classifyMutatingTool`'s
93
+ * answer wherever the event is in hand.
94
+ */
95
+ export function isMutatingToolName(toolName) {
96
+ return BUILTIN_MUTATING_TOOLS.has(toolName);
97
+ }
98
+ /** Built-in mutating tool names, for reports and tests. */
99
+ export function getBuiltinMutatingToolNames() {
100
+ return [...BUILTIN_MUTATING_TOOLS.keys()];
101
+ }
102
+ function asRecord(value) {
103
+ return value !== null && typeof value === "object"
104
+ ? value
105
+ : {};
106
+ }
107
+ /**
108
+ * Path field, in a fixed order. `path` is pi's spelling; `filePath` and
109
+ * `file_path` are the two spellings third-party edit tools use in practice.
110
+ *
111
+ * Exported for #2430: the observational net arms only for a call whose input
112
+ * carries a path-shaped field, and it must ask that question with the SAME
113
+ * field list the seam classifies with — a second spelling list would arm on
114
+ * inputs the seam cannot resolve, and miss ones it can.
115
+ */
116
+ export function resolveMutationPath(input) {
117
+ for (const key of ["path", "filePath", "file_path"]) {
118
+ const value = input[key];
119
+ if (typeof value === "string" && value.length > 0)
120
+ return value;
121
+ }
122
+ return undefined;
123
+ }
124
+ /**
125
+ * The path-shaped field on an event's input, or `undefined` (#2430).
126
+ *
127
+ * This is the arming predicate for the observational net. It deliberately
128
+ * answers only "does this input name a file", never "does this tool mutate" —
129
+ * the whole point of the net is that the second question has no static answer.
130
+ */
131
+ export function readMutationPathField(event) {
132
+ return resolveMutationPath(asRecord(event?.input));
133
+ }
134
+ /**
135
+ * Parse a `pi-hashline-readmap` anchor (`"42"` or `"42: some code"`) to its
136
+ * 1-based line. Moved here from `read-guard-tool-lines.ts` with the adapters
137
+ * that use it.
138
+ *
139
+ * This is the READMAP form and it is decimal. `pi-hashline-edit-pro` is a
140
+ * different extension with a different addressing scheme — a bare three-char
141
+ * base62 anchor — handled by `clients/hashline-anchor.ts`. Do not reach for
142
+ * this function there.
143
+ */
144
+ export function parseHashlineAnchor(anchor) {
145
+ if (typeof anchor !== "string")
146
+ return undefined;
147
+ const trimmed = anchor.trim();
148
+ const separator = trimmed.indexOf(":");
149
+ const lineText = separator === -1 ? trimmed : trimmed.slice(0, separator);
150
+ if (!/^\d+$/.test(lineText))
151
+ return undefined;
152
+ const line = Number(lineText);
153
+ return Number.isInteger(line) && line > 0 ? line : undefined;
154
+ }
155
+ /** Bounding box plus per-range detail for a multi-range edit. */
156
+ export function combineRanges(ranges) {
157
+ const starts = ranges.map(([start]) => start);
158
+ const ends = ranges.map(([, end]) => end);
159
+ return {
160
+ touchedLines: [Math.min(...starts), Math.max(...ends)],
161
+ editRanges: ranges.length > 1 ? ranges : undefined,
162
+ };
163
+ }
164
+ /**
165
+ * Shared blocking result for an adapter that recognized its shape but could not
166
+ * resolve every operation to a range. Blocking is the safe outcome: an edit
167
+ * whose target lines are unknown cannot be checked against what the agent read.
168
+ *
169
+ * Every blocking verdict ends with one concrete next-action line so the agent
170
+ * recovers in a single turn (#328).
171
+ */
172
+ function blockedByAdapter(args) {
173
+ const indexes = boundedIndexesForCount(args.operationCount);
174
+ const editBatchSummary = createReadGuardEditBatchSummary({
175
+ requestedIndexes: indexes,
176
+ requestedTotal: args.operationCount,
177
+ rejectedReasons: indexes.map((index) => ({
178
+ index,
179
+ code: "preflight_blocked",
180
+ })),
181
+ rejectedTotal: args.operationCount,
182
+ durationMs: 0,
183
+ terminalStatus: "blocked",
184
+ });
185
+ if (args.ctx.filePath && !args.ctx.recognizeOnly) {
186
+ logReadGuardEvent({
187
+ event: "edit_preflight_blocked",
188
+ correlationId: args.ctx.correlationId,
189
+ sessionId: args.ctx.sessionId,
190
+ filePath: args.ctx.filePath,
191
+ metadata: {
192
+ tool: "edit",
193
+ source: args.adapterSource,
194
+ reasonKind: args.reasonKind,
195
+ operationCount: args.operationCount,
196
+ errorCount: args.errors.length,
197
+ errors: args.errors.slice(0, 10),
198
+ },
199
+ });
200
+ logReadGuardEvent({
201
+ event: "edit_batch_summary",
202
+ correlationId: args.ctx.correlationId,
203
+ filePath: args.ctx.filePath,
204
+ metadata: { tool: "edit", editBatchSummary },
205
+ });
206
+ }
207
+ return {
208
+ touchedLines: undefined,
209
+ preflightError: `${BLOCKED_MARKER} ${args.title}\n\n${args.errors.join("\n")}\n\n${args.retryHint}`,
210
+ editBatchSummary,
211
+ };
212
+ }
213
+ function logTouchedLines(args) {
214
+ if (!args.ctx.filePath || args.ctx.recognizeOnly)
215
+ return;
216
+ logReadGuardEvent({
217
+ event: "touched_lines_detected",
218
+ correlationId: args.ctx.correlationId,
219
+ sessionId: args.ctx.sessionId,
220
+ filePath: args.ctx.filePath,
221
+ metadata: {
222
+ tool: "edit",
223
+ source: args.adapterSource,
224
+ touchedLines: args.result.touchedLines,
225
+ editRanges: args.result.editRanges,
226
+ operationCount: args.operationCount,
227
+ ...args.extra,
228
+ },
229
+ });
230
+ }
231
+ // ---------------------------------------------------------------------------
232
+ // Adapter: hashline-readmap (the shape `resolveHashlineEditInput` recognized)
233
+ // ---------------------------------------------------------------------------
234
+ /**
235
+ * One recognized hashline operation: a record carrying one of the three
236
+ * operation keys the readmap tool defines.
237
+ *
238
+ * This is what separates RECOGNIZING the shape from RESOLVING the range
239
+ * (#2423 review round 1, finding F2). `operations` and `ops` are generic enough
240
+ * that an unrelated tool carries them — a batch runner, a refactoring tool, a
241
+ * migration tool — and claiming those and then BLOCKING turned the seam into a
242
+ * denial-of-service for any tool that happened to name an array `operations`.
243
+ */
244
+ function isHashlineOperation(value) {
245
+ const op = asRecord(value);
246
+ return (op.set_line !== undefined ||
247
+ op.replace_lines !== undefined ||
248
+ op.replace_symbol !== undefined);
249
+ }
250
+ /**
251
+ * The readmap batch, or `undefined` when this input is not one. A batch is
252
+ * claimed only when at least one entry is a recognized hashline operation.
253
+ */
254
+ function getHashlineOperations(input) {
255
+ const operations = Array.isArray(input.operations)
256
+ ? input.operations
257
+ : Array.isArray(input.ops)
258
+ ? input.ops
259
+ : isHashlineOperation(input)
260
+ ? [input]
261
+ : undefined;
262
+ if (operations === undefined || operations.length === 0)
263
+ return undefined;
264
+ return operations.some(isHashlineOperation) ? operations : undefined;
265
+ }
266
+ const hashlineReadmapAdapter = (input, ctx) => {
267
+ const operations = getHashlineOperations(input);
268
+ if (operations === undefined)
269
+ return undefined;
270
+ const ranges = [];
271
+ const errors = [];
272
+ for (let index = 0; index < operations.length; index += 1) {
273
+ const op = asRecord(operations[index]);
274
+ if (op.set_line) {
275
+ const payload = asRecord(op.set_line);
276
+ const line = parseHashlineAnchor(payload.anchor);
277
+ if (!line) {
278
+ errors.push(`operation[${index}].set_line.anchor is malformed`);
279
+ continue;
280
+ }
281
+ ranges.push([line, line]);
282
+ continue;
283
+ }
284
+ if (op.replace_lines) {
285
+ const payload = asRecord(op.replace_lines);
286
+ const start = parseHashlineAnchor(payload.start_anchor);
287
+ const end = parseHashlineAnchor(payload.end_anchor);
288
+ if (!start || !end) {
289
+ errors.push(`operation[${index}].replace_lines anchors are malformed`);
290
+ continue;
291
+ }
292
+ if (start > end) {
293
+ errors.push(`operation[${index}].replace_lines range is inverted`);
294
+ continue;
295
+ }
296
+ ranges.push([start, end]);
297
+ continue;
298
+ }
299
+ if (op.replace_symbol) {
300
+ errors.push(`operation[${index}].replace_symbol cannot be resolved safely yet; use line anchors or a native ranged edit`);
301
+ continue;
302
+ }
303
+ errors.push(`operation[${index}] is not a recognized hashline edit`);
304
+ }
305
+ if (errors.length > 0) {
306
+ const target = ctx.filePath ? `\`${ctx.filePath}\`` : "the file";
307
+ return blockedByAdapter({
308
+ adapterSource: "hashline_edit",
309
+ reasonKind: "unsupported_hashline_edit_target",
310
+ title: "Unsupported hashline edit target",
311
+ errors,
312
+ operationCount: operations.length,
313
+ retryHint: `Re-read ${target} to get current #line anchors, then retry using set_line / replace_lines with those anchors — or use a native ranged edit.`,
314
+ ctx,
315
+ });
316
+ }
317
+ if (ranges.length === 0)
318
+ return undefined;
319
+ const result = combineRanges(ranges);
320
+ logTouchedLines({
321
+ adapterSource: ranges.length === 1 && ranges[0][0] === ranges[0][1]
322
+ ? "hashline_set_line"
323
+ : "hashline_replace_lines",
324
+ result,
325
+ operationCount: operations.length,
326
+ ctx,
327
+ });
328
+ return result;
329
+ };
330
+ // ---------------------------------------------------------------------------
331
+ // Adapter: hashline-edit-pro
332
+ // ---------------------------------------------------------------------------
333
+ function isStringArray(value) {
334
+ return (Array.isArray(value) && value.every((entry) => typeof entry === "string"));
335
+ }
336
+ /**
337
+ * The `replace` request, or `undefined` when this is not one.
338
+ *
339
+ * Recognition needs ALL THREE required fields of the upstream schema
340
+ * (`src/payload-contract.ts` `ROOT_KS` / `assertReq`): two anchor strings and a
341
+ * `replacement_lines` array of strings. `remove_from` alone is not enough
342
+ * (#2423 review round 1, finding F2) — the fields are common English and a
343
+ * navigation or query tool can carry one without editing anything.
344
+ */
345
+ function readHashlineProReplace(input) {
346
+ if (typeof input.remove_from !== "string" ||
347
+ typeof input.remove_to !== "string" ||
348
+ !isStringArray(input.replacement_lines)) {
349
+ return undefined;
350
+ }
351
+ return { removeFrom: input.remove_from, removeTo: input.remove_to };
352
+ }
353
+ /**
354
+ * The `insert` request, or `undefined` when this is not one.
355
+ *
356
+ * `assertInsertReq` in `src/insert.ts` requires a non-empty `anchor` string, a
357
+ * `direction` that is exactly `"before"` or `"after"`, and `lines` as an array
358
+ * of strings. An `anchor` + `direction` pair alone is a shape plenty of
359
+ * non-mutating tools carry (a scroll, a cursor move, a jump-to-symbol), so all
360
+ * three are required here too.
361
+ */
362
+ function readHashlineProInsert(input) {
363
+ if (typeof input.anchor !== "string" || input.anchor.length === 0)
364
+ return undefined;
365
+ if (input.direction !== "before" && input.direction !== "after")
366
+ return undefined;
367
+ if (!isStringArray(input.lines))
368
+ return undefined;
369
+ return { anchor: input.anchor, direction: input.direction };
370
+ }
371
+ /** One `unresolvedReason` string, so the telemetry vocabulary stays fixed. */
372
+ function anchorUnresolved(field, failure) {
373
+ return `${field}:${failure}`;
374
+ }
375
+ /**
376
+ * `hashline-edit-pro` ships two operations, both addressed by a bare three-char
377
+ * base62 ANCHOR — `"aB3"`, never a line number:
378
+ *
379
+ * - `replace`: `{path, remove_from, remove_to, replacement_lines}` — the two
380
+ * anchors bound an inclusive line range.
381
+ * - `insert`: `{path, anchor, direction, lines}` — a zero-width insertion
382
+ * before or after one anchor line. The anchor line itself is the range the
383
+ * guard checks, because that is the line the agent must have read to name it.
384
+ *
385
+ * A drifted edit-pro anchor gets NO relocation (review round 3, finding F5).
386
+ * The #505 auto-apply runs through `relocateEditRange`, which rewrites the
387
+ * line numbers inside a `oldRange` or an `edits[].range` — neither of which an
388
+ * edit-pro request has. So for `{anchor, direction, lines}` the relocation
389
+ * call is a structural no-op, and this adapter deliberately does not build a
390
+ * second search to cover it: re-deriving "where did that content go" from a
391
+ * hash pi-lens cannot verify is exactly the guessing that finding F1 removed.
392
+ * A drifted anchor stays unresolved and observable; giving that shape a real
393
+ * net is #2430's job.
394
+ *
395
+ * Anchors are resolved by `clients/hashline-anchor.ts`, which reproduces the
396
+ * extension's own hash function against the file's current content and answers
397
+ * only when the match is unique AND the matched line's content occurs once in
398
+ * the file. An anchor that does not resolve leaves the mutation classified
399
+ * with its lines unknown — never a block. See that module's header for the
400
+ * measurement behind the content-uniqueness gate, and for why blocking on
401
+ * pi-lens's disagreement with a third-party tool would be wrong.
402
+ *
403
+ * Upstream `swapReversedRanges` (`src/hashline/resolve.ts`) AUTOCORRECTS a
404
+ * reversed pair rather than refusing it, so a resolved pair is normalized here
405
+ * the same way instead of being treated as an error.
406
+ */
407
+ const hashlineEditProAdapter = (input, ctx) => {
408
+ const replace = readHashlineProReplace(input);
409
+ if (replace) {
410
+ if (ctx.recognizeOnly || !ctx.filePath) {
411
+ return {
412
+ touchedLines: undefined,
413
+ unresolvedReason: ctx.recognizeOnly
414
+ ? "replace:recognize_only"
415
+ : "replace:no_file_path",
416
+ };
417
+ }
418
+ const from = resolveHashlineAnchor(ctx.filePath, replace.removeFrom);
419
+ const to = resolveHashlineAnchor(ctx.filePath, replace.removeTo);
420
+ if (from.line === undefined || to.line === undefined) {
421
+ return {
422
+ touchedLines: undefined,
423
+ unresolvedReason: from.line === undefined
424
+ ? anchorUnresolved("remove_from", from.failure ?? "anchor_not_found")
425
+ : anchorUnresolved("remove_to", to.failure ?? "anchor_not_found"),
426
+ };
427
+ }
428
+ const result = combineRanges([
429
+ [Math.min(from.line, to.line), Math.max(from.line, to.line)],
430
+ ]);
431
+ logTouchedLines({
432
+ adapterSource: "hashline_pro_replace",
433
+ result,
434
+ operationCount: 1,
435
+ ctx,
436
+ extra: {
437
+ anchors: [replace.removeFrom, replace.removeTo],
438
+ swapped: from.line > to.line,
439
+ },
440
+ });
441
+ return result;
442
+ }
443
+ const insert = readHashlineProInsert(input);
444
+ if (insert) {
445
+ if (ctx.recognizeOnly || !ctx.filePath) {
446
+ return {
447
+ touchedLines: undefined,
448
+ unresolvedReason: ctx.recognizeOnly
449
+ ? "insert:recognize_only"
450
+ : "insert:no_file_path",
451
+ };
452
+ }
453
+ const anchor = resolveHashlineAnchor(ctx.filePath, insert.anchor);
454
+ if (anchor.line === undefined) {
455
+ return {
456
+ touchedLines: undefined,
457
+ unresolvedReason: anchorUnresolved("anchor", anchor.failure ?? "anchor_not_found"),
458
+ };
459
+ }
460
+ const result = combineRanges([[anchor.line, anchor.line]]);
461
+ logTouchedLines({
462
+ adapterSource: "hashline_pro_insert",
463
+ result,
464
+ operationCount: 1,
465
+ ctx,
466
+ extra: { direction: insert.direction, anchors: [insert.anchor] },
467
+ });
468
+ return result;
469
+ }
470
+ return undefined;
471
+ };
472
+ // ---------------------------------------------------------------------------
473
+ // Carrying a tool_call resolution to its tool_result
474
+ // ---------------------------------------------------------------------------
475
+ /**
476
+ * Ranges an adapter resolved on the `tool_call` side, keyed by `toolCallId`.
477
+ *
478
+ * By `tool_result` the edit has ALREADY been applied, so an anchor can no
479
+ * longer be resolved against the file: the lines a `replace` named are gone,
480
+ * and an `insert`'s anchor has moved. The classification still needs those
481
+ * ranges — they are what `runtime-tool-result.ts` hands to
482
+ * `cacheManager.addModifiedRange`, i.e. the `turn-state.json` entry whose
483
+ * absence is the bug #2423 reports.
484
+ *
485
+ * Reads do not consume the entry: several call sites classify the same event,
486
+ * and a consuming read would hand the ranges to whichever asked first. The map
487
+ * drains by capacity instead.
488
+ */
489
+ const RESOLVED_RANGE_CARRY_LIMIT = 64;
490
+ const RESOLVED_RANGE_CARRY = new BoundedFifoMap(RESOLVED_RANGE_CARRY_LIMIT);
491
+ function readToolCallId(event) {
492
+ const id = event?.toolCallId;
493
+ return typeof id === "string" && id.length > 0 ? id : undefined;
494
+ }
495
+ function carryResolvedRanges(event, result) {
496
+ const toolCallId = readToolCallId(event);
497
+ if (!toolCallId || result.touchedLines === undefined)
498
+ return;
499
+ RESOLVED_RANGE_CARRY.set(toolCallId, {
500
+ touchedLines: result.touchedLines,
501
+ editRanges: result.editRanges,
502
+ });
503
+ }
504
+ function readCarriedRanges(event) {
505
+ const toolCallId = readToolCallId(event);
506
+ return toolCallId ? RESOLVED_RANGE_CARRY.get(toolCallId) : undefined;
507
+ }
508
+ /** Test seam: the carry map is process-global, so a suite must be able to clear it. */
509
+ export function _resetMutationRangeCarryForTests() {
510
+ RESOLVED_RANGE_CARRY.clear();
511
+ }
512
+ /** #2442 test seam: exercise RESOLVED_RANGE_CARRY's capacity eviction through
513
+ * the exact production write/read paths. */
514
+ export function _carryResolvedRangesForTests(toolCallId, touchedLines) {
515
+ carryResolvedRanges({ toolCallId }, { touchedLines, editRanges: undefined });
516
+ }
517
+ export function _hasCarriedRangeForTests(toolCallId) {
518
+ return readCarriedRanges({ toolCallId }) !== undefined;
519
+ }
520
+ export const RESOLVED_RANGE_CARRY_LIMIT_FOR_TESTS = RESOLVED_RANGE_CARRY_LIMIT;
521
+ /**
522
+ * The registry. ORDER IS THE CONTRACT: adapters run top to bottom and the first
523
+ * non-`undefined` result wins, so a narrower shape must precede a broader one.
524
+ * `hashline-readmap` is first because it keys off explicit `operations`,
525
+ * `set_line` and `replace_lines` fields that no other shape carries.
526
+ *
527
+ * Each entry is covered by its own case in
528
+ * `tests/clients/mutating-tool-classification.test.ts`; deleting an entry turns
529
+ * that case red.
530
+ */
531
+ export const MUTATION_SHAPE_ADAPTERS = [
532
+ { name: "hashline-readmap", kind: "edit", resolve: hashlineReadmapAdapter },
533
+ { name: "hashline-edit-pro", kind: "edit", resolve: hashlineEditProAdapter },
534
+ ];
535
+ function readToolName(event) {
536
+ const name = event?.toolName;
537
+ return typeof name === "string" && name.length > 0 ? name : undefined;
538
+ }
539
+ /**
540
+ * pi-lens's own marker on a `tool_result` it SYNTHESIZED from a bash command
541
+ * (`runtime-tool-result.ts`'s recognized-write and opaque-recovery dispatch).
542
+ * The event carries `toolName: "write"` so the pipeline treats it as one, but
543
+ * the provenance is not the host's write tool, and a consumer that attributes
544
+ * changes to the model must be able to tell them apart.
545
+ */
546
+ export const PI_LENS_SYNTHETIC_MUTATION_FIELD = "piLensSyntheticMutation";
547
+ /**
548
+ * Classify an inbound `tool_call` or `tool_result` event.
549
+ *
550
+ * Returns `undefined` for every event that is not a file mutation pi-lens
551
+ * recognizes. That is the "not our business" answer every consumer keys off.
552
+ *
553
+ * Cost: one map lookup for `write`, plus at most one shallow shape probe per
554
+ * registered adapter for everything else. The PR body carries the measurement.
555
+ */
556
+ export function classifyMutatingTool(event, ctx = {}) {
557
+ const toolName = readToolName(event);
558
+ if (toolName === undefined)
559
+ return undefined;
560
+ const input = asRecord(event.input);
561
+ const builtinKind = BUILTIN_MUTATING_TOOLS.get(toolName);
562
+ const syntheticSource = event[PI_LENS_SYNTHETIC_MUTATION_FIELD];
563
+ const builtinProvenance = syntheticSource === "bash" ? "bash-derived" : "builtin";
564
+ // A full-file write has no shape ambiguity, so it never pays for the
565
+ // adapter probes.
566
+ if (builtinKind === "write") {
567
+ return {
568
+ toolName,
569
+ path: resolveMutationPath(input),
570
+ kind: "write",
571
+ provenance: builtinProvenance,
572
+ };
573
+ }
574
+ for (const adapter of MUTATION_SHAPE_ADAPTERS) {
575
+ let resolved = adapter.resolve(input, ctx);
576
+ if (resolved === undefined)
577
+ continue;
578
+ if (resolved.touchedLines !== undefined) {
579
+ carryResolvedRanges(event, resolved);
580
+ }
581
+ else if (!resolved.preflightError) {
582
+ // The tool_result side cannot re-resolve an anchor against a file the
583
+ // edit has already rewritten; reuse what the tool_call side resolved.
584
+ const carried = readCarriedRanges(event);
585
+ if (carried)
586
+ resolved = { ...resolved, ...carried, unresolvedReason: undefined };
587
+ }
588
+ return {
589
+ toolName,
590
+ path: resolveMutationPath(input),
591
+ kind: adapter.kind,
592
+ touchedLines: resolved.touchedLines,
593
+ editRanges: resolved.editRanges,
594
+ preflightError: resolved.preflightError,
595
+ editBatchSummary: resolved.editBatchSummary,
596
+ unresolvedReason: resolved.unresolvedReason,
597
+ // A built-in name that an adapter resolved is still built-in; only a
598
+ // name pi-lens does not know is a declared third-party shape.
599
+ provenance: builtinKind !== undefined ? builtinProvenance : "declared",
600
+ source: adapter.name,
601
+ };
602
+ }
603
+ if (builtinKind !== undefined) {
604
+ return {
605
+ toolName,
606
+ path: resolveMutationPath(input),
607
+ kind: builtinKind,
608
+ provenance: builtinProvenance,
609
+ };
610
+ }
611
+ // #2430, tier 4: nothing NAMED or SHAPED this tool, but a previous
612
+ // observation attributed it. `edit` is the kind, because a partial rewrite
613
+ // is the safe timing assumption for a tool whose semantics are unknown, and
614
+ // the deferred pass is what a wrong guess costs least.
615
+ //
616
+ // A path field is required. Without one there is no target to record, and
617
+ // the settled sweep — not this branch — is the net for that shape.
618
+ const learnedPath = resolveMutationPath(input);
619
+ if (learnedPath !== undefined) {
620
+ const learned = lookupLearnedMutatingTool(toolName);
621
+ if (learned !== undefined) {
622
+ return {
623
+ toolName,
624
+ path: learnedPath,
625
+ kind: "edit",
626
+ provenance: "learned",
627
+ source: `attribution:${learned}`,
628
+ };
629
+ }
630
+ }
631
+ return undefined;
632
+ }
633
+ /**
634
+ * Build the classification for a mutation an in-process producer recorded
635
+ * directly. The bridge does not guess a shape, because the producer states the
636
+ * kind, so this is a construction rather than a recognition.
637
+ */
638
+ export function classifyBridgeMutation(entry) {
639
+ const provenance = entry.provenance === "observed" || entry.provenance === "settled-sweep"
640
+ ? entry.provenance
641
+ : "bridge";
642
+ return {
643
+ toolName: entry.consumer ?? "unknown",
644
+ path: entry.filePath,
645
+ kind: entry.kind,
646
+ touchedLines: entry.touchedLines,
647
+ editRanges: entry.editRanges,
648
+ provenance,
649
+ source: provenance === "bridge" ? "mutation-bridge" : "observed-mutation",
650
+ };
651
+ }