@noyrax/documentation-system-plugin 1.0.4-beta.1

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 (200) hide show
  1. package/.vscodeignore +41 -0
  2. package/LICENSE +21 -0
  3. package/MCP_SERVER_SETUP.md +371 -0
  4. package/README.md +663 -0
  5. package/assets/icon.svg +27 -0
  6. package/docs/LINKEDIN_ANTWORT_SEQUENZDIAGRAMME.md +190 -0
  7. package/docs/SEQUENZDIAGRAMM_BEWEIS.md +469 -0
  8. package/docs/SEQUENZDIAGRAMM_VALIDATE_FLOW.md +282 -0
  9. package/docs/adr/001-signatur-abweichung-fix.md +54 -0
  10. package/docs/adr/002-file-specific-validation-1.0.1.md +45 -0
  11. package/docs/adr/003-documentation-generation-bugs.md +134 -0
  12. package/docs/adr/004-validator-signature-matching-fix.md +121 -0
  13. package/docs/adr/005-validator-generic-simplification-tightening.md +35 -0
  14. package/docs/adr/006-parser-variable-type-extraction.md +33 -0
  15. package/docs/adr/007-ts-parser-load-libs-for-accurate-types.md +31 -0
  16. package/docs/adr/008-dependencies-cache-phase1.md +133 -0
  17. package/docs/adr/009-consolidation-union-logic-phase1-2.md +147 -0
  18. package/docs/adr/010-extension-union-integration-phase1-3-and-phase2.md +179 -0
  19. package/docs/adr/011-module-doc-change-tracking-phase3.md +190 -0
  20. package/docs/adr/012-git-deletions-change-report-phase4.md +235 -0
  21. package/docs/adr/013-system-functionality-fixes.md +279 -0
  22. package/docs/adr/014-rules-migration-und-mcp-integration.md +113 -0
  23. package/docs/adr/015-global-agent-package.md +158 -0
  24. package/docs/adr/016-produktisierung-docguard.md +193 -0
  25. package/docs/adr/017-signature-matching-optional-fields.md +128 -0
  26. package/docs/adr/018-rebranding-docguard-to-noyrax.md +109 -0
  27. package/docs/adr/019-system-schwachstellen-analyse-und-fixes.md +204 -0
  28. package/docs/adr/020-api-doc-tiefe-und-signatureformatter.md +74 -0
  29. package/docs/adr/021-semantic-api-docs-and-symbol-classifier.md +125 -0
  30. package/docs/adr/022-semantic-class-and-constants-rendering.md +82 -0
  31. package/docs/adr/023-adr-verknuepfung-modul-doku.md +54 -0
  32. package/docs/adr/024-cursor-rules-mehrdimensionaler-raum.md +230 -0
  33. package/docs/adr/025-mcp-tools-scan-validate-cli-bridge.md +202 -0
  34. package/docs/adr/026-reality-driven-development-system.md +173 -0
  35. package/docs/adr/027-scanner-excludes-and-union-logic-fix.md +189 -0
  36. package/docs/adr/028-src-coverage-union-resync.md +124 -0
  37. package/docs/adr/029-parser-flow-kopplung-und-sync-drift-modi.md +102 -0
  38. package/docs/adr/030-dependency-import-symbol-names-preservation.md +123 -0
  39. package/docs/adr/031-generate-cli-vollstaendige-dokumentation.md +99 -0
  40. package/docs/adr/032-windows-optimized-verification-scripts.md +165 -0
  41. package/docs/adr/036-enhanced-dependency-metadata.md +190 -0
  42. package/docs/adr/TEMPLATE.md +76 -0
  43. package/docs/index/symbols.jsonl +31 -0
  44. package/docs/modules/action__action.yml.md +50 -0
  45. package/docs/modules/documentation.config.schema.json.md +37 -0
  46. package/docs/modules/mcp__package.json.md +130 -0
  47. package/docs/modules/mcp__src__resources__docs.ts.md +94 -0
  48. package/docs/modules/mcp__src__server.ts.md +15 -0
  49. package/docs/modules/mcp__src__tools__drift.ts.md +110 -0
  50. package/docs/modules/mcp__src__tools__impact.ts.md +127 -0
  51. package/docs/modules/mcp__src__tools__scan.ts.md +75 -0
  52. package/docs/modules/mcp__src__tools__validate.ts.md +116 -0
  53. package/docs/modules/mcp__src__tools__verify-adrs.ts.md +106 -0
  54. package/docs/modules/mcp__tsconfig.json.md +22 -0
  55. package/docs/modules/package.json.md +131 -0
  56. package/docs/modules/packages__doc-system-agent__examples__basic-project__package.json.md +43 -0
  57. package/docs/modules/packages__doc-system-agent__examples__basic-project__src__calculator.ts.md +81 -0
  58. package/docs/modules/packages__doc-system-agent__package.json.md +154 -0
  59. package/docs/modules/packages__doc-system-agent__src__cli__index.ts.md +8 -0
  60. package/docs/modules/packages__doc-system-agent__src__cli__init.ts.md +93 -0
  61. package/docs/modules/packages__doc-system-agent__src__cli__update.ts.md +113 -0
  62. package/docs/modules/packages__doc-system-agent__src__constants.ts.md +29 -0
  63. package/docs/modules/packages__doc-system-agent__src__index.ts.md +234 -0
  64. package/docs/modules/packages__doc-system-agent__src__mcp__resources__docs.ts.md +94 -0
  65. package/docs/modules/packages__doc-system-agent__src__mcp__server.ts.md +17 -0
  66. package/docs/modules/packages__doc-system-agent__src__mcp__tools__drift.ts.md +38 -0
  67. package/docs/modules/packages__doc-system-agent__src__mcp__tools__impact.ts.md +75 -0
  68. package/docs/modules/packages__doc-system-agent__src__mcp__tools__scan.ts.md +23 -0
  69. package/docs/modules/packages__doc-system-agent__src__mcp__tools__validate.ts.md +23 -0
  70. package/docs/modules/packages__doc-system-agent__src__mcp__tools__verify-adrs.ts.md +106 -0
  71. package/docs/modules/packages__doc-system-agent__src__mcp__types.ts.md +355 -0
  72. package/docs/modules/packages__doc-system-agent__tsconfig.json.md +22 -0
  73. package/docs/modules/scripts__verify-adrs.js.md +97 -0
  74. package/docs/modules/scripts__verify-architecture.js.md +93 -0
  75. package/docs/modules/scripts__verify-imports.js.md +114 -0
  76. package/docs/modules/src____tests____setup.ts.md +8 -0
  77. package/docs/modules/src____tests____signature-formatter.test.ts.md +16 -0
  78. package/docs/modules/src____tests____snapshot-doc-generation.test.ts.md +8 -0
  79. package/docs/modules/src____tests____symbol-classifier.test.ts.md +16 -0
  80. package/docs/modules/src__cache__ast-cache.ts.md +91 -0
  81. package/docs/modules/src__cache__dependencies-cache.ts.md +89 -0
  82. package/docs/modules/src__cache__output-cache.ts.md +91 -0
  83. package/docs/modules/src__cache__signature-cache.ts.md +76 -0
  84. package/docs/modules/src__cli__generate-cli.ts.md +130 -0
  85. package/docs/modules/src__cli__scan-cli.ts.md +99 -0
  86. package/docs/modules/src__cli__validate-cli.ts.md +144 -0
  87. package/docs/modules/src__core__async.ts.md +18 -0
  88. package/docs/modules/src__core__consolidation.ts.md +158 -0
  89. package/docs/modules/src__core__git.ts.md +35 -0
  90. package/docs/modules/src__core__language-detection.ts.md +31 -0
  91. package/docs/modules/src__core__scanner.ts.md +101 -0
  92. package/docs/modules/src__core__signature-formatter.ts.md +232 -0
  93. package/docs/modules/src__core__symbol-classifier.ts.md +178 -0
  94. package/docs/modules/src__core__symbols.ts.md +31 -0
  95. package/docs/modules/src__drift__index.ts.md +53 -0
  96. package/docs/modules/src__extension.ts.md +418 -0
  97. package/docs/modules/src__generator__adr-linker.ts.md +154 -0
  98. package/docs/modules/src__generator__change-report.ts.md +85 -0
  99. package/docs/modules/src__generator__dependency-graph.ts.md +63 -0
  100. package/docs/modules/src__generator__index.ts.md +40 -0
  101. package/docs/modules/src__generator__module-doc.ts.md +242 -0
  102. package/docs/modules/src__index__index.ts.md +141 -0
  103. package/docs/modules/src__logging__index.ts.md +87 -0
  104. package/docs/modules/src__parsers__dependencies.ts.md +69 -0
  105. package/docs/modules/src__parsers__json-yaml.ts.md +81 -0
  106. package/docs/modules/src__parsers__python.ts.md +73 -0
  107. package/docs/modules/src__parsers__ts-js.ts.md +48 -0
  108. package/docs/modules/src__parsers__types.ts.md +99 -0
  109. package/docs/modules/src__ui__commands-provider.ts.md +70 -0
  110. package/docs/modules/src__ui__status-bar.ts.md +79 -0
  111. package/docs/modules/src__validator__index.ts.md +211 -0
  112. package/docs/modules/src__validator__signature-matching.ts.md +209 -0
  113. package/docs/modules/src__validator__status.ts.md +72 -0
  114. package/docs/modules/test-mcp-resources.js.md +27 -0
  115. package/docs/modules/tsconfig.json.md +22 -0
  116. package/docs/system/CHANGE_REPORT.md +19 -0
  117. package/docs/system/DEPENDENCIES.md +430 -0
  118. package/docs/system/DEPENDENCY_GRAPH.md +368 -0
  119. package/docs/system/NAVIGATION_SPACE_ANALYSIS.md +244 -0
  120. package/docs/system/NPX_CACHE_FIX.md +85 -0
  121. package/docs/system/NPX_LOCAL_USAGE.md +66 -0
  122. package/docs/system/PLUGIN_ECOSYSTEM_STATUS.md +465 -0
  123. package/docs/system/PLUGIN_UPDATE_GUIDE.md +212 -0
  124. package/docs/system/RULES_UPDATE_GUIDE.md +182 -0
  125. package/docs/system/SYSTEM_ANALYSIS.md +947 -0
  126. package/documentation.config.schema.json +77 -0
  127. package/noyrax-5d-database-plugin-0.1.8.tgz +0 -0
  128. package/out/cache/ast-cache.js +69 -0
  129. package/out/cache/ast-cache.js.map +1 -0
  130. package/out/cache/dependencies-cache.js +73 -0
  131. package/out/cache/dependencies-cache.js.map +1 -0
  132. package/out/cache/output-cache.js +69 -0
  133. package/out/cache/output-cache.js.map +1 -0
  134. package/out/cache/signature-cache.js +60 -0
  135. package/out/cache/signature-cache.js.map +1 -0
  136. package/out/cli/generate-cli.js +330 -0
  137. package/out/cli/generate-cli.js.map +1 -0
  138. package/out/cli/scan-cli.js +151 -0
  139. package/out/cli/scan-cli.js.map +1 -0
  140. package/out/cli/validate-cli.js +258 -0
  141. package/out/cli/validate-cli.js.map +1 -0
  142. package/out/core/async.js +38 -0
  143. package/out/core/async.js.map +1 -0
  144. package/out/core/consolidation.js +230 -0
  145. package/out/core/consolidation.js.map +1 -0
  146. package/out/core/git.js +48 -0
  147. package/out/core/git.js.map +1 -0
  148. package/out/core/language-detection.js +29 -0
  149. package/out/core/language-detection.js.map +1 -0
  150. package/out/core/scanner.js +179 -0
  151. package/out/core/scanner.js.map +1 -0
  152. package/out/core/signature-formatter.js +162 -0
  153. package/out/core/signature-formatter.js.map +1 -0
  154. package/out/core/symbol-classifier.js +96 -0
  155. package/out/core/symbol-classifier.js.map +1 -0
  156. package/out/core/symbols.js +24 -0
  157. package/out/core/symbols.js.map +1 -0
  158. package/out/drift/index.js +28 -0
  159. package/out/drift/index.js.map +1 -0
  160. package/out/extension.js +984 -0
  161. package/out/extension.js.map +1 -0
  162. package/out/generator/adr-linker.js +216 -0
  163. package/out/generator/adr-linker.js.map +1 -0
  164. package/out/generator/change-report.js +124 -0
  165. package/out/generator/change-report.js.map +1 -0
  166. package/out/generator/dependency-graph.js +98 -0
  167. package/out/generator/dependency-graph.js.map +1 -0
  168. package/out/generator/index.js +117 -0
  169. package/out/generator/index.js.map +1 -0
  170. package/out/generator/module-doc.js +438 -0
  171. package/out/generator/module-doc.js.map +1 -0
  172. package/out/index/index.js +147 -0
  173. package/out/index/index.js.map +1 -0
  174. package/out/logging/index.js +24 -0
  175. package/out/logging/index.js.map +1 -0
  176. package/out/parsers/dependencies.js +126 -0
  177. package/out/parsers/dependencies.js.map +1 -0
  178. package/out/parsers/json-yaml.js +90 -0
  179. package/out/parsers/json-yaml.js.map +1 -0
  180. package/out/parsers/python.js +160 -0
  181. package/out/parsers/python.js.map +1 -0
  182. package/out/parsers/ts-js.js +397 -0
  183. package/out/parsers/ts-js.js.map +1 -0
  184. package/out/parsers/types.js +3 -0
  185. package/out/parsers/types.js.map +1 -0
  186. package/out/ui/commands-provider.js +91 -0
  187. package/out/ui/commands-provider.js.map +1 -0
  188. package/out/ui/status-bar.js +85 -0
  189. package/out/ui/status-bar.js.map +1 -0
  190. package/out/validator/index.js +185 -0
  191. package/out/validator/index.js.map +1 -0
  192. package/out/validator/signature-matching.js +261 -0
  193. package/out/validator/signature-matching.js.map +1 -0
  194. package/out/validator/status.js +38 -0
  195. package/out/validator/status.js.map +1 -0
  196. package/package.json +306 -0
  197. package/publish.ps1 +21 -0
  198. package/scripts/verify-adrs.js +312 -0
  199. package/scripts/verify-architecture.js +181 -0
  200. package/scripts/verify-imports.js +274 -0
@@ -0,0 +1,430 @@
1
+ # Abhängigkeitsübersicht
2
+
3
+ ## mcp/src/resources/docs.ts
4
+
5
+ ### Imports
6
+ - `node:fs/promises` (* as fs)
7
+ - `node:path` (* as path)
8
+
9
+ ## mcp/src/server.ts
10
+
11
+ ### Imports
12
+ - `./resources/docs.js` (readDocsResource)
13
+ - `./tools/drift.js` (runDriftCheck, type DriftRequest)
14
+ - `./tools/impact.js` (analyzeImpact, type ImpactRequest)
15
+ - `./tools/scan.js` (runScan, type ScanRequest)
16
+ - `./tools/validate.js` (runValidate, type ValidateRequest)
17
+ - `./tools/verify-adrs.js` (runVerifyAdrs, type VerifyAdrsRequest)
18
+ - `@modelcontextprotocol/sdk/server` (Server)
19
+ - `@modelcontextprotocol/sdk/server/stdio.js` (StdioServerTransport)
20
+ - `@modelcontextprotocol/sdk/types.js` (CallToolRequestSchema, ListResourcesRequestSchema, ListToolsRequestSchema, ReadResourceRequestSchema)
21
+
22
+ ## mcp/src/tools/drift.ts
23
+
24
+ ### Imports
25
+ - `node:child_process` (exec)
26
+ - `node:fs/promises` (* as fs)
27
+ - `node:path` (* as path)
28
+ - `node:util` (promisify)
29
+
30
+ ## mcp/src/tools/impact.ts
31
+
32
+ ### Imports
33
+ - `node:fs` (createReadStream)
34
+ - `node:path` (* as path)
35
+ - `node:readline` (* as readline)
36
+
37
+ ## mcp/src/tools/scan.ts
38
+
39
+ ### Imports
40
+ - `node:child_process` (exec)
41
+ - `node:util` (promisify)
42
+
43
+ ## mcp/src/tools/validate.ts
44
+
45
+ ### Imports
46
+ - `node:child_process` (exec)
47
+ - `node:util` (promisify)
48
+
49
+ ## mcp/src/tools/verify-adrs.ts
50
+
51
+ ### Imports
52
+ - `node:child_process` (exec)
53
+ - `node:util` (promisify)
54
+
55
+ ## packages/doc-system-agent/src/cli/index.ts
56
+
57
+ ### Imports
58
+ - `../constants.js` (PACKAGE_VERSION, RULES_VERSION)
59
+ - `./init.js` (initProject)
60
+ - `./update.js` (updateRules)
61
+ - `commander` (Command)
62
+
63
+ ## packages/doc-system-agent/src/cli/init.ts
64
+
65
+ ### Imports
66
+ - `../constants.js` (MCP_CONFIG, RULE_FILES, RULES_VERSION)
67
+ - `node:fs/promises` (* as fs)
68
+ - `node:path` (* as path)
69
+ - `node:url` (fileURLToPath)
70
+
71
+ ## packages/doc-system-agent/src/cli/update.ts
72
+
73
+ ### Imports
74
+ - `../constants.js` (RULE_FILES, RULES_VERSION)
75
+ - `node:fs/promises` (* as fs)
76
+ - `node:path` (* as path)
77
+ - `node:url` (fileURLToPath)
78
+
79
+ ## packages/doc-system-agent/src/index.ts
80
+
81
+ ### Re-Exports
82
+ - `./cli/init.js` (initProject, type InitOptions)
83
+ - `./cli/update.js` (type UpdateOptions, updateRules)
84
+ - `./constants.js` (PACKAGE_VERSION, RULES_VERSION)
85
+ - `./mcp/server.js` (startMcpServer)
86
+ - `./mcp/types.js` (type DriftRequest, type DriftResponse, type ImpactRequest, type ImpactResponse, type ScanRequest, type ScanResponse, type ValidateRequest, type ValidateResponse)
87
+
88
+ ## packages/doc-system-agent/src/mcp/resources/docs.ts
89
+
90
+ ### Imports
91
+ - `node:fs/promises` (* as fs)
92
+ - `node:path` (* as path)
93
+
94
+ ## packages/doc-system-agent/src/mcp/server.ts
95
+
96
+ ### Imports
97
+ - `./resources/docs.js` (readDocsResource)
98
+ - `./tools/drift.js` (runDriftCheck)
99
+ - `./tools/impact.js` (analyzeImpact)
100
+ - `./tools/scan.js` (runScan)
101
+ - `./tools/validate.js` (runValidate)
102
+ - `./tools/verify-adrs.js` (runVerifyAdrs)
103
+ - `./types.js` (type DriftRequest, type ImpactRequest, type ScanRequest, type ValidateRequest, type VerifyAdrsRequest)
104
+ - `@modelcontextprotocol/sdk/server/mcp.js` (McpServer)
105
+ - `@modelcontextprotocol/sdk/server/stdio.js` (StdioServerTransport)
106
+ - `@modelcontextprotocol/sdk/types.js` (CallToolRequestSchema, ListResourcesRequestSchema, ListToolsRequestSchema, ReadResourceRequestSchema)
107
+
108
+ ## packages/doc-system-agent/src/mcp/tools/drift.ts
109
+
110
+ ### Imports
111
+ - `../types.js` (type DriftItem, type DriftRequest, type DriftResponse)
112
+ - `node:child_process` (exec)
113
+ - `node:fs/promises` (* as fs)
114
+ - `node:path` (* as path)
115
+ - `node:util` (promisify)
116
+
117
+ ## packages/doc-system-agent/src/mcp/tools/impact.ts
118
+
119
+ ### Imports
120
+ - `../types.js` (type ImpactRequest, type ImpactResponse)
121
+ - `node:fs` (createReadStream)
122
+ - `node:path` (* as path)
123
+ - `node:readline` (* as readline)
124
+
125
+ ## packages/doc-system-agent/src/mcp/tools/scan.ts
126
+
127
+ ### Imports
128
+ - `../types.js` (type ScanRequest, type ScanResponse)
129
+ - `node:child_process` (exec)
130
+ - `node:util` (promisify)
131
+
132
+ ## packages/doc-system-agent/src/mcp/tools/validate.ts
133
+
134
+ ### Imports
135
+ - `../types.js` (type ValidateRequest, type ValidateResponse, type ValidationError)
136
+ - `node:child_process` (exec)
137
+ - `node:util` (promisify)
138
+
139
+ ## packages/doc-system-agent/src/mcp/tools/verify-adrs.ts
140
+
141
+ ### Imports
142
+ - `node:child_process` (exec)
143
+ - `node:util` (promisify)
144
+
145
+ ## src/__tests__/determinism.test.ts
146
+
147
+ ### Imports
148
+ - `../core/scanner` (scanWorkspace)
149
+ - `../core/symbols` (computeSignatureHash)
150
+ - `../generator/index` (generatePerFileDocs)
151
+ - `../index/index` (buildIndexFromSymbols, DependencyEntry)
152
+ - `../parsers/dependencies` (ModuleDependency)
153
+ - `../parsers/ts-js` (TsJsParser)
154
+ - `fs` (* as fs)
155
+ - `os` (* as os)
156
+ - `path` (* as path)
157
+
158
+ ## src/__tests__/parser-symbol-types.test.ts
159
+
160
+ ### Imports
161
+ - `../core/signature-formatter` (SignatureFormatter)
162
+ - `../parsers/json-yaml` (JsonYamlParser)
163
+ - `../parsers/ts-js` (TsJsParser)
164
+
165
+ ## src/__tests__/setup.ts
166
+
167
+ ### Imports
168
+ - `@jest/globals` (jest)
169
+
170
+ ## src/__tests__/signature-formatter.test.ts
171
+
172
+ ### Imports
173
+ - `../core/signature-formatter` (SignatureFormatter)
174
+ - `../parsers/types` (ParsedSymbol)
175
+
176
+ ## src/__tests__/snapshot-doc-generation.test.ts
177
+
178
+ ### Imports
179
+ - `../core/consolidation` (buildSymbolsUnion)
180
+ - `../generator/index` (generatePerFileDocs)
181
+ - `../index/index` (buildIndexFromSymbols, writeJsonlIndex)
182
+ - `../parsers/ts-js` (TsJsParser)
183
+ - `../parsers/types` (ParsedSymbol)
184
+ - `fs` (* as fs)
185
+ - `os` (* as os)
186
+ - `path` (* as path)
187
+
188
+ ## src/__tests__/symbol-classifier.test.ts
189
+
190
+ ### Imports
191
+ - `../core/symbol-classifier` (classifySymbol, SymbolClassification)
192
+ - `../parsers/types` (ParsedSymbol)
193
+
194
+ ## src/cache/ast-cache.ts
195
+
196
+ ### Imports
197
+ - `crypto` (createHash)
198
+ - `fs` (* as fs)
199
+ - `path` (* as path)
200
+
201
+ ## src/cache/dependencies-cache.ts
202
+
203
+ ### Imports
204
+ - `fs` (* as fs)
205
+ - `path` (* as path)
206
+
207
+ ## src/cache/output-cache.ts
208
+
209
+ ### Imports
210
+ - `crypto` (createHash)
211
+ - `fs` (* as fs)
212
+ - `path` (* as path)
213
+
214
+ ## src/cache/signature-cache.ts
215
+
216
+ ### Imports
217
+ - `fs` (* as fs)
218
+ - `path` (* as path)
219
+
220
+ ## src/cli/generate-cli.ts
221
+
222
+ ### Imports
223
+ - `../cache/ast-cache` (computeFileHash, loadAstHashCache, saveAstHashCache)
224
+ - `../cache/dependencies-cache` (loadDependenciesCache, saveDependenciesCache)
225
+ - `../cache/output-cache` (computeContentHash, loadOutputHashCache, saveOutputHashCache)
226
+ - `../cache/signature-cache` (loadSignatureCache, saveSignatureCache)
227
+ - `../core/consolidation` (buildDependenciesUnion, buildSymbolsUnion)
228
+ - `../core/git` (getChangedFiles, getDeletedFiles)
229
+ - `../core/scanner` (scanWorkspace)
230
+ - `../drift/index` (computeCacheEntries, detectDrift)
231
+ - `../generator/change-report` (extractChangesFromModuleDocs, generateChangeReport)
232
+ - `../generator/dependency-graph` (generateDependencyOverview, generateMermaidGraph)
233
+ - `../generator/index` (generatePerFileDocs)
234
+ - `../index/index` (buildIndexFromSymbols, readSymbolsFromIndex, writeJsonlIndex)
235
+ - `../parsers/dependencies` (extractPythonDependencies, extractTsJsDependencies, ModuleDependency)
236
+ - `../parsers/json-yaml` (JsonYamlParser)
237
+ - `../parsers/python` (PythonParser)
238
+ - `../parsers/ts-js` (TsJsParser)
239
+ - `../parsers/types` (ParsedSymbol, ParserAdapter)
240
+ - `fs` (* as fs)
241
+ - `path` (* as path)
242
+
243
+ ## src/cli/scan-cli.ts
244
+
245
+ ### Imports
246
+ - `../core/scanner` (scanWorkspace)
247
+ - `../parsers/json-yaml` (JsonYamlParser)
248
+ - `../parsers/python` (PythonParser)
249
+ - `../parsers/ts-js` (TsJsParser)
250
+ - `../parsers/types` (ParsedSymbol, ParserAdapter)
251
+ - `fs` (* as fs)
252
+ - `path` (* as path)
253
+
254
+ ## src/cli/validate-cli.ts
255
+
256
+ ### Imports
257
+ - `../core/scanner` (scanWorkspace)
258
+ - `../index/index` (readSymbolsFromIndex)
259
+ - `../parsers/json-yaml` (JsonYamlParser)
260
+ - `../parsers/python` (PythonParser)
261
+ - `../parsers/ts-js` (TsJsParser)
262
+ - `../parsers/types` (ParsedSymbol)
263
+ - `../validator/index` (computeCoverage, CoverageThresholds, validateMarkdownDir)
264
+ - `fs` (* as fs)
265
+ - `path` (* as path)
266
+
267
+ ## src/core/consolidation.ts
268
+
269
+ ### Imports
270
+ - `../cache/dependencies-cache` (DependencyCacheEntry)
271
+ - `../parsers/dependencies` (ModuleDependency)
272
+ - `../parsers/types` (ParsedSymbol)
273
+ - `./symbols` (makeStableSymbolId)
274
+
275
+ ## src/core/git.ts
276
+
277
+ ### Imports
278
+ - `child_process` (spawnSync)
279
+
280
+ ## src/core/scanner.ts
281
+
282
+ ### Imports
283
+ - `../logging/index` (Logger)
284
+ - `./language-detection` (guessLanguageByShebang)
285
+ - `ignore` (default as ignore)
286
+ - `node:fs` (* as fs)
287
+ - `node:path` (* as path)
288
+
289
+ ## src/core/signature-formatter.ts
290
+
291
+ ### Imports
292
+ - `../parsers/types` (ParsedSymbol, SymbolSignature)
293
+
294
+ ## src/core/symbol-classifier.ts
295
+
296
+ ### Imports
297
+ - `../parsers/types` (ParsedSymbol)
298
+
299
+ ## src/core/symbols.ts
300
+
301
+ ### Imports
302
+ - `../parsers/types` (ParsedSymbol)
303
+ - `crypto` (createHash)
304
+
305
+ ## src/drift/index.ts
306
+
307
+ ### Imports
308
+ - `../cache/signature-cache` (CacheEntry, SignatureCacheData)
309
+ - `../core/symbols` (computeSignatureHash, makeStableSymbolId)
310
+ - `../parsers/types` (ParsedSymbol)
311
+
312
+ ## src/extension.ts
313
+
314
+ ### Imports
315
+ - `./cache/ast-cache` (computeFileHash, loadAstHashCache, saveAstHashCache)
316
+ - `./cache/dependencies-cache` (loadDependenciesCache, saveDependenciesCache)
317
+ - `./cache/output-cache` (computeContentHash, loadOutputHashCache, saveOutputHashCache)
318
+ - `./cache/signature-cache` (loadSignatureCache, saveSignatureCache)
319
+ - `./core/async` (mapLimit)
320
+ - `./core/consolidation` (buildDependenciesUnion, buildDependenciesUnionWithDebug, buildSymbolsUnion, UnionDebugInfo)
321
+ - `./core/git` (getChangedFiles, getDeletedFiles)
322
+ - `./core/scanner` (scanWorkspace)
323
+ - `./drift/index` (computeCacheEntries, detectDrift)
324
+ - `./generator/change-report` (extractChangesFromModuleDocs, generateChangeReport)
325
+ - `./generator/dependency-graph` (generateDependencyOverview, generateMermaidGraph)
326
+ - `./generator/index` (generatePerFileDocs)
327
+ - `./index/index` (buildIndexFromSymbols, readSymbolsFromIndex, writeJsonlIndex)
328
+ - `./parsers/dependencies` (extractPythonDependencies, extractTsJsDependencies, ModuleDependency)
329
+ - `./parsers/json-yaml` (JsonYamlParser)
330
+ - `./parsers/python` (PythonParser)
331
+ - `./parsers/ts-js` (TsJsParser)
332
+ - `./parsers/types` (ParsedSymbol, ParserAdapter)
333
+ - `./ui/commands-provider` (CommandsProvider)
334
+ - `./ui/status-bar` (StatusBarManager)
335
+ - `./validator/index` (computeCoverage, validateMarkdownDir)
336
+ - `./validator/status` (computeValidationStatus)
337
+ - `fs` (* as fs)
338
+ - `path` (* as path)
339
+ - `vscode` (* as vscode)
340
+
341
+ ## src/generator/adr-linker.ts
342
+
343
+ ### Imports
344
+ - `node:fs` (* as fs)
345
+ - `node:path` (* as path)
346
+
347
+ ## src/generator/dependency-graph.ts
348
+
349
+ ### Imports
350
+ - `../parsers/dependencies` (ModuleDependency)
351
+
352
+ ## src/generator/index.ts
353
+
354
+ ### Imports
355
+ - `../parsers/types` (ParsedSymbol)
356
+ - `./adr-linker` (AdrLinker)
357
+ - `./module-doc` (buildModuleDocWithChanges, parseModuleDoc, renderModuleDoc)
358
+ - `node:fs` (* as fs)
359
+ - `node:path` (* as path)
360
+
361
+ ## src/generator/module-doc.ts
362
+
363
+ ### Imports
364
+ - `../core/signature-formatter` (SignatureFormatter)
365
+ - `../core/symbol-classifier` (classifySymbol)
366
+ - `../parsers/types` (ParsedSymbol, SymbolSignature)
367
+ - `./adr-linker` (AdrLinker)
368
+
369
+ ## src/index/index.ts
370
+
371
+ ### Imports
372
+ - `../cache/dependencies-cache` (DependencyCacheEntry)
373
+ - `../core/symbols` (makeStableSymbolId)
374
+ - `../parsers/types` (ParsedSymbol, SymbolSignature)
375
+ - `fs` (* as fs)
376
+ - `path` (* as path)
377
+
378
+ ## src/parsers/dependencies.ts
379
+
380
+ ### Imports
381
+ - `ts-morph` (SourceFile)
382
+
383
+ ## src/parsers/json-yaml.ts
384
+
385
+ ### Imports
386
+ - `./types` (ParsedSymbol, ParserAdapter, SymbolSignature)
387
+ - `path` (* as path)
388
+ - `yaml` (* as YAML)
389
+
390
+ ## src/parsers/python.ts
391
+
392
+ ### Imports
393
+ - `./types` (ParsedSymbol, ParserAdapter)
394
+ - `path` (* as path)
395
+ - `tree-sitter` (default as Parser)
396
+ - `tree-sitter-python` (default as Python)
397
+
398
+ ## src/parsers/ts-js.ts
399
+
400
+ ### Imports
401
+ - `./types` (ParsedSymbol, ParserAdapter, SymbolSignature)
402
+ - `path` (* as path)
403
+ - `ts-morph` (ExportDeclaration, FunctionDeclaration, ModuleDeclaration, ParameterDeclaration, Project, SyntaxKind, Type)
404
+
405
+ ## src/ui/commands-provider.ts
406
+
407
+ ### Imports
408
+ - `vscode` (* as vscode)
409
+
410
+ ## src/ui/status-bar.ts
411
+
412
+ ### Imports
413
+ - `vscode` (* as vscode)
414
+
415
+ ## src/validator/index.ts
416
+
417
+ ### Imports
418
+ - `../logging/index` (Logger)
419
+ - `../parsers/types` (ParsedSymbol)
420
+ - `./signature-matching` (validateSignatureMatching)
421
+ - `./status` (StatusReport)
422
+ - `fs` (* as fs)
423
+ - `path` (* as path)
424
+
425
+ ## src/validator/signature-matching.ts
426
+
427
+ ### Imports
428
+ - `../core/signature-formatter` (SignatureFormatter)
429
+ - `../core/symbol-classifier` (classifySymbol)
430
+ - `../parsers/types` (ParsedSymbol)