pi-lens 2.0.35 → 2.0.37

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 (2) hide show
  1. package/index.ts +4 -0
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -582,6 +582,10 @@ export default function (pi: ExtensionAPI) {
582
582
  }
583
583
 
584
584
  // Part 9: Architectural Rules
585
+ // Reload config in case it was added after session start
586
+ if (!architectClient.hasConfig()) {
587
+ architectClient.loadConfig(projectRoot);
588
+ }
585
589
  if (architectClient.hasConfig()) {
586
590
  const archViolations: Array<{ file: string; message: string }> = [];
587
591
  const archScanDir = (dir: string) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-lens",
3
- "version": "2.0.35",
3
+ "version": "2.0.37",
4
4
  "description": "Real-time code quality feedback for pi — TypeScript LSP, Biome, ast-grep, Ruff, complexity metrics, duplicate detection. Includes automated fix loop (/lens-booboo-fix) and interactive architectural refactoring (/lens-booboo-refactor) with browser-based interviews.",
5
5
  "repository": {
6
6
  "type": "git",