pi-lens 3.8.45 → 3.8.47
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/CHANGELOG.md +2529 -2425
- package/README.md +117 -109
- package/clients/actionable-warnings-logger.ts +65 -0
- package/clients/actionable-warnings.ts +653 -0
- package/clients/biome-client.ts +82 -30
- package/clients/cache/rule-cache.ts +4 -1
- package/clients/cascade-logger.ts +6 -7
- package/clients/cascade-types.ts +19 -0
- package/clients/code-quality-warnings.ts +313 -0
- package/clients/diagnostic-logger.ts +2 -4
- package/clients/dispatch/dispatcher.ts +14 -8
- package/clients/dispatch/integration.ts +88 -25
- package/clients/dispatch/plan.ts +4 -3
- package/clients/dispatch/rules/quality-rules.ts +1 -1
- package/clients/dispatch/rules/sonar-rules.ts +45 -71
- package/clients/dispatch/runners/actionlint.ts +145 -0
- package/clients/dispatch/runners/cpp-check.ts +44 -17
- package/clients/dispatch/runners/dart-analyze.ts +101 -8
- package/clients/dispatch/runners/detekt.ts +82 -4
- package/clients/dispatch/runners/dotnet-build.ts +1 -0
- package/clients/dispatch/runners/go-vet.ts +1 -0
- package/clients/dispatch/runners/golangci-lint.ts +49 -0
- package/clients/dispatch/runners/index.ts +2 -0
- package/clients/dispatch/runners/lsp.ts +22 -4
- package/clients/dispatch/runners/markdownlint.ts +44 -0
- package/clients/dispatch/runners/mypy.ts +1 -0
- package/clients/dispatch/runners/oxlint.ts +84 -20
- package/clients/dispatch/runners/pyright.ts +1 -0
- package/clients/dispatch/runners/rust-clippy.ts +52 -16
- package/clients/dispatch/runners/similarity.ts +5 -10
- package/clients/dispatch/runners/sqlfluff.ts +66 -0
- package/clients/dispatch/runners/stylelint.ts +44 -0
- package/clients/dispatch/runners/swiftlint.ts +71 -1
- package/clients/dispatch/runners/tree-sitter.ts +2 -1
- package/clients/dispatch/runners/type-safety.ts +3 -0
- package/clients/dispatch/runners/utils/diagnostic-parsers.ts +10 -1
- package/clients/dispatch/runners/utils/runner-helpers.ts +2 -2
- package/clients/dispatch/types.ts +2 -0
- package/clients/env-utils.ts +45 -0
- package/clients/file-role.ts +5 -31
- package/clients/file-utils.ts +287 -21
- package/clients/generated-artifacts.ts +140 -0
- package/clients/indent-retarget.ts +90 -0
- package/clients/installer/index.ts +32 -7
- package/clients/jscpd-client.ts +13 -2
- package/clients/latency-logger.ts +4 -6
- package/clients/lens-config.ts +83 -0
- package/clients/lens-events.ts +151 -0
- package/clients/log-cleanup.ts +2 -2
- package/clients/lsp/client.ts +71 -30
- package/clients/lsp/edits.ts +294 -0
- package/clients/lsp/index.ts +119 -31
- package/clients/lsp/launch.ts +23 -8
- package/clients/lsp/server.ts +117 -21
- package/clients/metrics-history.ts +1 -0
- package/clients/oldtext-autopatch.ts +114 -0
- package/clients/partial-edit-apply.ts +76 -0
- package/clients/path-utils.ts +41 -0
- package/clients/pipeline.ts +101 -33
- package/clients/project-changes.ts +112 -0
- package/clients/project-conventions.ts +215 -0
- package/clients/project-scan-policy.ts +79 -0
- package/clients/project-snapshot.ts +221 -0
- package/clients/read-guard-logger.ts +28 -11
- package/clients/read-guard-tool-lines.ts +422 -18
- package/clients/read-guard.ts +350 -7
- package/clients/reverse-deps.ts +244 -0
- package/clients/review-graph/builder.ts +66 -14
- package/clients/review-graph/workspace-modules.ts +20 -5
- package/clients/ruff-client.ts +17 -2
- package/clients/runtime-agent-end.ts +176 -18
- package/clients/runtime-config.ts +48 -0
- package/clients/runtime-coordinator.ts +122 -13
- package/clients/runtime-session.ts +151 -21
- package/clients/runtime-tool-result.ts +233 -23
- package/clients/runtime-turn.ts +148 -3
- package/clients/semgrep-config.ts +9 -19
- package/clients/sg-runner.ts +48 -5
- package/clients/source-filter.ts +72 -20
- package/clients/startup-scan.ts +12 -4
- package/clients/tool-policy.ts +18 -18
- package/clients/tree-sitter-client.ts +6 -2
- package/clients/tree-sitter-logger.ts +4 -6
- package/clients/widget-state.ts +257 -63
- package/commands/booboo.ts +4 -6
- package/index.ts +358 -44
- package/package.json +2 -2
- package/rules/ast-grep-rules/rule-schema.json +130 -0
- package/rules/tree-sitter-queries/rule-schema.json +136 -0
- package/scripts/analyze-pi-lens-logs.mjs +75 -7
- package/skills/ast-grep/SKILL.md +35 -24
- package/skills/lsp-navigation/SKILL.md +52 -68
- package/skills/write-ast-grep-rule/SKILL.md +68 -0
- package/skills/write-tree-sitter-rule/SKILL.md +86 -0
- package/tools/lsp-navigation.js +28 -4
- package/tools/lsp-navigation.ts +38 -3
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.