@herbertgao/pi-extensions 2026.9.0 → 2026.9.2
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.
- package/node_modules/@czottmann/pi-automode/CHANGELOG.md +13 -1
- package/node_modules/@czottmann/pi-automode/README.md +20 -0
- package/node_modules/@czottmann/pi-automode/docs/GLOSSARY.md +1 -1
- package/node_modules/@czottmann/pi-automode/docs/automode-classifier-flow.md +2 -1
- package/node_modules/@czottmann/pi-automode/docs/defaults.md +3 -2
- package/node_modules/@czottmann/pi-automode/extensions/auto-mode/classifier.ts +38 -2
- package/node_modules/@czottmann/pi-automode/extensions/auto-mode/constants.ts +5 -3
- package/node_modules/@czottmann/pi-automode/extensions/auto-mode/extension.ts +11 -3
- package/node_modules/@czottmann/pi-automode/package.json +1 -1
- package/node_modules/@narumitw/pi-btw/README.md +57 -141
- package/node_modules/@narumitw/pi-btw/dist/index.ts +466 -41
- package/node_modules/@narumitw/pi-btw/dist/index.ts.map +4 -4
- package/node_modules/@narumitw/pi-btw/docs/workflows.md +74 -0
- package/node_modules/@narumitw/pi-btw/package.json +2 -1
- package/node_modules/@narumitw/pi-btw/src/btw.ts +15 -1
- package/node_modules/@narumitw/pi-btw/src/fullscreen-ui.ts +32 -2
- package/node_modules/@narumitw/pi-btw/src/keybindings.ts +330 -0
- package/node_modules/@narumitw/pi-btw/src/menu.ts +136 -19
- package/node_modules/@narumitw/pi-btw/src/settings.ts +32 -0
- package/node_modules/@narumitw/pi-btw/src/side-thread.ts +57 -5
- package/node_modules/@narumitw/pi-btw/src/transcript-pager.ts +52 -30
- package/node_modules/@pi-plugins/fast-mode/README.md +5 -3
- package/node_modules/@pi-plugins/fast-mode/dist/index.d.mts.map +1 -1
- package/node_modules/@pi-plugins/fast-mode/dist/index.mjs +20 -55
- package/node_modules/@pi-plugins/fast-mode/dist/index.mjs.map +1 -1
- package/node_modules/@pi-plugins/fast-mode/package.json +1 -1
- package/node_modules/pi-lens/CHANGELOG.md +1072 -0
- package/node_modules/pi-lens/README.md +3 -0
- package/node_modules/pi-lens/config/biome/core.jsonc +11 -2
- package/node_modules/pi-lens/config/dependency-cruiser-eager-allowlist.json +13 -1
- package/node_modules/pi-lens/dist/clients/actionable-warnings-logger.js +2 -9
- package/node_modules/pi-lens/dist/clients/actionable-warnings.js +927 -80
- package/node_modules/pi-lens/dist/clients/advisory-provenance.js +1 -1
- package/node_modules/pi-lens/dist/clients/agent-behavior-client.js +13 -4
- package/node_modules/pi-lens/dist/clients/ast-grep-client.js +123 -3
- package/node_modules/pi-lens/dist/clients/ast-grep-rule-manager.js +60 -5
- package/node_modules/pi-lens/dist/clients/ast-grep-tool-logger.js +2 -9
- package/node_modules/pi-lens/dist/clients/ast-grep-types.js +2 -0
- package/node_modules/pi-lens/dist/clients/bash-file-access.js +133 -3
- package/node_modules/pi-lens/dist/clients/biome-client.js +9 -2
- package/node_modules/pi-lens/dist/clients/blocker-freshness.js +14 -6
- package/node_modules/pi-lens/dist/clients/bootstrap.js +509 -73
- package/node_modules/pi-lens/dist/clients/bounded-cache.js +152 -12
- package/node_modules/pi-lens/dist/clients/bounded-pid-file-lock.js +1 -1
- package/node_modules/pi-lens/dist/clients/bounded-telemetry.js +59 -9
- package/node_modules/pi-lens/dist/clients/bundled-resource-health.js +113 -0
- package/node_modules/pi-lens/dist/clients/bus-events-logger.js +3 -11
- package/node_modules/pi-lens/dist/clients/cache/rule-cache.js +31 -4
- package/node_modules/pi-lens/dist/clients/cache-manager.js +105 -6
- package/node_modules/pi-lens/dist/clients/cache-observability.js +40 -19
- package/node_modules/pi-lens/dist/clients/cargo-manifest.js +422 -0
- package/node_modules/pi-lens/dist/clients/cascade-logger.js +2 -9
- package/node_modules/pi-lens/dist/clients/child-unref.js +1 -19
- package/node_modules/pi-lens/dist/clients/code-quality-warnings.js +13 -3
- package/node_modules/pi-lens/dist/clients/complexity-client.js +16 -5
- package/node_modules/pi-lens/dist/clients/config-core/deny.js +221 -0
- package/node_modules/pi-lens/dist/clients/config-core/index.js +50 -0
- package/node_modules/pi-lens/dist/clients/config-core/merge.js +357 -0
- package/node_modules/pi-lens/dist/clients/config-core/normalize.js +340 -0
- package/node_modules/pi-lens/dist/clients/config-core/process-spec.js +248 -0
- package/node_modules/pi-lens/dist/clients/config-core/provenance.js +164 -0
- package/node_modules/pi-lens/dist/clients/config-core/records.js +218 -0
- package/node_modules/pi-lens/dist/clients/config-core/resolve.js +125 -0
- package/node_modules/pi-lens/dist/clients/config-core/safe-object.js +78 -0
- package/node_modules/pi-lens/dist/clients/config-core/schema.js +165 -0
- package/node_modules/pi-lens/dist/clients/config-diagnostic-codes.js +281 -0
- package/node_modules/pi-lens/dist/clients/config-locations.js +160 -0
- package/node_modules/pi-lens/dist/clients/config-resolve.js +789 -0
- package/node_modules/pi-lens/dist/clients/config-schema.js +234 -0
- package/node_modules/pi-lens/dist/clients/config-warn.js +407 -0
- package/node_modules/pi-lens/dist/clients/dead-code-client.js +19 -14
- package/node_modules/pi-lens/dist/clients/dead-code-logger.js +2 -6
- package/node_modules/pi-lens/dist/clients/deadline-utils.js +178 -0
- package/node_modules/pi-lens/dist/clients/debug-handles.js +2 -2
- package/node_modules/pi-lens/dist/clients/debug-heap.js +3 -3
- package/node_modules/pi-lens/dist/clients/deferred-lsp-work.js +106 -0
- package/node_modules/pi-lens/dist/clients/degradation-ledger.js +113 -7
- package/node_modules/pi-lens/dist/clients/dependency-checker.js +8 -19
- package/node_modules/pi-lens/dist/clients/diagnostic-dispositions.js +1 -1
- package/node_modules/pi-lens/dist/clients/diagnostic-line-freshness.js +12 -9
- package/node_modules/pi-lens/dist/clients/diagnostic-logger.js +15 -5
- package/node_modules/pi-lens/dist/clients/dispatch/collect-later-tier.js +0 -4
- package/node_modules/pi-lens/dist/clients/dispatch/dispatcher.js +162 -44
- package/node_modules/pi-lens/dist/clients/dispatch/fact-store.js +97 -0
- package/node_modules/pi-lens/dist/clients/dispatch/integration.js +27 -8
- package/node_modules/pi-lens/dist/clients/dispatch/lazy.js +0 -6
- package/node_modules/pi-lens/dist/clients/dispatch/pending-runner-findings.js +1 -1
- package/node_modules/pi-lens/dist/clients/dispatch/plan.js +0 -3
- package/node_modules/pi-lens/dist/clients/dispatch/rules/high-complexity.js +2 -2
- package/node_modules/pi-lens/dist/clients/dispatch/rules/high-fan-out.js +1 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/actionlint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/ast-grep-napi.js +383 -27
- package/node_modules/pi-lens/dist/clients/dispatch/runners/biome-check.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/cpp-check.js +4 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/credo.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/cue-vet.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/dart-analyze.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/detekt.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/dotnet-build.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/elixir-check.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/eslint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/fact-rules.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/fish-indent.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/gleam-check.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/go-vet.js +1 -3
- package/node_modules/pi-lens/dist/clients/dispatch/runners/golangci-lint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/hadolint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/helm-lint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/helm-render.js +1 -2
- package/node_modules/pi-lens/dist/clients/dispatch/runners/htmlhint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/javac.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/ktlint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/lsp.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/markdownlint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/mypy.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/oxlint.js +14 -18
- package/node_modules/pi-lens/dist/clients/dispatch/runners/php-lint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/phpstan.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/prisma-validate.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/psscriptanalyzer.js +6 -3
- package/node_modules/pi-lens/dist/clients/dispatch/runners/pyright.js +7 -4
- package/node_modules/pi-lens/dist/clients/dispatch/runners/rubocop.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/ruff.js +1 -2
- package/node_modules/pi-lens/dist/clients/dispatch/runners/rust-clippy.js +1 -3
- package/node_modules/pi-lens/dist/clients/dispatch/runners/shellcheck.js +1 -2
- package/node_modules/pi-lens/dist/clients/dispatch/runners/shfmt.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/spellcheck.js +4 -3
- package/node_modules/pi-lens/dist/clients/dispatch/runners/spotbugs.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/sqlfluff.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/stylelint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/swiftlint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/taplo.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/terragrunt.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/tflint.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/tree-sitter.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/trivy-config.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/availability-policy.js +3 -0
- package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/diagnostic-parsers.js +3 -67
- package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/runner-helpers.js +194 -80
- package/node_modules/pi-lens/dist/clients/dispatch/runners/utils/toolchain-availability.js +84 -15
- package/node_modules/pi-lens/dist/clients/dispatch/runners/utils.js +0 -21
- package/node_modules/pi-lens/dist/clients/dispatch/runners/vale.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/yaml-rule-parser.js +2 -20
- package/node_modules/pi-lens/dist/clients/dispatch/runners/yamllint.js +1 -1
- package/node_modules/pi-lens/dist/clients/dispatch/runners/zig-check.js +0 -1
- package/node_modules/pi-lens/dist/clients/dispatch/utils/format-utils.js +2 -2
- package/node_modules/pi-lens/dist/clients/disposition-logger.js +3 -10
- package/node_modules/pi-lens/dist/clients/effective-config.js +403 -0
- package/node_modules/pi-lens/dist/clients/error-class.js +23 -0
- package/node_modules/pi-lens/dist/clients/event-loop-hold.js +274 -0
- package/node_modules/pi-lens/dist/clients/event-loop-monitor.js +2 -2
- package/node_modules/pi-lens/dist/clients/extension-log.js +2 -2
- package/node_modules/pi-lens/dist/clients/feature-hints.js +2 -1
- package/node_modules/pi-lens/dist/clients/file-kinds.js +1 -38
- package/node_modules/pi-lens/dist/clients/file-time.js +7 -2
- package/node_modules/pi-lens/dist/clients/file-utils.js +117 -10
- package/node_modules/pi-lens/dist/clients/finding-delivery-gate.js +50 -13
- package/node_modules/pi-lens/dist/clients/format-service.js +6 -2
- package/node_modules/pi-lens/dist/clients/formatters.js +385 -104
- package/node_modules/pi-lens/dist/clients/freshness-cadence.js +17 -0
- package/node_modules/pi-lens/dist/clients/generated-artifacts.js +116 -22
- package/node_modules/pi-lens/dist/clients/generation-guard.js +4 -9
- package/node_modules/pi-lens/dist/clients/git-guard.js +6 -1
- package/node_modules/pi-lens/dist/clients/go-client.js +39 -0
- package/node_modules/pi-lens/dist/clients/gradle-ktfmt-style.js +252 -0
- package/node_modules/pi-lens/dist/clients/grammar-source.js +3 -3
- package/node_modules/pi-lens/dist/clients/hashline-anchor.js +424 -0
- package/node_modules/pi-lens/dist/clients/hook-budgets.js +76 -0
- package/node_modules/pi-lens/dist/clients/host-edit-normalize.js +5 -2
- package/node_modules/pi-lens/dist/clients/host-ports.js +1 -1
- package/node_modules/pi-lens/dist/clients/installer/index.js +289 -59
- package/node_modules/pi-lens/dist/clients/installer/managed-tool-refresh.js +84 -18
- package/node_modules/pi-lens/dist/clients/instance-reaper.js +110 -236
- package/node_modules/pi-lens/dist/clients/instance-registry.js +6 -3
- package/node_modules/pi-lens/dist/clients/language-profile.js +0 -9
- package/node_modules/pi-lens/dist/clients/language-registry.js +599 -0
- package/node_modules/pi-lens/dist/clients/latency-logger.js +165 -9
- package/node_modules/pi-lens/dist/clients/ledger-bounds.js +34 -1
- package/node_modules/pi-lens/dist/clients/lens-config.js +160 -30
- package/node_modules/pi-lens/dist/clients/lens-engine.js +33 -41
- package/node_modules/pi-lens/dist/clients/lens-events.js +1 -1
- package/node_modules/pi-lens/dist/clients/lens-flag-registry.js +77 -6
- package/node_modules/pi-lens/dist/clients/lens-map.js +1 -1
- package/node_modules/pi-lens/dist/clients/log-cleanup.js +2 -38
- package/node_modules/pi-lens/dist/clients/lsp/aggregation.js +3 -1
- package/node_modules/pi-lens/dist/clients/lsp/client.js +172 -33
- package/node_modules/pi-lens/dist/clients/lsp/config.js +484 -158
- package/node_modules/pi-lens/dist/clients/lsp/diagnostic-binding.js +1 -1
- package/node_modules/pi-lens/dist/clients/lsp/document-drift.js +1 -1
- package/node_modules/pi-lens/dist/clients/lsp/edits.js +18 -5
- package/node_modules/pi-lens/dist/clients/lsp/index.js +892 -96
- package/node_modules/pi-lens/dist/clients/lsp/inferred-project.js +1 -1
- package/node_modules/pi-lens/dist/clients/lsp/language.js +18 -177
- package/node_modules/pi-lens/dist/clients/lsp/launch.js +2 -1
- package/node_modules/pi-lens/dist/clients/lsp/path-utils.js +1 -1
- package/node_modules/pi-lens/dist/clients/lsp/pending-aux-coverage.js +5 -18
- package/node_modules/pi-lens/dist/clients/lsp/server.js +284 -147
- package/node_modules/pi-lens/dist/clients/lsp/session-roots.js +116 -23
- package/node_modules/pi-lens/dist/clients/lsp/spawn-history.js +2 -7
- package/node_modules/pi-lens/dist/clients/lsp/sync-kind.js +0 -1
- package/node_modules/pi-lens/dist/clients/lsp/tsserver-sync.js +14 -7
- package/node_modules/pi-lens/dist/clients/lsp/wait-policy/classification.js +6 -0
- package/node_modules/pi-lens/dist/clients/lsp/wait-policy/strategies.js +2 -1
- package/node_modules/pi-lens/dist/clients/lsp/workspace-diagnostics-cache.js +1 -1
- package/node_modules/pi-lens/dist/clients/lsp-document-symbols.js +1 -1
- package/node_modules/pi-lens/dist/clients/lsp-mutation.js +163 -21
- package/node_modules/pi-lens/dist/clients/map-with-concurrency.js +36 -0
- package/node_modules/pi-lens/dist/clients/mcp/analyze.js +33 -4
- package/node_modules/pi-lens/dist/clients/mcp/session.js +5 -16
- package/node_modules/pi-lens/dist/clients/memory-sampler.js +8 -3
- package/node_modules/pi-lens/dist/clients/metrics-history.js +28 -107
- package/node_modules/pi-lens/dist/clients/middle-man-analysis.js +3 -5
- package/node_modules/pi-lens/dist/clients/module-report.js +21 -46
- package/node_modules/pi-lens/dist/clients/mutating-tool.js +651 -0
- package/node_modules/pi-lens/dist/clients/mutation-attribution.js +368 -0
- package/node_modules/pi-lens/dist/clients/mutation-bridge.js +240 -0
- package/node_modules/pi-lens/dist/clients/ndjson-logger.js +247 -24
- package/node_modules/pi-lens/dist/clients/observed-mutation-sources.js +101 -0
- package/node_modules/pi-lens/dist/clients/observed-mutation.js +1215 -0
- package/node_modules/pi-lens/dist/clients/opaque-mutation-scan.js +70 -28
- package/node_modules/pi-lens/dist/clients/opengrep-config.js +5 -1
- package/node_modules/pi-lens/dist/clients/package-manager.js +195 -26
- package/node_modules/pi-lens/dist/clients/partial-edit-apply.js +359 -80
- package/node_modules/pi-lens/dist/clients/path-attribution-telemetry.js +23 -7
- package/node_modules/pi-lens/dist/clients/path-keyed-map.js +21 -2
- package/node_modules/pi-lens/dist/clients/path-utils.js +451 -15
- package/node_modules/pi-lens/dist/clients/performance-report.js +2 -2
- package/node_modules/pi-lens/dist/clients/persist-debounce.js +8 -1
- package/node_modules/pi-lens/dist/clients/php-cs-fixer-config.js +114 -0
- package/node_modules/pi-lens/dist/clients/pipeline.js +79 -18
- package/node_modules/pi-lens/dist/clients/probe-home-state.js +228 -0
- package/node_modules/pi-lens/dist/clients/process-bridge.js +66 -0
- package/node_modules/pi-lens/dist/clients/process-snapshot.js +68 -0
- package/node_modules/pi-lens/dist/clients/project-changes.js +1 -1
- package/node_modules/pi-lens/dist/clients/project-diagnostics/extractors.js +1 -1
- package/node_modules/pi-lens/dist/clients/project-diagnostics/fresh-fetch.js +4 -3
- package/node_modules/pi-lens/dist/clients/project-diagnostics/runner-adapters/jscpd.js +1 -1
- package/node_modules/pi-lens/dist/clients/project-diagnostics/runner-adapters/knip.js +1 -1
- package/node_modules/pi-lens/dist/clients/project-diagnostics/runner-adapters/madge.js +1 -1
- package/node_modules/pi-lens/dist/clients/project-diagnostics/runner-adapters/opengrep.js +1 -1
- package/node_modules/pi-lens/dist/clients/project-diagnostics/runner-adapters/runner-findings.js +28 -4
- package/node_modules/pi-lens/dist/clients/project-diagnostics/scanner.js +51 -20
- package/node_modules/pi-lens/dist/clients/project-lens-config.js +438 -122
- package/node_modules/pi-lens/dist/clients/project-scan-policy.js +3 -51
- package/node_modules/pi-lens/dist/clients/project-snapshot.js +52 -24
- package/node_modules/pi-lens/dist/clients/python-environment.js +217 -0
- package/node_modules/pi-lens/dist/clients/python-provenance.js +639 -0
- package/node_modules/pi-lens/dist/clients/quiet-window.js +6 -1
- package/node_modules/pi-lens/dist/clients/read-bridge.js +13 -21
- package/node_modules/pi-lens/dist/clients/read-expansion.js +9 -46
- package/node_modules/pi-lens/dist/clients/read-guard-logger.js +16 -5
- package/node_modules/pi-lens/dist/clients/read-guard-tool-lines.js +364 -212
- package/node_modules/pi-lens/dist/clients/read-guard.js +26 -2
- package/node_modules/pi-lens/dist/clients/recent-touches.js +2 -2
- package/node_modules/pi-lens/dist/clients/resource-sampler.js +195 -96
- package/node_modules/pi-lens/dist/clients/review-graph/builder.js +155 -114
- package/node_modules/pi-lens/dist/clients/review-graph/import-resolvers.js +1 -1
- package/node_modules/pi-lens/dist/clients/review-graph/service.js +55 -3
- package/node_modules/pi-lens/dist/clients/review-graph/shared-extraction-ir.js +7 -15
- package/node_modules/pi-lens/dist/clients/review-graph/workspace-modules.js +10 -74
- package/node_modules/pi-lens/dist/clients/review-graph-logger.js +9 -3
- package/node_modules/pi-lens/dist/clients/runtime-agent-end.js +19 -3
- package/node_modules/pi-lens/dist/clients/runtime-context.js +49 -16
- package/node_modules/pi-lens/dist/clients/runtime-coordinator.js +25 -6
- package/node_modules/pi-lens/dist/clients/runtime-session.js +184 -32
- package/node_modules/pi-lens/dist/clients/runtime-tool-call.js +179 -36
- package/node_modules/pi-lens/dist/clients/runtime-tool-result.js +797 -243
- package/node_modules/pi-lens/dist/clients/runtime-turn.js +1028 -53
- package/node_modules/pi-lens/dist/clients/rust-client.js +31 -0
- package/node_modules/pi-lens/dist/clients/safe-spawn.js +33 -10
- package/node_modules/pi-lens/dist/clients/sanitize.js +7 -12
- package/node_modules/pi-lens/dist/clients/scan-utils.js +1 -56
- package/node_modules/pi-lens/dist/clients/scratch-tree-policy.js +1 -3
- package/node_modules/pi-lens/dist/clients/security-scan-client.js +3 -0
- package/node_modules/pi-lens/dist/clients/session-lifecycle.js +1 -1
- package/node_modules/pi-lens/dist/clients/session-start-observability.js +79 -0
- package/node_modules/pi-lens/dist/clients/session-summary.js +0 -24
- package/node_modules/pi-lens/dist/clients/sessionstart-logger.js +12 -3
- package/node_modules/pi-lens/dist/clients/sgconfig.js +7 -6
- package/node_modules/pi-lens/dist/clients/shared-checkout-guard.js +1 -1
- package/node_modules/pi-lens/dist/clients/skills-resolver.js +105 -0
- package/node_modules/pi-lens/dist/clients/smells-rollup.js +4 -4
- package/node_modules/pi-lens/dist/clients/startup-scan.js +2 -10
- package/node_modules/pi-lens/dist/clients/string-utils.js +13 -0
- package/node_modules/pi-lens/dist/clients/subagent-mode.js +17 -4
- package/node_modules/pi-lens/dist/clients/test-runner-client.js +176 -39
- package/node_modules/pi-lens/dist/clients/test-runner-delivery.js +244 -0
- package/node_modules/pi-lens/dist/clients/tool-definition.js +41 -1
- package/node_modules/pi-lens/dist/clients/tool-policy.js +92 -22
- package/node_modules/pi-lens/dist/clients/tree-sitter-cache.js +40 -40
- package/node_modules/pi-lens/dist/clients/tree-sitter-client.js +87 -100
- package/node_modules/pi-lens/dist/clients/tree-sitter-logger.js +2 -2
- package/node_modules/pi-lens/dist/clients/tree-sitter-query-loader.js +81 -1
- package/node_modules/pi-lens/dist/clients/tree-sitter-shared.js +51 -46
- package/node_modules/pi-lens/dist/clients/tree-sitter-symbol-extractor.js +28 -0
- package/node_modules/pi-lens/dist/clients/tui-fit.js +0 -4
- package/node_modules/pi-lens/dist/clients/typos-config.js +5 -0
- package/node_modules/pi-lens/dist/clients/user-notify.js +6 -6
- package/node_modules/pi-lens/dist/clients/widget-state.js +191 -26
- package/node_modules/pi-lens/dist/clients/word-index-logger.js +2 -9
- package/node_modules/pi-lens/dist/clients/word-index-store.js +23 -12
- package/node_modules/pi-lens/dist/clients/word-index.js +252 -47
- package/node_modules/pi-lens/dist/clients/workspace-topology.js +8 -1
- package/node_modules/pi-lens/dist/clients/zizmor-config.js +4 -1
- package/node_modules/pi-lens/dist/index.js +65899 -55340
- package/node_modules/pi-lens/dist/mcp/analyze-cli.js +3 -1
- package/node_modules/pi-lens/dist/mcp/build-staleness.js +1 -1
- package/node_modules/pi-lens/dist/mcp/server.js +127 -5
- package/node_modules/pi-lens/dist/scripts/lib/process-scan.mjs +583 -0
- package/node_modules/pi-lens/dist/scripts/lib/skills-predicate.mjs +129 -0
- package/node_modules/pi-lens/dist/tools/effective-config.js +89 -0
- package/node_modules/pi-lens/dist/tools/lens-diagnostics.js +96 -25
- package/node_modules/pi-lens/dist/tools/lsp-diagnostics.js +104 -86
- package/node_modules/pi-lens/dist/tools/lsp-navigation.js +37 -16
- package/node_modules/pi-lens/dist/tools/lsp-structured-output.js +3 -3
- package/node_modules/pi-lens/dist/tools/render-compact.js +1 -1
- package/node_modules/pi-lens/dist/tools/shared.js +0 -1
- package/node_modules/pi-lens/dist/tools/symbol-search.js +1 -2
- package/node_modules/pi-lens/docs/agent-guide.md +64 -1
- package/node_modules/pi-lens/docs/configuration.md +222 -0
- package/node_modules/pi-lens/docs/dependencies.md +3 -3
- package/node_modules/pi-lens/docs/features.md +44 -5
- package/node_modules/pi-lens/docs/globalconfig.md +20 -0
- package/node_modules/pi-lens/docs/language-coverage.md +2 -2
- package/node_modules/pi-lens/docs/lsp-capability-matrix.md +9 -1
- package/node_modules/pi-lens/docs/pi-lens-fixer.md +25 -0
- package/node_modules/pi-lens/docs/pi-lens-investigator.md +25 -0
- package/node_modules/pi-lens/docs/pi-lens-reviewer.md +33 -0
- package/node_modules/pi-lens/docs/pi-lens-subagent.md +49 -0
- package/node_modules/pi-lens/docs/pi-lens-warden.md +55 -0
- package/node_modules/pi-lens/docs/public-api-stability.md +359 -0
- package/node_modules/pi-lens/docs/release-qa-baseline.md +190 -0
- package/node_modules/pi-lens/docs/servercapabilities.md +7 -3
- package/node_modules/pi-lens/docs/subagent-compat.md +110 -30
- package/node_modules/pi-lens/docs/tree-sitter_rules_catalog.md +2 -2
- package/node_modules/pi-lens/docs/word-index.md +1 -1
- package/node_modules/pi-lens/package.json +18 -35
- package/node_modules/pi-lens/rules/tree-sitter-queries/python/python-cross-language-method.yml +3 -3
- package/node_modules/pi-lens/rules/tree-sitter-queries/python/python-hallucinated-import.yml +2 -2
- package/node_modules/pi-lens/rules/tree-sitter-queries/python/python-sql-injection.yml +12 -2
- package/node_modules/pi-lens/rules/typos/_typos.toml +4 -2
- package/node_modules/pi-lens/scripts/analyze-pi-lens-logs.mjs +192 -1
- package/node_modules/pi-lens/scripts/install-selftest.mjs +58 -2
- package/node_modules/pi-lens/scripts/lib/skills-predicate.mjs +129 -0
- package/node_modules/pi-lens/scripts/lib/warm-loader-cache.mjs +1 -1
- package/node_modules/pi-lens/scripts/rpc-load-check.mjs +3 -1
- package/node_modules/pi-lens/scripts/warm-loader-cache.mjs +4 -2
- package/node_modules/pi-web-access/CHANGELOG.md +28 -0
- package/node_modules/pi-web-access/README.md +62 -15
- package/node_modules/pi-web-access/curator-page.ts +3 -1
- package/node_modules/pi-web-access/curator-server.ts +5 -1
- package/node_modules/pi-web-access/gemini-search.ts +8 -4
- package/node_modules/pi-web-access/github-extract.ts +242 -1
- package/node_modules/pi-web-access/index.ts +118 -64
- package/node_modules/pi-web-access/mistral-search.ts +281 -0
- package/node_modules/pi-web-access/package.json +2 -2
- package/node_modules/pi-web-access/perplexity.ts +14 -1
- package/node_modules/pi-web-access/utils.ts +23 -6
- package/node_modules/pi-web-access/xai-search.ts +96 -33
- package/package.json +6 -6
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The validate/normalize half of the config pipeline (#2425, scope item 1).
|
|
3
|
+
*
|
|
4
|
+
* `RawConfig` (whatever `JSON.parse` returned) -> `validate(schema)` ->
|
|
5
|
+
* `NormalizedConfig` (only fields the schema claims, each of the declared
|
|
6
|
+
* shape). `merge.ts` then combines normalized configs across tiers, so the
|
|
7
|
+
* merger never has to ask whether a value is the type it looks like.
|
|
8
|
+
*
|
|
9
|
+
* Four rules, the first three from `docs/public-api-stability.md`:
|
|
10
|
+
*
|
|
11
|
+
* 1. NEVER THROW. A user's config file is untrusted input; a schema violation
|
|
12
|
+
* degrades that field to absent and records why. A throw here would take
|
|
13
|
+
* down a session over a typo.
|
|
14
|
+
* 2. UNKNOWN FIELDS ARE DROPPED, NOT KEPT. pi-lens's default is closed, unlike
|
|
15
|
+
* JSON Schema's — a schema opts into openness with `additionalProperties`.
|
|
16
|
+
* Keeping unknown fields would make every typo a silently-ignored setting,
|
|
17
|
+
* which is the failure users actually report.
|
|
18
|
+
* 3. EVERY DROP IS RECORDED, with a stable `PILENS_CFG_*` code and a reason
|
|
19
|
+
* built from structure alone. No value ever reaches a record.
|
|
20
|
+
* 4. THE WALK NEVER STOPS EARLY, and a user subtree is never passed through.
|
|
21
|
+
* Every node the validator returns was BUILT here, key by key, out of values
|
|
22
|
+
* this module checked. There is no arm on which a caller's object becomes
|
|
23
|
+
* part of the result by assertion.
|
|
24
|
+
*
|
|
25
|
+
* Rule 4 is the #2440 review finding, and it is worth stating why the two
|
|
26
|
+
* pass-through arms it replaces were wrong rather than merely untidy. A schema
|
|
27
|
+
* node that declares no `type` used to hand its value straight to the domain
|
|
28
|
+
* type with `as ConfigValue`. That single assertion cost three properties at
|
|
29
|
+
* once: the subtree's keys never met the prototype-key policy, so a
|
|
30
|
+
* `{"__proto__": {...}}` node reached `out[name] = …` in BOTH builders and
|
|
31
|
+
* re-parented the accumulator (serializing as `{}` while answering the
|
|
32
|
+
* attacker's value on every field read); the subtree's depth was never counted,
|
|
33
|
+
* so `MAX_CONFIG_DEPTH` bounded only the paths the schema happened to describe
|
|
34
|
+
* and a 4000-deep blob went to the merger intact and overflowed the stack there;
|
|
35
|
+
* and no record was produced for anything inside it, so the drop the pipeline
|
|
36
|
+
* promises to explain was invisible. An always-walking normalizer fixes all
|
|
37
|
+
* three by construction, which is the reason it is one normalizer and not three
|
|
38
|
+
* patches.
|
|
39
|
+
*
|
|
40
|
+
* An OPAQUE node is still walked OPEN, not closed: a schema that claims nothing
|
|
41
|
+
* about a node keeps that node's children, exactly as the pass-through did. What
|
|
42
|
+
* changes is that they are copied, depth-counted, key-checked, and recorded. A
|
|
43
|
+
* node that DOES name properties keeps its own (closed-by-default) policy.
|
|
44
|
+
*
|
|
45
|
+
* The walk is bounded on both axes that can grow: depth (a hand-written config
|
|
46
|
+
* can nest arbitrarily) and record count (`MigrationRecordCollector`). Objects
|
|
47
|
+
* already visited on the current path are refused, so a caller that hands in a
|
|
48
|
+
* cyclic value gets a record rather than a stack overflow.
|
|
49
|
+
*/
|
|
50
|
+
import { additionalPropertyPolicy, isKnownSchemaType, isPlainObject, isSchemaNode, itemsSchema, propertySchema, schemaType, } from "./schema.js";
|
|
51
|
+
import { isUnsafeConfigKey, MAX_CONFIG_DEPTH, safeAssign, UNSAFE_KEY_REASON, } from "./safe-object.js";
|
|
52
|
+
import { boundedKeyLabel, jsonTypeName, MigrationRecordCollector, migrationSubject, } from "./records.js";
|
|
53
|
+
import { errorClassName } from "../error-class.js";
|
|
54
|
+
/**
|
|
55
|
+
* Re-exported from `safe-object.ts`, which owns it because `merge.ts` enforces
|
|
56
|
+
* the same bound over values `validate()` may never have seen. Importers keep
|
|
57
|
+
* their existing specifier; there is still one constant.
|
|
58
|
+
*/
|
|
59
|
+
export { MAX_CONFIG_DEPTH };
|
|
60
|
+
/** Sentinel for "this node produced no value". `undefined` is a legal JSON absence. */
|
|
61
|
+
const DROPPED = Symbol("dropped");
|
|
62
|
+
/**
|
|
63
|
+
* The schema an opaque node's children are walked with: it governs nothing and
|
|
64
|
+
* keeps everything. Spelled as a real node rather than `undefined` so the
|
|
65
|
+
* "open" decision is made once, at the one place that decides it, instead of
|
|
66
|
+
* being re-derived from an absent argument at every accessor.
|
|
67
|
+
*/
|
|
68
|
+
const OPEN_SCHEMA = { additionalProperties: true };
|
|
69
|
+
export function validate(raw, schema, options = {}) {
|
|
70
|
+
const collector = options.collector ?? new MigrationRecordCollector();
|
|
71
|
+
const file = options.file ?? "";
|
|
72
|
+
const context = {
|
|
73
|
+
collector,
|
|
74
|
+
file,
|
|
75
|
+
tier: options.tier,
|
|
76
|
+
path: [],
|
|
77
|
+
};
|
|
78
|
+
let walked;
|
|
79
|
+
try {
|
|
80
|
+
walked = walk(raw, schema, context, 0, new Set());
|
|
81
|
+
}
|
|
82
|
+
catch (error) {
|
|
83
|
+
// A throw here is a bug in this module, not in the user's config, but the
|
|
84
|
+
// contract above still holds: a config load never fails a session. The
|
|
85
|
+
// record says the document was dropped and names the error CLASS only,
|
|
86
|
+
// never its message, which could quote the file. `errorClassName` is the
|
|
87
|
+
// ONE implementation of that (#2451) — not `config-warn.ts`'s own
|
|
88
|
+
// `normalizeParseErrorReason`, which this "pure" module must not import:
|
|
89
|
+
// that is a sink (-> the degradation ledger), and importing one back in is
|
|
90
|
+
// exactly the cycle #2426 removed from `config-core/`.
|
|
91
|
+
record(context, {
|
|
92
|
+
code: "PILENS_CFG_0005",
|
|
93
|
+
key: "",
|
|
94
|
+
reason: `config validation failed internally (${errorClassName(error)}); document ignored`,
|
|
95
|
+
});
|
|
96
|
+
walked = DROPPED;
|
|
97
|
+
}
|
|
98
|
+
return {
|
|
99
|
+
value: walked === DROPPED ? undefined : walked,
|
|
100
|
+
records: collector.records,
|
|
101
|
+
droppedRecordCount: collector.droppedCount,
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
function pointerOf(path) {
|
|
105
|
+
return path.length === 0 ? "" : `/${path.join("/")}`;
|
|
106
|
+
}
|
|
107
|
+
function record(context, entry) {
|
|
108
|
+
const key = boundedKeyLabel(entry.key);
|
|
109
|
+
context.collector.add({
|
|
110
|
+
code: entry.code,
|
|
111
|
+
file: context.file,
|
|
112
|
+
key,
|
|
113
|
+
subject: migrationSubject(context.file, key),
|
|
114
|
+
reason: entry.reason,
|
|
115
|
+
tier: context.tier,
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
function walk(value, schema, context, depth, onPath) {
|
|
119
|
+
const pointer = pointerOf(context.path);
|
|
120
|
+
if (depth > MAX_CONFIG_DEPTH) {
|
|
121
|
+
record(context, {
|
|
122
|
+
code: "PILENS_CFG_0005",
|
|
123
|
+
key: pointer,
|
|
124
|
+
reason: `config nesting exceeds ${MAX_CONFIG_DEPTH} levels; ignored`,
|
|
125
|
+
});
|
|
126
|
+
return DROPPED;
|
|
127
|
+
}
|
|
128
|
+
if (typeof value === "object" && value !== null) {
|
|
129
|
+
if (onPath.has(value)) {
|
|
130
|
+
record(context, {
|
|
131
|
+
code: "PILENS_CFG_0005",
|
|
132
|
+
key: pointer,
|
|
133
|
+
reason: "config value refers to itself; ignored",
|
|
134
|
+
});
|
|
135
|
+
return DROPPED;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
const declared = schemaType(schema);
|
|
139
|
+
if (declared === "object")
|
|
140
|
+
return walkObject(value, schema, context, depth, onPath);
|
|
141
|
+
if (declared === "array")
|
|
142
|
+
return walkArray(value, schema, context, depth, onPath);
|
|
143
|
+
if (isKnownSchemaType(declared)) {
|
|
144
|
+
return walkScalar(value, schema, context, declared);
|
|
145
|
+
}
|
|
146
|
+
// No `type` keyword, or one the core does not recognize: the schema is
|
|
147
|
+
// opaque about this node. The walk does not stop — see rule 4 in the module
|
|
148
|
+
// docs — it dispatches on the VALUE's shape instead, so the node is still
|
|
149
|
+
// copied, bounded, key-checked, and recorded. An unrecognized keyword is the
|
|
150
|
+
// schema's problem, not the user's, and `merge.ts` reads it the same way.
|
|
151
|
+
return walkOpaque(value, schema, context, depth, onPath);
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* Walk a node the schema says nothing (useful) about.
|
|
155
|
+
*
|
|
156
|
+
* The dispatch is on the value, because that is the only thing left to dispatch
|
|
157
|
+
* on. An object whose schema names no properties is walked OPEN — keeping its
|
|
158
|
+
* children is what the old pass-through did, and dropping them now would turn a
|
|
159
|
+
* defect fix into a silent feature removal. An object whose schema DOES name
|
|
160
|
+
* properties keeps its own policy, which is closed by default.
|
|
161
|
+
*/
|
|
162
|
+
function walkOpaque(value, schema, context, depth, onPath) {
|
|
163
|
+
if (isPlainObject(value)) {
|
|
164
|
+
const effective = claimsChildren(schema) ? schema : OPEN_SCHEMA;
|
|
165
|
+
return walkObject(value, effective, context, depth, onPath);
|
|
166
|
+
}
|
|
167
|
+
if (Array.isArray(value)) {
|
|
168
|
+
return walkArray(value, schema, context, depth, onPath);
|
|
169
|
+
}
|
|
170
|
+
return walkLeaf(value, schema, context);
|
|
171
|
+
}
|
|
172
|
+
/** True when the node declares something that governs its own children. */
|
|
173
|
+
function claimsChildren(schema) {
|
|
174
|
+
if (!schema)
|
|
175
|
+
return false;
|
|
176
|
+
return (isSchemaNode(schema.properties) ||
|
|
177
|
+
isSchemaNode(schema.patternProperties) ||
|
|
178
|
+
schema.additionalProperties !== undefined);
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* The one place a scalar enters the domain type, and it does so by NARROWING.
|
|
182
|
+
*
|
|
183
|
+
* `isConfigScalar` is a real predicate over the value, so nothing here asserts.
|
|
184
|
+
* A value the JSON domain has no room for — `undefined`, a function, a symbol, a
|
|
185
|
+
* bigint, `NaN`, an infinity — is dropped with a record rather than carried. A
|
|
186
|
+
* parser cannot produce one, but `validate`'s input is `unknown` and a caller
|
|
187
|
+
* handing in a live JS object can; `JSON.stringify` would silently turn `NaN`
|
|
188
|
+
* into `null` several layers downstream, which is exactly the kind of quiet
|
|
189
|
+
* corruption a validator exists to stop.
|
|
190
|
+
*/
|
|
191
|
+
function walkLeaf(value, schema, context) {
|
|
192
|
+
if (!isConfigScalar(value)) {
|
|
193
|
+
record(context, {
|
|
194
|
+
code: "PILENS_CFG_0005",
|
|
195
|
+
key: pointerOf(context.path),
|
|
196
|
+
reason: `config value is not valid JSON data (${jsonTypeName(value)}); ignored`,
|
|
197
|
+
});
|
|
198
|
+
return DROPPED;
|
|
199
|
+
}
|
|
200
|
+
return checkEnum(value, schema, context) ? value : DROPPED;
|
|
201
|
+
}
|
|
202
|
+
function isConfigScalar(value) {
|
|
203
|
+
if (value === null)
|
|
204
|
+
return true;
|
|
205
|
+
const type = typeof value;
|
|
206
|
+
if (type === "string" || type === "boolean")
|
|
207
|
+
return true;
|
|
208
|
+
return type === "number" && Number.isFinite(value);
|
|
209
|
+
}
|
|
210
|
+
function walkObject(value, schema, context, depth, onPath) {
|
|
211
|
+
if (!isPlainObject(value)) {
|
|
212
|
+
record(context, {
|
|
213
|
+
code: "PILENS_CFG_0005",
|
|
214
|
+
key: pointerOf(context.path),
|
|
215
|
+
reason: `expected an object, got ${jsonTypeName(value)}; ignored`,
|
|
216
|
+
});
|
|
217
|
+
return DROPPED;
|
|
218
|
+
}
|
|
219
|
+
const nextPath = onPath.add(value);
|
|
220
|
+
const policy = additionalPropertyPolicy(schema);
|
|
221
|
+
const out = {};
|
|
222
|
+
for (const [name, child] of Object.entries(value)) {
|
|
223
|
+
// The prototype-key check runs BEFORE the schema is consulted. A schema
|
|
224
|
+
// could name `__proto__` as a property, and an open node keeps every key
|
|
225
|
+
// it is given; neither may reach the accumulator.
|
|
226
|
+
if (rejectUnsafeKey(name, context))
|
|
227
|
+
continue;
|
|
228
|
+
const childSchema = propertySchema(schema, name);
|
|
229
|
+
let effective = childSchema;
|
|
230
|
+
if (!childSchema) {
|
|
231
|
+
if (policy.kind === "drop") {
|
|
232
|
+
context.path.push(name);
|
|
233
|
+
record(context, {
|
|
234
|
+
code: "PILENS_CFG_0004",
|
|
235
|
+
key: pointerOf(context.path),
|
|
236
|
+
reason: "unknown config field; ignored",
|
|
237
|
+
});
|
|
238
|
+
context.path.pop();
|
|
239
|
+
continue;
|
|
240
|
+
}
|
|
241
|
+
// `keep` walks the child with no schema at all, which `walkOpaque`
|
|
242
|
+
// reads as fully open; `validate` walks it with the declared one.
|
|
243
|
+
effective = policy.kind === "validate" ? policy.schema : undefined;
|
|
244
|
+
}
|
|
245
|
+
context.path.push(name);
|
|
246
|
+
const walked = walk(child, effective, context, depth + 1, nextPath);
|
|
247
|
+
context.path.pop();
|
|
248
|
+
if (walked !== DROPPED)
|
|
249
|
+
safeAssign(out, name, walked);
|
|
250
|
+
}
|
|
251
|
+
nextPath.delete(value);
|
|
252
|
+
return out;
|
|
253
|
+
}
|
|
254
|
+
/** Record and refuse a prototype-modifying key. Returns true when refused. */
|
|
255
|
+
function rejectUnsafeKey(name, context) {
|
|
256
|
+
if (!isUnsafeConfigKey(name))
|
|
257
|
+
return false;
|
|
258
|
+
context.path.push(name);
|
|
259
|
+
record(context, {
|
|
260
|
+
code: "PILENS_CFG_0006",
|
|
261
|
+
key: pointerOf(context.path),
|
|
262
|
+
reason: UNSAFE_KEY_REASON,
|
|
263
|
+
});
|
|
264
|
+
context.path.pop();
|
|
265
|
+
return true;
|
|
266
|
+
}
|
|
267
|
+
function walkArray(value, schema, context, depth, onPath) {
|
|
268
|
+
if (!Array.isArray(value)) {
|
|
269
|
+
record(context, {
|
|
270
|
+
code: "PILENS_CFG_0005",
|
|
271
|
+
key: pointerOf(context.path),
|
|
272
|
+
reason: `expected an array, got ${jsonTypeName(value)}; ignored`,
|
|
273
|
+
});
|
|
274
|
+
return DROPPED;
|
|
275
|
+
}
|
|
276
|
+
const nextPath = onPath.add(value);
|
|
277
|
+
const items = itemsSchema(schema);
|
|
278
|
+
const out = [];
|
|
279
|
+
for (const [index, entry] of value.entries()) {
|
|
280
|
+
context.path.push(String(index));
|
|
281
|
+
const walked = walk(entry, items, context, depth + 1, nextPath);
|
|
282
|
+
context.path.pop();
|
|
283
|
+
if (walked !== DROPPED)
|
|
284
|
+
out.push(walked);
|
|
285
|
+
}
|
|
286
|
+
nextPath.delete(value);
|
|
287
|
+
return out;
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* Type PREDICATES, not plain booleans: a check that only returned `true` would
|
|
291
|
+
* leave the caller re-asserting the very fact it had just proved.
|
|
292
|
+
*/
|
|
293
|
+
const SCALAR_CHECKS = {
|
|
294
|
+
string: (value) => typeof value === "string",
|
|
295
|
+
number: (value) => typeof value === "number" && Number.isFinite(value),
|
|
296
|
+
integer: (value) => typeof value === "number" && Number.isInteger(value),
|
|
297
|
+
boolean: (value) => typeof value === "boolean",
|
|
298
|
+
null: (value) => value === null,
|
|
299
|
+
};
|
|
300
|
+
/**
|
|
301
|
+
* Check a node whose declared type is one of the five JSON scalars.
|
|
302
|
+
*
|
|
303
|
+
* `walk` has already established that `declared` is a recognized type and is
|
|
304
|
+
* neither `object` nor `array`, so the lookup always hits. That is why there is
|
|
305
|
+
* no pass-through arm here any more: the `!check` branch that used to return
|
|
306
|
+
* `value as ConfigValue` was the second of the two assertion sites F1 named,
|
|
307
|
+
* and the unrecognized-keyword case it existed for is now routed to
|
|
308
|
+
* `walkOpaque` by the caller.
|
|
309
|
+
*/
|
|
310
|
+
function walkScalar(value, schema, context, declared) {
|
|
311
|
+
const check = SCALAR_CHECKS[declared];
|
|
312
|
+
if (!check(value)) {
|
|
313
|
+
record(context, {
|
|
314
|
+
code: "PILENS_CFG_0005",
|
|
315
|
+
key: pointerOf(context.path),
|
|
316
|
+
reason: `expected ${declared}, got ${jsonTypeName(value)}; ignored`,
|
|
317
|
+
});
|
|
318
|
+
return DROPPED;
|
|
319
|
+
}
|
|
320
|
+
return checkEnum(value, schema, context) ? value : DROPPED;
|
|
321
|
+
}
|
|
322
|
+
/**
|
|
323
|
+
* Enforce a declared `enum`. The record names the ALLOWED members, which are
|
|
324
|
+
* schema text, and never the rejected value, which is user text.
|
|
325
|
+
*/
|
|
326
|
+
function checkEnum(value, schema, context) {
|
|
327
|
+
const allowed = schema?.enum;
|
|
328
|
+
if (!Array.isArray(allowed))
|
|
329
|
+
return true;
|
|
330
|
+
if (allowed.some((candidate) => Object.is(candidate, value)))
|
|
331
|
+
return true;
|
|
332
|
+
record(context, {
|
|
333
|
+
code: "PILENS_CFG_0005",
|
|
334
|
+
key: pointerOf(context.path),
|
|
335
|
+
reason: `value is not one of ${allowed
|
|
336
|
+
.map((candidate) => JSON.stringify(candidate))
|
|
337
|
+
.join(", ")}; ignored`,
|
|
338
|
+
});
|
|
339
|
+
return false;
|
|
340
|
+
}
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The trust-gated `ProcessSpec` (#2425, scope item 5).
|
|
3
|
+
*
|
|
4
|
+
* Today `createCustomServer` (`clients/lsp/config.ts`) builds an argv and an
|
|
5
|
+
* env straight out of project-local JSON, with no gate at that seam; the only
|
|
6
|
+
* trust check is far downstream in `lsp/index.ts`. This module is the type that
|
|
7
|
+
* makes the gate a property of the VALUE instead of a property of one call
|
|
8
|
+
* site: a spec knows which tier described it and what the host said about that
|
|
9
|
+
* tier's trust, and `toSpawnArgs` is the only way to get spawnable arguments
|
|
10
|
+
* out of it.
|
|
11
|
+
*
|
|
12
|
+
* THIS PR SPAWNS NOTHING. `toSpawnArgs` returns arguments; #2372 slice 2 hands
|
|
13
|
+
* them to `safeSpawnAsync` at `createCustomServer`. Keeping the decision pure
|
|
14
|
+
* is what lets the trust matrix be tested exhaustively without a child process.
|
|
15
|
+
*
|
|
16
|
+
* The gate, stated as a rule: a spec whose provenance tier is `project` or
|
|
17
|
+
* `nested-project` yields spawn arguments only when BOTH the spec's own trust
|
|
18
|
+
* decision and the host's CURRENT decision are `"trusted"`. Two conditions
|
|
19
|
+
* rather than one, because they fail differently:
|
|
20
|
+
*
|
|
21
|
+
* - the spec's `trust` is the decision that applied when the config was read;
|
|
22
|
+
* - `getProjectTrustState()` is the decision that applies now, and a session
|
|
23
|
+
* can revoke trust between the two. A spec that carried `trusted` in its own
|
|
24
|
+
* fields would otherwise be a permanent capability token.
|
|
25
|
+
*
|
|
26
|
+
* `unknown` does not pass for repo tiers. Elsewhere in pi-lens `unknown` is
|
|
27
|
+
* fail-open, because an older host that never had `isProjectTrusted` never had
|
|
28
|
+
* a decision to honor. Here it is fail-closed, and the asymmetry is deliberate:
|
|
29
|
+
* `isToolInstallAllowedByTrust` gates pi-lens's OWN managed tools, while this
|
|
30
|
+
* gates a command string a repository wrote.
|
|
31
|
+
*/
|
|
32
|
+
import { incrementDegradationCount } from "../degradation-ledger.js";
|
|
33
|
+
import { homeRelativePath } from "../path-utils.js";
|
|
34
|
+
import { getProjectTrustGeneration, getProjectTrustState, } from "../project-trust.js";
|
|
35
|
+
import { compareKeys, isRepoTier, } from "./provenance.js";
|
|
36
|
+
/** Longest argv a spec may carry. A command line, not a file list. */
|
|
37
|
+
export const MAX_ARGV_ENTRIES = 128;
|
|
38
|
+
/** Total argv bytes a spec may carry. */
|
|
39
|
+
const MAX_ARGV_BYTES = 32 * 1024;
|
|
40
|
+
/** Most env entries a spec may carry. */
|
|
41
|
+
export const MAX_ENV_ENTRIES = 64;
|
|
42
|
+
/** Total env bytes (names plus values) a spec may carry. */
|
|
43
|
+
export const MAX_ENV_BYTES = 16 * 1024;
|
|
44
|
+
/** Longest timeout a spec may declare, in milliseconds. */
|
|
45
|
+
export const MAX_TIMEOUT_MS = 10 * 60 * 1000;
|
|
46
|
+
const CWD_MODES = ["root", "file-dir"];
|
|
47
|
+
const INPUT_MODES = ["none", "stdin", "file"];
|
|
48
|
+
function byteLength(text) {
|
|
49
|
+
return Buffer.byteLength(text, "utf8");
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Validate an untrusted description into a `ProcessSpec`.
|
|
53
|
+
*
|
|
54
|
+
* Pure and side-effect-free: a rejection is returned, not logged. The caller
|
|
55
|
+
* knows which config file it was reading and turns the rejection into a
|
|
56
|
+
* `MigrationRecord`; this module does not guess at a subsystem.
|
|
57
|
+
*
|
|
58
|
+
* Over-cap env is REFUSED rather than truncated. Silently dropping half a
|
|
59
|
+
* process's environment produces a server that starts and then misbehaves,
|
|
60
|
+
* which is strictly worse to diagnose than one that does not start.
|
|
61
|
+
*/
|
|
62
|
+
export function buildProcessSpec(input) {
|
|
63
|
+
const argv = input.argv;
|
|
64
|
+
if (argv.length === 0) {
|
|
65
|
+
return reject("empty-argv", "argv is empty; a spec needs a command");
|
|
66
|
+
}
|
|
67
|
+
if (argv.length > MAX_ARGV_ENTRIES) {
|
|
68
|
+
return reject("argv-too-many", `argv has ${argv.length} entries, limit ${MAX_ARGV_ENTRIES}`);
|
|
69
|
+
}
|
|
70
|
+
if (!argv.every((entry) => typeof entry === "string")) {
|
|
71
|
+
return reject("argv-not-strings", "argv entries must all be strings");
|
|
72
|
+
}
|
|
73
|
+
const argvStrings = argv;
|
|
74
|
+
const argvBytes = argvStrings.reduce((total, entry) => total + byteLength(entry), 0);
|
|
75
|
+
if (argvBytes > MAX_ARGV_BYTES) {
|
|
76
|
+
return reject("argv-too-large", `argv is ${argvBytes} bytes, limit ${MAX_ARGV_BYTES}`);
|
|
77
|
+
}
|
|
78
|
+
if (argvStrings[0].length === 0) {
|
|
79
|
+
return reject("empty-argv", "argv[0] is empty; a spec needs a command");
|
|
80
|
+
}
|
|
81
|
+
const rawEnv = input.env ?? {};
|
|
82
|
+
const envNames = Object.keys(rawEnv);
|
|
83
|
+
if (envNames.length > MAX_ENV_ENTRIES) {
|
|
84
|
+
return reject("env-too-many", `env has ${envNames.length} entries, limit ${MAX_ENV_ENTRIES}`);
|
|
85
|
+
}
|
|
86
|
+
const env = {};
|
|
87
|
+
let envBytes = 0;
|
|
88
|
+
for (const name of envNames) {
|
|
89
|
+
const value = rawEnv[name];
|
|
90
|
+
if (typeof value !== "string") {
|
|
91
|
+
return reject("env-not-strings", "env values must all be strings");
|
|
92
|
+
}
|
|
93
|
+
envBytes += byteLength(name) + byteLength(value);
|
|
94
|
+
env[name] = value;
|
|
95
|
+
}
|
|
96
|
+
if (envBytes > MAX_ENV_BYTES) {
|
|
97
|
+
return reject("env-too-large", `env is ${envBytes} bytes, limit ${MAX_ENV_BYTES}`);
|
|
98
|
+
}
|
|
99
|
+
const cwdMode = input.cwdMode ?? "root";
|
|
100
|
+
if (!CWD_MODES.includes(cwdMode)) {
|
|
101
|
+
return reject("invalid-cwd-mode", "cwdMode must be root or file-dir");
|
|
102
|
+
}
|
|
103
|
+
const inputMode = input.inputMode ?? "none";
|
|
104
|
+
if (!INPUT_MODES.includes(inputMode)) {
|
|
105
|
+
return reject("invalid-input-mode", "inputMode must be none, stdin or file");
|
|
106
|
+
}
|
|
107
|
+
const timeoutMs = input.timeoutMs;
|
|
108
|
+
if (!Number.isFinite(timeoutMs) ||
|
|
109
|
+
timeoutMs <= 0 ||
|
|
110
|
+
timeoutMs > MAX_TIMEOUT_MS) {
|
|
111
|
+
return reject("invalid-timeout", `timeoutMs must be a finite value in (0, ${MAX_TIMEOUT_MS}]`);
|
|
112
|
+
}
|
|
113
|
+
return {
|
|
114
|
+
ok: true,
|
|
115
|
+
spec: {
|
|
116
|
+
argv: argvStrings,
|
|
117
|
+
env,
|
|
118
|
+
cwdMode,
|
|
119
|
+
inputMode,
|
|
120
|
+
timeoutMs,
|
|
121
|
+
provenance: input.provenance,
|
|
122
|
+
trust: input.trust ?? getProjectTrustState(),
|
|
123
|
+
},
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
function reject(code, reason) {
|
|
127
|
+
return { ok: false, rejection: { code, reason } };
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* The degradation kind a refusal records under, reusing `project-trust.ts`'s
|
|
131
|
+
* existing member rather than adding a parallel one. Aggregation across
|
|
132
|
+
* install refusals and spawn refusals is the same question.
|
|
133
|
+
*/
|
|
134
|
+
const TRUST_REFUSAL_KIND = "trust-refusal";
|
|
135
|
+
/**
|
|
136
|
+
* Turn a spec into spawn arguments, or refuse.
|
|
137
|
+
*
|
|
138
|
+
* Repo-tier specs need `spec.trust === "trusted"` AND a live host decision of
|
|
139
|
+
* `"trusted"`. Operator-tier specs (built-in, global, env, cli, host) pass:
|
|
140
|
+
* their content did not arrive with the checkout, and pi-lens's separate
|
|
141
|
+
* host-level spawn gate (`isLspSpawnAllowedByTrust`) still applies downstream.
|
|
142
|
+
*
|
|
143
|
+
* Refusals go through `incrementDegradationCount`, which is the repo's choke
|
|
144
|
+
* point for a REPEATED degradation: it writes the durable row on the first
|
|
145
|
+
* occurrence and at power-of-two milestones, keeps the exact count, is bounded
|
|
146
|
+
* per kind, and resets at `session_start` with the rest of the ledger. That is
|
|
147
|
+
* why there is no once-latch in this module to re-arm — a second latch mirroring
|
|
148
|
+
* the ledger is the defect the ledger exists to prevent.
|
|
149
|
+
*/
|
|
150
|
+
export function toSpawnArgs(spec) {
|
|
151
|
+
const tier = spec.provenance.tier;
|
|
152
|
+
if (!isRepoTier(tier)) {
|
|
153
|
+
return { ok: true, args: spawnArgsOf(spec) };
|
|
154
|
+
}
|
|
155
|
+
const hostTrust = getProjectTrustState();
|
|
156
|
+
if (spec.trust !== "trusted") {
|
|
157
|
+
return refuse(spec, "spec-trust", hostTrust);
|
|
158
|
+
}
|
|
159
|
+
if (hostTrust !== "trusted") {
|
|
160
|
+
return refuse(spec, "host-trust", hostTrust);
|
|
161
|
+
}
|
|
162
|
+
return { ok: true, args: spawnArgsOf(spec) };
|
|
163
|
+
}
|
|
164
|
+
function spawnArgsOf(spec) {
|
|
165
|
+
return {
|
|
166
|
+
argv: spec.argv,
|
|
167
|
+
env: spec.env,
|
|
168
|
+
cwdMode: spec.cwdMode,
|
|
169
|
+
inputMode: spec.inputMode,
|
|
170
|
+
timeoutMs: spec.timeoutMs,
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
function refuse(spec, cause, hostTrust) {
|
|
174
|
+
const tier = spec.provenance.tier;
|
|
175
|
+
const command = spec.argv[0];
|
|
176
|
+
const reason = cause === "spec-trust"
|
|
177
|
+
? `${tier} config command refused: config trust is ${spec.trust}`
|
|
178
|
+
: `${tier} config command refused: host trust is now ${hostTrust}`;
|
|
179
|
+
const trustGeneration = getProjectTrustGeneration();
|
|
180
|
+
const refusal = {
|
|
181
|
+
kind: "trust-refusal",
|
|
182
|
+
cause,
|
|
183
|
+
reason,
|
|
184
|
+
tier,
|
|
185
|
+
command,
|
|
186
|
+
specTrust: spec.trust,
|
|
187
|
+
hostTrust,
|
|
188
|
+
trustGeneration,
|
|
189
|
+
};
|
|
190
|
+
// Subject carries the trust GENERATION, the tier, and argv[0] only: enough to
|
|
191
|
+
// say which command was refused and in which trust episode, never enough to
|
|
192
|
+
// leak an argument or an env value.
|
|
193
|
+
//
|
|
194
|
+
// The generation belongs in the SUBJECT, not only in the metadata (#2440
|
|
195
|
+
// review finding F6). `incrementDegradationCount` keys its tally on
|
|
196
|
+
// `kind\0subject` and writes a durable row on the first occurrence and at
|
|
197
|
+
// power-of-two milestones. A generation-free subject therefore made one
|
|
198
|
+
// unbroken count across every trust episode of a session: revoke, refuse
|
|
199
|
+
// three times, re-grant, revoke again, and the next refusal is count 4 — not
|
|
200
|
+
// a power of two, so the second episode produces NO durable row at all and
|
|
201
|
+
// the count a reader sees does not describe either episode. Re-arming the
|
|
202
|
+
// subject per generation makes each episode its own bounded, durably-recorded
|
|
203
|
+
// series, which is what a per-episode question needs.
|
|
204
|
+
incrementDegradationCount({
|
|
205
|
+
kind: TRUST_REFUSAL_KIND,
|
|
206
|
+
subject: `config-command:g${trustGeneration}:${tier}:${command}`,
|
|
207
|
+
reason,
|
|
208
|
+
metadata: {
|
|
209
|
+
cause,
|
|
210
|
+
specTrust: spec.trust,
|
|
211
|
+
hostTrust,
|
|
212
|
+
trustGeneration,
|
|
213
|
+
configKey: spec.provenance.key,
|
|
214
|
+
},
|
|
215
|
+
});
|
|
216
|
+
return { ok: false, refusal };
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* The ONLY projection of a spec for diagnostics or telemetry.
|
|
220
|
+
*
|
|
221
|
+
* Strips env VALUES and every argv entry after `argv[0]` (#2415 AC 4). Both are
|
|
222
|
+
* places a secret genuinely lives: a token in `--header`, a key in an env value.
|
|
223
|
+
* Env NAMES survive because a name is a label, and "which variables did this
|
|
224
|
+
* server get" is the question an operator actually asks.
|
|
225
|
+
*/
|
|
226
|
+
export function redactProcessSpec(spec) {
|
|
227
|
+
return {
|
|
228
|
+
command: spec.argv[0],
|
|
229
|
+
argvCount: spec.argv.length,
|
|
230
|
+
// `compareKeys`, not a bare `.sort()` (Sonar S2871) and not
|
|
231
|
+
// `localeCompare`: this projection is compared across machines, so its
|
|
232
|
+
// ordering may not depend on the machine's locale.
|
|
233
|
+
envNames: Object.keys(spec.env).sort(compareKeys),
|
|
234
|
+
envCount: Object.keys(spec.env).length,
|
|
235
|
+
cwdMode: spec.cwdMode,
|
|
236
|
+
inputMode: spec.inputMode,
|
|
237
|
+
timeoutMs: spec.timeoutMs,
|
|
238
|
+
tier: spec.provenance.tier,
|
|
239
|
+
configKey: spec.provenance.key,
|
|
240
|
+
// Home-relative for the same reason `provenanceView` is: a spec read from
|
|
241
|
+
// the operator's global config would otherwise put their account name on
|
|
242
|
+
// every diagnostic that named the file.
|
|
243
|
+
...(spec.provenance.file === undefined
|
|
244
|
+
? {}
|
|
245
|
+
: { file: homeRelativePath(spec.provenance.file) }),
|
|
246
|
+
trust: spec.trust,
|
|
247
|
+
};
|
|
248
|
+
}
|