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.
Files changed (96) hide show
  1. package/CHANGELOG.md +2529 -2425
  2. package/README.md +117 -109
  3. package/clients/actionable-warnings-logger.ts +65 -0
  4. package/clients/actionable-warnings.ts +653 -0
  5. package/clients/biome-client.ts +82 -30
  6. package/clients/cache/rule-cache.ts +4 -1
  7. package/clients/cascade-logger.ts +6 -7
  8. package/clients/cascade-types.ts +19 -0
  9. package/clients/code-quality-warnings.ts +313 -0
  10. package/clients/diagnostic-logger.ts +2 -4
  11. package/clients/dispatch/dispatcher.ts +14 -8
  12. package/clients/dispatch/integration.ts +88 -25
  13. package/clients/dispatch/plan.ts +4 -3
  14. package/clients/dispatch/rules/quality-rules.ts +1 -1
  15. package/clients/dispatch/rules/sonar-rules.ts +45 -71
  16. package/clients/dispatch/runners/actionlint.ts +145 -0
  17. package/clients/dispatch/runners/cpp-check.ts +44 -17
  18. package/clients/dispatch/runners/dart-analyze.ts +101 -8
  19. package/clients/dispatch/runners/detekt.ts +82 -4
  20. package/clients/dispatch/runners/dotnet-build.ts +1 -0
  21. package/clients/dispatch/runners/go-vet.ts +1 -0
  22. package/clients/dispatch/runners/golangci-lint.ts +49 -0
  23. package/clients/dispatch/runners/index.ts +2 -0
  24. package/clients/dispatch/runners/lsp.ts +22 -4
  25. package/clients/dispatch/runners/markdownlint.ts +44 -0
  26. package/clients/dispatch/runners/mypy.ts +1 -0
  27. package/clients/dispatch/runners/oxlint.ts +84 -20
  28. package/clients/dispatch/runners/pyright.ts +1 -0
  29. package/clients/dispatch/runners/rust-clippy.ts +52 -16
  30. package/clients/dispatch/runners/similarity.ts +5 -10
  31. package/clients/dispatch/runners/sqlfluff.ts +66 -0
  32. package/clients/dispatch/runners/stylelint.ts +44 -0
  33. package/clients/dispatch/runners/swiftlint.ts +71 -1
  34. package/clients/dispatch/runners/tree-sitter.ts +2 -1
  35. package/clients/dispatch/runners/type-safety.ts +3 -0
  36. package/clients/dispatch/runners/utils/diagnostic-parsers.ts +10 -1
  37. package/clients/dispatch/runners/utils/runner-helpers.ts +2 -2
  38. package/clients/dispatch/types.ts +2 -0
  39. package/clients/env-utils.ts +45 -0
  40. package/clients/file-role.ts +5 -31
  41. package/clients/file-utils.ts +287 -21
  42. package/clients/generated-artifacts.ts +140 -0
  43. package/clients/indent-retarget.ts +90 -0
  44. package/clients/installer/index.ts +32 -7
  45. package/clients/jscpd-client.ts +13 -2
  46. package/clients/latency-logger.ts +4 -6
  47. package/clients/lens-config.ts +83 -0
  48. package/clients/lens-events.ts +151 -0
  49. package/clients/log-cleanup.ts +2 -2
  50. package/clients/lsp/client.ts +71 -30
  51. package/clients/lsp/edits.ts +294 -0
  52. package/clients/lsp/index.ts +119 -31
  53. package/clients/lsp/launch.ts +23 -8
  54. package/clients/lsp/server.ts +117 -21
  55. package/clients/metrics-history.ts +1 -0
  56. package/clients/oldtext-autopatch.ts +114 -0
  57. package/clients/partial-edit-apply.ts +76 -0
  58. package/clients/path-utils.ts +41 -0
  59. package/clients/pipeline.ts +101 -33
  60. package/clients/project-changes.ts +112 -0
  61. package/clients/project-conventions.ts +215 -0
  62. package/clients/project-scan-policy.ts +79 -0
  63. package/clients/project-snapshot.ts +221 -0
  64. package/clients/read-guard-logger.ts +28 -11
  65. package/clients/read-guard-tool-lines.ts +422 -18
  66. package/clients/read-guard.ts +350 -7
  67. package/clients/reverse-deps.ts +244 -0
  68. package/clients/review-graph/builder.ts +66 -14
  69. package/clients/review-graph/workspace-modules.ts +20 -5
  70. package/clients/ruff-client.ts +17 -2
  71. package/clients/runtime-agent-end.ts +176 -18
  72. package/clients/runtime-config.ts +48 -0
  73. package/clients/runtime-coordinator.ts +122 -13
  74. package/clients/runtime-session.ts +151 -21
  75. package/clients/runtime-tool-result.ts +233 -23
  76. package/clients/runtime-turn.ts +148 -3
  77. package/clients/semgrep-config.ts +9 -19
  78. package/clients/sg-runner.ts +48 -5
  79. package/clients/source-filter.ts +72 -20
  80. package/clients/startup-scan.ts +12 -4
  81. package/clients/tool-policy.ts +18 -18
  82. package/clients/tree-sitter-client.ts +6 -2
  83. package/clients/tree-sitter-logger.ts +4 -6
  84. package/clients/widget-state.ts +257 -63
  85. package/commands/booboo.ts +4 -6
  86. package/index.ts +358 -44
  87. package/package.json +2 -2
  88. package/rules/ast-grep-rules/rule-schema.json +130 -0
  89. package/rules/tree-sitter-queries/rule-schema.json +136 -0
  90. package/scripts/analyze-pi-lens-logs.mjs +75 -7
  91. package/skills/ast-grep/SKILL.md +35 -24
  92. package/skills/lsp-navigation/SKILL.md +52 -68
  93. package/skills/write-ast-grep-rule/SKILL.md +68 -0
  94. package/skills/write-tree-sitter-rule/SKILL.md +86 -0
  95. package/tools/lsp-navigation.js +28 -4
  96. 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.