pi-lens 3.8.43 → 3.8.45

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 (108) hide show
  1. package/CHANGELOG.md +2425 -2311
  2. package/README.md +70 -42
  3. package/clients/ast-grep-client.ts +54 -22
  4. package/clients/cache/rule-cache.ts +2 -1
  5. package/clients/dependency-checker.ts +82 -39
  6. package/clients/dispatch/dispatcher.ts +49 -0
  7. package/clients/dispatch/integration.ts +75 -2
  8. package/clients/dispatch/plan.ts +10 -2
  9. package/clients/dispatch/runners/biome.ts +1 -1
  10. package/clients/dispatch/runners/cpp-check.ts +93 -17
  11. package/clients/dispatch/runners/dart-analyze.ts +17 -11
  12. package/clients/dispatch/runners/detekt.ts +4 -1
  13. package/clients/dispatch/runners/dotnet-build.ts +93 -8
  14. package/clients/dispatch/runners/fish-indent.ts +83 -0
  15. package/clients/dispatch/runners/gleam-check.ts +4 -2
  16. package/clients/dispatch/runners/go-vet.ts +8 -8
  17. package/clients/dispatch/runners/hadolint.ts +1 -1
  18. package/clients/dispatch/runners/htmlhint.ts +1 -1
  19. package/clients/dispatch/runners/index.ts +6 -0
  20. package/clients/dispatch/runners/javac.ts +99 -94
  21. package/clients/dispatch/runners/ktlint.ts +1 -1
  22. package/clients/dispatch/runners/markdownlint.ts +88 -88
  23. package/clients/dispatch/runners/mypy.ts +88 -88
  24. package/clients/dispatch/runners/php-lint.ts +82 -79
  25. package/clients/dispatch/runners/phpstan.ts +4 -3
  26. package/clients/dispatch/runners/prisma-validate.ts +8 -5
  27. package/clients/dispatch/runners/psscriptanalyzer.ts +22 -3
  28. package/clients/dispatch/runners/pyright.ts +1 -1
  29. package/clients/dispatch/runners/python-slop.ts +4 -5
  30. package/clients/dispatch/runners/rust-clippy.ts +9 -9
  31. package/clients/dispatch/runners/semgrep.ts +3 -1
  32. package/clients/dispatch/runners/shellcheck.ts +195 -195
  33. package/clients/dispatch/runners/shfmt.ts +100 -100
  34. package/clients/dispatch/runners/spellcheck.ts +145 -143
  35. package/clients/dispatch/runners/sqlfluff.ts +108 -108
  36. package/clients/dispatch/runners/stylelint.ts +3 -1
  37. package/clients/dispatch/runners/swiftlint.ts +129 -0
  38. package/clients/dispatch/runners/taplo.ts +1 -1
  39. package/clients/dispatch/runners/tflint.ts +1 -1
  40. package/clients/dispatch/runners/tree-sitter.ts +164 -54
  41. package/clients/dispatch/runners/utils/runner-helpers.ts +172 -46
  42. package/clients/dispatch/runners/vale.ts +175 -0
  43. package/clients/dispatch/runners/yamllint.ts +92 -92
  44. package/clients/dispatch/runners/zig-check.ts +1 -1
  45. package/clients/dispatch/types.ts +3 -2
  46. package/clients/feature-hints.ts +79 -0
  47. package/clients/file-kinds.ts +7 -1
  48. package/clients/file-role.ts +7 -0
  49. package/clients/formatters.ts +6 -3
  50. package/clients/go-client.ts +1 -1
  51. package/clients/installer/index.ts +169 -40
  52. package/clients/jscpd-client.ts +59 -60
  53. package/clients/knip-client.ts +437 -357
  54. package/clients/language-policy.ts +19 -3
  55. package/clients/language-profile.ts +22 -0
  56. package/clients/latency-logger.ts +2 -0
  57. package/clients/lens-config.ts +94 -0
  58. package/clients/lsp/client.ts +66 -7
  59. package/clients/lsp/index.ts +128 -16
  60. package/clients/lsp/server-strategies.ts +6 -3
  61. package/clients/lsp/server.ts +208 -16
  62. package/clients/read-expansion.ts +72 -6
  63. package/clients/read-guard.ts +148 -17
  64. package/clients/review-graph/builder.ts +322 -37
  65. package/clients/review-graph/query.ts +55 -10
  66. package/clients/review-graph/service.ts +12 -8
  67. package/clients/review-graph/workspace-modules.ts +482 -0
  68. package/clients/runtime-session.ts +30 -31
  69. package/clients/runtime-turn.ts +129 -72
  70. package/clients/rust-client.ts +1 -1
  71. package/clients/safe-spawn.ts +24 -14
  72. package/clients/sg-runner.ts +136 -86
  73. package/clients/source-groups.ts +140 -0
  74. package/clients/test-runner-client.ts +37 -2
  75. package/clients/tool-availability.ts +1 -1
  76. package/clients/tool-policy.ts +46 -3
  77. package/clients/tree-sitter-client.ts +232 -4
  78. package/clients/tree-sitter-query-loader.ts +39 -8
  79. package/clients/tree-sitter-symbol-extractor.ts +54 -0
  80. package/commands/booboo.ts +36 -10
  81. package/index.ts +39 -20
  82. package/package.json +3 -1
  83. package/rules/tree-sitter-queries/c/hardcoded-secrets.yml +55 -0
  84. package/rules/tree-sitter-queries/c/memset-sensitive-data.yml +50 -0
  85. package/rules/tree-sitter-queries/c/no-bit-fields.yml +48 -0
  86. package/rules/tree-sitter-queries/c/no-octal-literals.yml +46 -0
  87. package/rules/tree-sitter-queries/c/no-pointer-arithmetic-array-access.yml +50 -0
  88. package/rules/tree-sitter-queries/c/no-redundant-pointer-ops.yml +57 -0
  89. package/rules/tree-sitter-queries/c/no-reserved-identifiers.yml +49 -0
  90. package/rules/tree-sitter-queries/c/no-stdlib-name-as-id.yml +53 -0
  91. package/rules/tree-sitter-queries/c/non-case-label-in-switch.yml +56 -0
  92. package/rules/tree-sitter-queries/c/noreturn-returns.yml +60 -0
  93. package/rules/tree-sitter-queries/python/python-sql-injection.yml +3 -2
  94. package/rules/tree-sitter-queries/python/return-in-generator.yml +5 -5
  95. package/scripts/analyze-pi-lens-logs.mjs +1015 -0
  96. package/skills/ast-grep/SKILL.md +17 -14
  97. package/skills/lsp-navigation/SKILL.md +45 -30
  98. package/tools/ast-grep-replace.js +6 -1
  99. package/tools/ast-grep-replace.ts +6 -1
  100. package/tools/ast-grep-search.js +63 -6
  101. package/tools/ast-grep-search.ts +76 -8
  102. package/tools/lsp-diagnostics.js +510 -0
  103. package/tools/lsp-diagnostics.ts +706 -0
  104. package/tools/lsp-navigation.js +128 -8
  105. package/tools/lsp-navigation.ts +193 -10
  106. package/tools/shared.js +3 -2
  107. package/tools/shared.ts +3 -2
  108. /package/rules/tree-sitter-queries/{c → c-disabled}/case-range-multiple-values.yml +0 -0

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.