@noyrax/documentation-system-plugin 1.0.4-beta.3 → 1.0.4-beta.5

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