milens 0.6.5 → 0.6.7

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 (102) hide show
  1. package/.agents/skills/adapters/SKILL.md +14 -14
  2. package/.agents/skills/analyzer/SKILL.md +26 -24
  3. package/.agents/skills/apps/SKILL.md +10 -8
  4. package/.agents/skills/docs/SKILL.md +14 -8
  5. package/.agents/skills/milens/SKILL.md +164 -43
  6. package/.agents/skills/milens-security-review/SKILL.md +224 -224
  7. package/.agents/skills/orchestrator/SKILL.md +3 -1
  8. package/.agents/skills/parser/SKILL.md +16 -15
  9. package/.agents/skills/root/SKILL.md +20 -20
  10. package/.agents/skills/security/SKILL.md +1 -0
  11. package/.agents/skills/server/SKILL.md +13 -12
  12. package/.agents/skills/store/SKILL.md +12 -12
  13. package/.agents/skills/test/SKILL.md +57 -26
  14. package/README.md +170 -171
  15. package/adapters/claude-code/CLAUDE.md +36 -15
  16. package/adapters/codex/.codex/codex.md +38 -23
  17. package/adapters/copilot/.github/copilot-instructions.md +29 -22
  18. package/adapters/gemini/.gemini/context.md +33 -10
  19. package/adapters/opencode/AGENTS.md +36 -15
  20. package/dist/agents-md.d.ts.map +1 -1
  21. package/dist/agents-md.js +51 -2
  22. package/dist/agents-md.js.map +1 -1
  23. package/dist/analyzer/engine.d.ts +3 -0
  24. package/dist/analyzer/engine.d.ts.map +1 -1
  25. package/dist/analyzer/engine.js +342 -8
  26. package/dist/analyzer/engine.js.map +1 -1
  27. package/dist/analyzer/resolver.d.ts +2 -0
  28. package/dist/analyzer/resolver.d.ts.map +1 -1
  29. package/dist/analyzer/resolver.js +187 -9
  30. package/dist/analyzer/resolver.js.map +1 -1
  31. package/dist/analyzer/review.d.ts.map +1 -1
  32. package/dist/analyzer/review.js +254 -32
  33. package/dist/analyzer/review.js.map +1 -1
  34. package/dist/analyzer/scope-resolver.d.ts +42 -0
  35. package/dist/analyzer/scope-resolver.d.ts.map +1 -0
  36. package/dist/analyzer/scope-resolver.js +687 -0
  37. package/dist/analyzer/scope-resolver.js.map +1 -0
  38. package/dist/cli.js +294 -1
  39. package/dist/cli.js.map +1 -1
  40. package/dist/parser/extract.d.ts +6 -1
  41. package/dist/parser/extract.d.ts.map +1 -1
  42. package/dist/parser/extract.js +14 -2
  43. package/dist/parser/extract.js.map +1 -1
  44. package/dist/parser/lang-css.d.ts.map +1 -1
  45. package/dist/parser/lang-css.js +7 -1
  46. package/dist/parser/lang-css.js.map +1 -1
  47. package/dist/parser/lang-go.d.ts.map +1 -1
  48. package/dist/parser/lang-go.js +16 -0
  49. package/dist/parser/lang-go.js.map +1 -1
  50. package/dist/parser/lang-html.d.ts +4 -0
  51. package/dist/parser/lang-html.d.ts.map +1 -1
  52. package/dist/parser/lang-html.js +40 -1
  53. package/dist/parser/lang-html.js.map +1 -1
  54. package/dist/parser/lang-java.d.ts.map +1 -1
  55. package/dist/parser/lang-java.js +12 -0
  56. package/dist/parser/lang-java.js.map +1 -1
  57. package/dist/parser/lang-js.d.ts.map +1 -1
  58. package/dist/parser/lang-js.js +3 -0
  59. package/dist/parser/lang-js.js.map +1 -1
  60. package/dist/parser/lang-php.d.ts.map +1 -1
  61. package/dist/parser/lang-php.js +11 -0
  62. package/dist/parser/lang-php.js.map +1 -1
  63. package/dist/parser/lang-py.d.ts.map +1 -1
  64. package/dist/parser/lang-py.js +14 -0
  65. package/dist/parser/lang-py.js.map +1 -1
  66. package/dist/parser/lang-ruby.d.ts.map +1 -1
  67. package/dist/parser/lang-ruby.js +20 -0
  68. package/dist/parser/lang-ruby.js.map +1 -1
  69. package/dist/parser/lang-rust.d.ts.map +1 -1
  70. package/dist/parser/lang-rust.js +27 -4
  71. package/dist/parser/lang-rust.js.map +1 -1
  72. package/dist/parser/lang-ts.d.ts.map +1 -1
  73. package/dist/parser/lang-ts.js +3 -0
  74. package/dist/parser/lang-ts.js.map +1 -1
  75. package/dist/parser/lang-vue.d.ts +17 -1
  76. package/dist/parser/lang-vue.d.ts.map +1 -1
  77. package/dist/parser/lang-vue.js +177 -0
  78. package/dist/parser/lang-vue.js.map +1 -1
  79. package/dist/parser/language-provider.d.ts +27 -0
  80. package/dist/parser/language-provider.d.ts.map +1 -0
  81. package/dist/parser/language-provider.js +2 -0
  82. package/dist/parser/language-provider.js.map +1 -0
  83. package/dist/server/mcp.d.ts.map +1 -1
  84. package/dist/server/mcp.js +224 -50
  85. package/dist/server/mcp.js.map +1 -1
  86. package/dist/server/watcher.d.ts +8 -0
  87. package/dist/server/watcher.d.ts.map +1 -1
  88. package/dist/server/watcher.js +10 -8
  89. package/dist/server/watcher.js.map +1 -1
  90. package/dist/skills.js +163 -42
  91. package/dist/skills.js.map +1 -1
  92. package/dist/store/schema.sql +1 -1
  93. package/dist/ui/progress.d.ts +28 -0
  94. package/dist/ui/progress.d.ts.map +1 -0
  95. package/dist/ui/progress.js +100 -0
  96. package/dist/ui/progress.js.map +1 -0
  97. package/dist/uninstall.d.ts +54 -0
  98. package/dist/uninstall.d.ts.map +1 -0
  99. package/dist/uninstall.js +795 -0
  100. package/dist/uninstall.js.map +1 -0
  101. package/docs/README.md +4 -1
  102. package/package.json +1 -1
@@ -26,10 +26,10 @@ When working with code in **server/**, follow these mandatory safety rules:
26
26
  | See file symbols | `mcp_milens_get_file_symbols` |
27
27
 
28
28
  ## Overview
29
- Contains 81 symbols (15 exported) across 4 files.
29
+ Contains 99 symbols (16 exported) across 5 files.
30
30
 
31
31
  ## Key Symbols
32
- - **`HookManager`** [class] (src/server/hooks.ts:43) — 6 refs
32
+ - **`HookManager`** [class] (src/server/hooks.ts:43) — 8 refs
33
33
  - **`HookConfig`** [interface] (src/server/hooks.ts:5) — 5 refs
34
34
  - **`defaultOnSessionStart`** [function] (src/server/hooks.ts:100) — 4 refs
35
35
  - **`defaultOnSessionEnd`** [function] (src/server/hooks.ts:164) — 4 refs
@@ -39,27 +39,27 @@ Contains 81 symbols (15 exported) across 4 files.
39
39
  - **`defaultOnPostCompact`** [function] (src/server/hooks.ts:358) — 4 refs
40
40
  - **`SessionContext`** [interface] (src/server/hooks.ts:15) — 4 refs
41
41
  - **`registerAllPrompts`** [function] (src/server/mcp-prompts.ts:637) — 4 refs
42
- - **`createMcpServer`** [function] (src/server/mcp.ts:369) — 4 refs
42
+ - **`createMcpServer`** [function] (src/server/mcp.ts:420) — 4 refs
43
43
  - **`generateTestPlan`** [function] (src/server/test-plan.ts:14) — 4 refs
44
- - **`startStdio`** [function] (src/server/mcp.ts:2716) — 2 refs
45
- - **`startHttp`** [function] (src/server/mcp.ts:2724) — 2 refs
46
- - **`TestPlan`** [interface] (src/server/test-plan.ts:3) — 1 refs
44
+ - **`FileWatcher`** [class] (src/server/watcher.ts:50) — 3 refs
45
+ - **`startStdio`** [function] (src/server/mcp.ts:2907) — 2 refs
46
+ - **`startHttp`** [function] (src/server/mcp.ts:2946) — 2 refs
47
47
 
48
48
  ## Entry Points
49
- - **`get`** [method] — 9 incoming references
50
- - **`HookManager`** [class] — 6 incoming references
51
- - **`loadConfig`** [method] — 5 incoming references
49
+ - **`get`** [method] — 12 incoming references
50
+ - **`HookManager`** [class] — 8 incoming references
51
+ - **`loadConfig`** [method] — 7 incoming references
52
52
  - **`HookConfig`** [interface] — 5 incoming references
53
53
  - **`defaultOnSessionStart`** [function] — 4 incoming references
54
54
 
55
55
  ## Dependencies
56
- - **store**: `Database`, `AnnotationStore`, `RepoRegistry`, `runDecayPass`, `getCodebaseSummary`, `recall`, `close`, `getStats` (+37 more)
57
- - **analyzer**: `reviewPr`, `resolve`, `find`
56
+ - **store**: `Database`, `AnnotationStore`, `RepoRegistry`, `runDecayPass`, `getCodebaseSummary`, `recall`, `close`, `getStats` (+36 more)
57
+ - **analyzer**: `reviewPr`, `analyze`, `resolve`, `clear`
58
58
  - **parser**: `getParser`, `loadLanguage`, `ALL_LANGS`
59
59
  - **security**: `loadRules`
60
60
  - **orchestrator**: `Orchestrator`, `snapshot`, `compare`, `runAndFormat`
61
61
  - **root**: `has`
62
- - **test**: `dbPath`
62
+ - **test**: `add`, `dbPath`
63
63
 
64
64
  ## Used By
65
65
  - **root**: `startHttp`, `startStdio`, `HookManager`, `get`, `enableHook`, `loadConfig`, `saveConfig`, `disableHook`
@@ -70,3 +70,4 @@ Contains 81 symbols (15 exported) across 4 files.
70
70
  - src/server/mcp-prompts.ts
71
71
  - src/server/mcp.ts
72
72
  - src/server/test-plan.ts
73
+ - src/server/watcher.ts
@@ -29,9 +29,9 @@ When working with code in **store/**, follow these mandatory safety rules:
29
29
  Contains 135 symbols (15 exported) across 5 files.
30
30
 
31
31
  ## Key Symbols
32
- - **`Database`** [class] (src/store/db.ts:10) — 77 refs
32
+ - **`Database`** [class] (src/store/db.ts:10) — 79 refs
33
33
  - **`AnnotationStore`** [class] (src/store/annotations.ts:10) — 19 refs
34
- - **`RepoRegistry`** [class] (src/store/registry.ts:18) — 9 refs
34
+ - **`RepoRegistry`** [class] (src/store/registry.ts:18) — 16 refs
35
35
  - **`runDecayPass`** [function] (src/store/confidence.ts:85) — 6 refs
36
36
  - **`buildEmbeddingText`** [function] (src/store/vectors.ts:250) — 4 refs
37
37
  - **`TfIdfProvider`** [class] (src/store/vectors.ts:44) — 4 refs
@@ -46,24 +46,24 @@ Contains 135 symbols (15 exported) across 5 files.
46
46
  - **`SimilarResult`** [interface] (src/store/vectors.ts:23) — 0 refs
47
47
 
48
48
  ## Entry Points
49
- - **`Database`** [class] — 77 incoming references
50
- - **`close`** [method] — 29 incoming references
51
- - **`get`** [method] — 22 incoming references
49
+ - **`Database`** [class] — 79 incoming references
50
+ - **`close`** [method] — 31 incoming references
51
+ - **`get`** [method] — 23 incoming references
52
52
  - **`AnnotationStore`** [class] — 19 incoming references
53
- - **`rowToSymbol`** [function] — 13 incoming references
53
+ - **`RepoRegistry`** [class] — 16 incoming references
54
54
 
55
55
  ## Dependencies
56
56
  - **root**: `Annotation`, `AnnotationKey`, `Session`, `EvolutionEvent`, `CodeSymbol`, `SymbolLink`, `RepoEntry`, `has` (+1 more)
57
- - **analyzer**: `find`, `resolve`
58
- - **test**: `dbPath`
57
+ - **test**: `add`, `dbPath`
58
+ - **analyzer**: `resolve`
59
59
 
60
60
  ## Used By
61
- - **root**: `Database`, `RepoRegistry`, `AnnotationStore`, `runDecayPass`, `getIncomingLinks`, `getAllSymbols`, `getCodebaseSummary`, `register` (+25 more)
61
+ - **root**: `Database`, `RepoRegistry`, `AnnotationStore`, `runDecayPass`, `getIncomingLinks`, `getAllSymbols`, `getCodebaseSummary`, `register` (+24 more)
62
62
  - **analyzer**: `Database`, `TfIdfProvider`, `EmbeddingStore`, `buildEmbeddingText`, `get`, `clearFiles`, `clear`, `isFileUpToDate` (+23 more)
63
63
  - **orchestrator**: `Database`, `findSymbolByName`, `findUpstream`, `clear`, `getTestCoverageGaps`, `findDeadCode`, `close`
64
- - **server**: `Database`, `AnnotationStore`, `RepoRegistry`, `runDecayPass`, `getCodebaseSummary`, `recall`, `close`, `getStats` (+37 more)
65
- - **test**: `Database`, `AnnotationStore`, `RepoRegistry`, `boostConfidence`, `decayConfidence`, `getStaleAnnotations`, `promoteSecurityAnnotations`, `runDecayPass` (+76 more)
66
- - **apps**: `remove`, `Database`, `getCodebaseSummary`, `close`
64
+ - **server**: `Database`, `AnnotationStore`, `RepoRegistry`, `runDecayPass`, `getCodebaseSummary`, `recall`, `close`, `getStats` (+36 more)
65
+ - **test**: `Database`, `AnnotationStore`, `RepoRegistry`, `boostConfidence`, `decayConfidence`, `getStaleAnnotations`, `promoteSecurityAnnotations`, `runDecayPass` (+77 more)
66
+ - **apps**: `remove`, `getAnnotations`, `Database`, `getCodebaseSummary`, `close`
67
67
  - **docs**: `remove`
68
68
  - **parser**: `load`
69
69
 
@@ -26,50 +26,76 @@ When working with code in **test/**, follow these mandatory safety rules:
26
26
  | See file symbols | `mcp_milens_get_file_symbols` |
27
27
 
28
28
  ## Overview
29
- Contains 195 symbols (43 exported) across 49 files.
29
+ Contains 328 symbols (119 exported) across 77 files.
30
30
 
31
31
  ## Key Symbols
32
+ - **`User`** [class] (test/fixtures/accuracy/py-project/src/models.py:1) — 6 refs
33
+ - **`Calculator`** [class] (test/fixtures/accuracy/js-project/src/calculator.js:1) — 5 refs
32
34
  - **`User`** [interface] (test/fixtures/ts-project/src/models.ts:1) — 5 refs
35
+ - **`save`** [method] (test/fixtures/accuracy/py-project/src/models.py:14) — 4 refs
36
+ - **`User`** [interface] (test/fixtures/accuracy/ts-project/src/models.ts:1) — 3 refs
37
+ - **`User`** [class] (test/fixtures/py-project/models.py:1) — 3 refs
38
+ - **`User`** [class] (test/fixtures/accuracy/ruby-project/src/models.rb:1) — 3 refs
39
+ - **`createCalc`** [function] (test/fixtures/accuracy/js-project/src/calculator.js:6) — 2 refs
40
+ - **`UserRepository`** [class] (test/fixtures/accuracy/ts-project/src/models.ts:12) — 2 refs
33
41
  - **`createUser`** [function] (test/fixtures/ts-project/src/models.ts:9) — 2 refs
34
42
  - **`UserRole`** [type] (test/fixtures/ts-project/src/models.ts:7) — 2 refs
35
- - **`create_user`** [function] (test/fixtures/py-project/models.py:10) — 2 refs
36
- - **`User`** [class] (test/fixtures/py-project/models.py:1) — 2 refs
37
- - **`Project Guide`** [section] (test/fixtures/md-project/docs/guide.md:1) — 1 refs
38
- - **`Getting Started`** [section] (test/fixtures/md-project/docs/guide.md:5) — 1 refs
39
- - **`Architecture`** [section] (test/fixtures/md-project/docs/guide.md:15) — 1 refs
40
- - **`Models`** [section] (test/fixtures/md-project/docs/guide.md:19) — 1 refs
41
- - **`Authentication`** [section] (test/fixtures/md-project/docs/guide.md:25) — 1 refs
42
- - **`API Reference`** [section] (test/fixtures/md-project/docs/guide.md:35) — 1 refs
43
- - **`Endpoints`** [section] (test/fixtures/md-project/docs/guide.md:37) — 1 refs
44
- - **`Error Codes`** [section] (test/fixtures/md-project/docs/guide.md:42) — 1 refs
45
- - **`Contributing`** [section] (test/fixtures/md-project/docs/guide.md:46) — 1 refs
46
- - **`UserController`** [class] (test/fixtures/ts-project/src/nest-sample.ts:18) — 1 refs
43
+ - **`UserService`** [class] (test/fixtures/ts-project/src/nest-sample.ts:27) — 2 refs
44
+ - **`Save`** [method] (test/fixtures/accuracy/go-project/src/models/user.go:16) — 2 refs
45
+ - **`UserRepo`** [class] (test/fixtures/accuracy/py-project/src/models.py:10) — 2 refs
46
+ - **`UserService`** [class] (test/fixtures/accuracy/py-project/src/service.py:4) — 2 refs
47
47
 
48
48
  ## Entry Points
49
+ - **`add`** [method] — 43 incoming references
49
50
  - **`lang`** [variable] — 12 incoming references
50
51
  - **`dbPath`** [function] — 10 incoming references
51
- - **`User`** [interface] — 5 incoming references
52
- - **`parser`** [variable] — 3 incoming references
53
- - **`createUser`** [function] — 2 incoming references
52
+ - **`User`** [class] — 6 incoming references
53
+ - **`Calculator`** [class] — 5 incoming references
54
54
 
55
55
  ## Dependencies
56
- - **root**: `generateAgentsMd`, `AnnotationKey`, `CodeSymbol`, `SymbolLink`, `computeMetrics`, `formatMetricsReport`, `MilensMetrics`, `RawImport` (+9 more)
57
- - **store**: `Database`, `AnnotationStore`, `RepoRegistry`, `boostConfidence`, `decayConfidence`, `getStaleAnnotations`, `promoteSecurityAnnotations`, `runDecayPass` (+76 more)
56
+ - **analyzer**: `analyze`, `loadAliases`, `getCachedTree`, `clearTreeCache`, `enrichMetadata`, `resolveLinksWithStats`, `resolveLinks`, `reviewSymbol` (+10 more)
57
+ - **store**: `Database`, `AnnotationStore`, `RepoRegistry`, `boostConfidence`, `decayConfidence`, `getStaleAnnotations`, `promoteSecurityAnnotations`, `runDecayPass` (+77 more)
58
+ - **root**: `generateAgentsMd`, `AnnotationKey`, `CodeSymbol`, `SymbolLink`, `computeMetrics`, `formatMetricsReport`, `MilensMetrics`, `RawImport` (+17 more)
58
59
  - **security**: `detectEcosystem`, `parseDependencies`, `checkVulnerabilities`, `auditDependencies`, `loadRules`, `getRulesByCategory`, `getRulesBySeverity`
59
- - **analyzer**: `enrichMetadata`, `resolveLinks`, `resolveLinksWithStats`, `reviewSymbol`, `reviewPr`, `scanFiles`, `generateTestPlan`, `findCoverageGaps` (+5 more)
60
- - **parser**: `getParser`, `loadLanguage`, `extractFromTree`, `extractVueScript`, `extractVueTemplateRefs`, `spec`, `extractHtmlScripts`, `extractHtmlRefs` (+7 more)
60
+ - **parser**: `getParser`, `loadLanguage`, `extractFromTree`, `extractVueScript`, `extractVueTemplateRefs`, `extractVueCompositionApi`, `extractVueTemplateAst`, `spec` (+11 more)
61
61
  - **server**: `HookManager`, `HookConfig`, `defaultOnSessionStart`, `defaultOnSessionEnd`, `defaultOnPreCommit`, `defaultOnFileChange`, `defaultOnPreCompact`, `defaultOnPostCompact` (+10 more)
62
62
  - **orchestrator**: `Orchestrator`, `formatReport`, `OrchestratorReport`, `subscribe`, `run`, `snapshot`, `compare`, `cancel` (+3 more)
63
63
 
64
64
  ## Used By
65
- - **apps**: `dbPath`
66
- - **analyzer**: `parser`, `lang`
67
- - **root**: `dbPath`
68
- - **parser**: `lang`, `parser`
69
- - **server**: `dbPath`
70
- - **store**: `dbPath`
65
+ - **apps**: `add`, `dbPath`
66
+ - **docs**: `add`
67
+ - **root**: `add`, `dbPath`
68
+ - **analyzer**: `add`, `parser`, `lang`
69
+ - **orchestrator**: `add`
70
+ - **parser**: `lang`, `add`, `parser`
71
+ - **security**: `add`
72
+ - **server**: `add`, `dbPath`
73
+ - **store**: `add`, `dbPath`
71
74
 
72
75
  ## Files
76
+ - test/fixtures/accuracy/go-project/src/admin.go
77
+ - test/fixtures/accuracy/go-project/src/main.go
78
+ - test/fixtures/accuracy/go-project/src/models/user.go
79
+ - test/fixtures/accuracy/java-project/src/Models.java
80
+ - test/fixtures/accuracy/java-project/src/Service.java
81
+ - test/fixtures/accuracy/js-project/src/app.js
82
+ - test/fixtures/accuracy/js-project/src/calculator.js
83
+ - test/fixtures/accuracy/js-project/src/extend.js
84
+ - test/fixtures/accuracy/php-project/src/admin.php
85
+ - test/fixtures/accuracy/php-project/src/models.php
86
+ - test/fixtures/accuracy/php-project/src/service.php
87
+ - test/fixtures/accuracy/py-project/src/admin.py
88
+ - test/fixtures/accuracy/py-project/src/models.py
89
+ - test/fixtures/accuracy/py-project/src/service.py
90
+ - test/fixtures/accuracy/ruby-project/src/mixins.rb
91
+ - test/fixtures/accuracy/ruby-project/src/models.rb
92
+ - test/fixtures/accuracy/ruby-project/src/service.rb
93
+ - test/fixtures/accuracy/rust-project/src/admin.rs
94
+ - test/fixtures/accuracy/rust-project/src/main.rs
95
+ - test/fixtures/accuracy/rust-project/src/models.rs
96
+ - test/fixtures/accuracy/ts-project/src/auth.ts
97
+ - test/fixtures/accuracy/ts-project/src/index.ts
98
+ - test/fixtures/accuracy/ts-project/src/models.ts
73
99
  - test/fixtures/go-project/models/user.go
74
100
  - test/fixtures/go-project/service/handler.go
75
101
  - test/fixtures/html-project/css/main.css
@@ -89,6 +115,7 @@ Contains 195 symbols (43 exported) across 49 files.
89
115
  - test/fixtures/vue-project-refs/src/views/TestView.vue
90
116
  - test/fixtures/vue-project/src/composables/useClipboard.js
91
117
  - test/fixtures/vue-project/src/views/TestView.vue
118
+ - test/unit/accuracy.test.ts
92
119
  - test/unit/agents-md.test.ts
93
120
  - test/unit/annotations.test.ts
94
121
  - test/unit/cli.test.ts
@@ -96,6 +123,7 @@ Contains 195 symbols (43 exported) across 49 files.
96
123
  - test/unit/database.test.ts
97
124
  - test/unit/db-extended.test.ts
98
125
  - test/unit/deps-audit.test.ts
126
+ - test/unit/engine.test.ts
99
127
  - test/unit/enrich.test.ts
100
128
  - test/unit/extractor.test.ts
101
129
  - test/unit/hooks.test.ts
@@ -105,6 +133,7 @@ Contains 195 symbols (43 exported) across 49 files.
105
133
  - test/unit/mcp-prompts.test.ts
106
134
  - test/unit/mcp-tools.test.ts
107
135
  - test/unit/metrics.test.ts
136
+ - test/unit/mro.test.ts
108
137
  - test/unit/orchestrator.test.ts
109
138
  - test/unit/parser-extract-cache.test.ts
110
139
  - test/unit/parser-loader.test.ts
@@ -112,10 +141,12 @@ Contains 195 symbols (43 exported) across 49 files.
112
141
  - test/unit/resolver.test.ts
113
142
  - test/unit/review.test.ts
114
143
  - test/unit/scanner.test.ts
144
+ - test/unit/scope-resolver.test.ts
115
145
  - test/unit/security-rules.test.ts
116
146
  - test/unit/server-test-plan.test.ts
117
147
  - test/unit/skills.test.ts
118
148
  - test/unit/testplan.test.ts
149
+ - test/unit/uninstall.test.ts
119
150
  - test/unit/utils.test.ts
120
151
  - test/unit/vectors.test.ts
121
152
  - test/unit/vue-import.test.ts