@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,76 @@
1
+ # ADR-XXX: [Title]
2
+
3
+ **Status:** PROPOSED | ACCEPTED | DEPRECATED | SUPERSEDED
4
+
5
+ **Date:** YYYY-MM-DD
6
+
7
+ ## Context
8
+
9
+ [What is the issue we're trying to solve?]
10
+
11
+ ## Decision
12
+
13
+ [What did we decide to do?]
14
+
15
+ ## Implementation Claims
16
+
17
+ <!-- IMPORTANT: List specific, verifiable claims -->
18
+
19
+ ### Files Created/Modified
20
+ - [ ] `src/path/to/file.ts` - [Purpose]
21
+ - [ ] `src/path/to/other.ts` - [Purpose]
22
+
23
+ ### Functions/Classes Implemented
24
+ - [ ] `functionName()` in `file.ts` - [Purpose]
25
+ - [ ] `ClassName` in `file.ts` - [Purpose]
26
+
27
+ ### Verification Commands
28
+ ```bash
29
+ # Verify files exist
30
+ Test-Path src/path/to/file.ts # PowerShell
31
+ ls -la src/path/to/file.ts # Bash
32
+
33
+ # Verify functions exist
34
+ Select-String -Path src/path/to/file.ts -Pattern "functionName" # PowerShell
35
+ grep "functionName" src/path/to/file.ts # Bash
36
+
37
+ # Verify it compiles
38
+ npm run compile
39
+
40
+ # Verify it runs
41
+ npm run scan:cli
42
+ npm run validate:cli
43
+ ```
44
+
45
+ ## Verification Report
46
+
47
+ <!-- FILLED OUT AFTER IMPLEMENTATION -->
48
+
49
+ **Verification Date:** YYYY-MM-DD
50
+
51
+ **Results:**
52
+ - [ ] All files created: YES/NO
53
+ - [ ] All functions implemented: YES/NO
54
+ - [ ] Compiles without errors: YES/NO
55
+ - [ ] Tests pass: YES/NO
56
+ - [ ] Verification scripts pass: YES/NO (`npm run verify:all`)
57
+
58
+ **Evidence:**
59
+ ```
60
+ [Paste grep/build/test output here]
61
+
62
+ Example:
63
+ ✅ File exists: Test-Path src/cli/scan-cli.ts → True
64
+ ✅ Function exists: Select-String -Path src/cli/scan-cli.ts -Pattern "runScanCli" → Found
65
+ ✅ Compiles: npm run compile → Success
66
+ ✅ Runs: npm run scan:cli → {"status":"success",...}
67
+ ```
68
+
69
+ ## Consequences
70
+
71
+ [What becomes easier or harder as a result?]
72
+
73
+ ## Notes
74
+
75
+ [Additional context, alternatives considered, etc.]
76
+
@@ -0,0 +1,31 @@
1
+ {"symbol_id":"ts://src/cache/dependencies-cache.ts#DependenciesCacheData(2d12b4bb1facd95c)","path":"src/cache/dependencies-cache.ts","kind":"interface","name":"DependenciesCacheData","signature":{"name":"DependenciesCacheData","parameters":[{"name":"version","type":"1","hasDefault":false,"optional":false},{"name":"entries","type":"DependencyCacheEntry[]","hasDefault":false,"optional":false}],"visibility":"public"},"dependencies":[{"module":"fs","symbols":["* as fs"]},{"module":"path","symbols":["* as path"]}]}
2
+ {"symbol_id":"ts://src/cache/dependencies-cache.ts#DependencyCacheEntry(e5b24c4eb228d7c5)","path":"src/cache/dependencies-cache.ts","kind":"interface","name":"DependencyCacheEntry","signature":{"name":"DependencyCacheEntry","parameters":[{"name":"from","type":"string","hasDefault":false,"optional":false},{"name":"to","type":"string","hasDefault":false,"optional":false},{"name":"type","type":"'import' | 'export' | 'require'","hasDefault":false,"optional":false},{"name":"symbols","type":"string[]","hasDefault":false,"optional":true},{"name":"isTypeOnly","type":"boolean","hasDefault":false,"optional":true},{"name":"isReexport","type":"boolean","hasDefault":false,"optional":true}],"visibility":"public"},"dependencies":[{"module":"fs","symbols":["* as fs"]},{"module":"path","symbols":["* as path"]}]}
3
+ {"symbol_id":"ts://src/cache/dependencies-cache.ts#loadDependenciesCache(ae7d8be9a8fb510d)","path":"src/cache/dependencies-cache.ts","kind":"function","name":"loadDependenciesCache","signature":{"name":"loadDependenciesCache","parameters":[{"name":"cacheFile","type":"string","hasDefault":false}],"returnType":"DependenciesCacheData | null","visibility":"public"},"dependencies":[{"module":"fs","symbols":["* as fs"]},{"module":"path","symbols":["* as path"]}]}
4
+ {"symbol_id":"ts://src/cache/dependencies-cache.ts#saveDependenciesCache(4e68b940005b9872)","path":"src/cache/dependencies-cache.ts","kind":"function","name":"saveDependenciesCache","signature":{"name":"saveDependenciesCache","parameters":[{"name":"cacheDir","type":"string","hasDefault":false},{"name":"data","type":"DependenciesCacheData","hasDefault":false}],"returnType":"void","visibility":"public"},"dependencies":[{"module":"fs","symbols":["* as fs"]},{"module":"path","symbols":["* as path"]}]}
5
+ {"symbol_id":"ts://src/core/consolidation.ts#buildDependenciesUnion(b25a11b6f40be66b)","path":"src/core/consolidation.ts","kind":"function","name":"buildDependenciesUnion","signature":{"name":"buildDependenciesUnion","parameters":[{"name":"dependenciesNew","type":"ModuleDependency[]","hasDefault":false},{"name":"dependenciesCachePrev","type":"DependencyCacheEntry[]","hasDefault":false},{"name":"parsedFiles","type":"Set<string>","hasDefault":false},{"name":"deletedFiles","type":"Set<string>","hasDefault":false}],"returnType":"DependencyCacheEntry[]","visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../parsers/dependencies","symbols":["ModuleDependency"]},{"module":"../parsers/types","symbols":["ParsedSymbol"]},{"module":"./symbols","symbols":["makeStableSymbolId"]}]}
6
+ {"symbol_id":"ts://src/core/consolidation.ts#buildDependenciesUnionWithDebug(22453101c66906cb)","path":"src/core/consolidation.ts","kind":"function","name":"buildDependenciesUnionWithDebug","signature":{"name":"buildDependenciesUnionWithDebug","parameters":[{"name":"dependenciesNew","type":"ModuleDependency[]","hasDefault":false},{"name":"dependenciesCachePrev","type":"DependencyCacheEntry[]","hasDefault":false},{"name":"parsedFiles","type":"Set<string>","hasDefault":false},{"name":"deletedFiles","type":"Set<string>","hasDefault":false}],"returnType":"DependenciesUnionResult","visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../parsers/dependencies","symbols":["ModuleDependency"]},{"module":"../parsers/types","symbols":["ParsedSymbol"]},{"module":"./symbols","symbols":["makeStableSymbolId"]}]}
7
+ {"symbol_id":"ts://src/core/consolidation.ts#buildPreviousDependenciesMap(7c9137e906385a0c)","path":"src/core/consolidation.ts","kind":"function","name":"buildPreviousDependenciesMap","signature":{"name":"buildPreviousDependenciesMap","parameters":[{"name":"entries","type":"DependencyCacheEntry[]","hasDefault":false}],"returnType":"Map<string, DependencyCacheEntry[]>","visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../parsers/dependencies","symbols":["ModuleDependency"]},{"module":"../parsers/types","symbols":["ParsedSymbol"]},{"module":"./symbols","symbols":["makeStableSymbolId"]}]}
8
+ {"symbol_id":"ts://src/core/consolidation.ts#buildSymbolsUnion(2d5fb7cd937128ae)","path":"src/core/consolidation.ts","kind":"function","name":"buildSymbolsUnion","signature":{"name":"buildSymbolsUnion","parameters":[{"name":"symbolsNew","type":"ParsedSymbol[]","hasDefault":false},{"name":"symbolsPrev","type":"ParsedSymbol[]","hasDefault":false},{"name":"parsedFiles","type":"Set<string>","hasDefault":false},{"name":"deletedFiles","type":"Set<string>","hasDefault":false},{"name":"scannedFiles","type":"Set<string>","hasDefault":false}],"returnType":"ParsedSymbol[]","visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../parsers/dependencies","symbols":["ModuleDependency"]},{"module":"../parsers/types","symbols":["ParsedSymbol"]},{"module":"./symbols","symbols":["makeStableSymbolId"]}]}
9
+ {"symbol_id":"ts://src/core/consolidation.ts#buildUnionMap(cf370a0bd578a59a)","path":"src/core/consolidation.ts","kind":"function","name":"buildUnionMap","signature":{"name":"buildUnionMap","parameters":[{"name":"dependenciesNew","type":"ModuleDependency[]","hasDefault":false},{"name":"depMapPrev","type":"Map<string, DependencyCacheEntry[]>","hasDefault":false},{"name":"parsedFiles","type":"Set<string>","hasDefault":false},{"name":"deletedFiles","type":"Set<string>","hasDefault":false}],"returnType":"{ union: Map<string, DependencyCacheEntry[]>, debug: UnionDebugInfo }","visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../parsers/dependencies","symbols":["ModuleDependency"]},{"module":"../parsers/types","symbols":["ParsedSymbol"]},{"module":"./symbols","symbols":["makeStableSymbolId"]}]}
10
+ {"symbol_id":"ts://src/core/consolidation.ts#deduplicateAndSortDependencies(3f5c64e09d011452)","path":"src/core/consolidation.ts","kind":"function","name":"deduplicateAndSortDependencies","signature":{"name":"deduplicateAndSortDependencies","parameters":[{"name":"depMap","type":"Map<string, DependencyCacheEntry[]>","hasDefault":false}],"returnType":"DependencyCacheEntry[]","visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../parsers/dependencies","symbols":["ModuleDependency"]},{"module":"../parsers/types","symbols":["ParsedSymbol"]},{"module":"./symbols","symbols":["makeStableSymbolId"]}]}
11
+ {"symbol_id":"ts://src/core/consolidation.ts#DependenciesUnionResult(2a7b416e53ae2ed3)","path":"src/core/consolidation.ts","kind":"interface","name":"DependenciesUnionResult","signature":{"name":"DependenciesUnionResult","parameters":[{"name":"dependencies","type":"DependencyCacheEntry[]","hasDefault":false,"optional":false},{"name":"debug","type":"UnionDebugInfo","hasDefault":false,"optional":false}],"visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../parsers/dependencies","symbols":["ModuleDependency"]},{"module":"../parsers/types","symbols":["ParsedSymbol"]},{"module":"./symbols","symbols":["makeStableSymbolId"]}]}
12
+ {"symbol_id":"ts://src/core/consolidation.ts#UnionDebugInfo(4dce643aa7150b3f)","path":"src/core/consolidation.ts","kind":"interface","name":"UnionDebugInfo","signature":{"name":"UnionDebugInfo","parameters":[{"name":"keptFromUnparsed","type":"number","hasDefault":false,"optional":false},{"name":"skippedFromParsed","type":"number","hasDefault":false,"optional":false},{"name":"skippedFromDeleted","type":"number","hasDefault":false,"optional":false},{"name":"newDeps","type":"number","hasDefault":false,"optional":false}],"visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../parsers/dependencies","symbols":["ModuleDependency"]},{"module":"../parsers/types","symbols":["ParsedSymbol"]},{"module":"./symbols","symbols":["makeStableSymbolId"]}]}
13
+ {"symbol_id":"ts://src/core/scanner.ts#BACKUP_DIR_NAMES(fb710c1220c8e022)","path":"src/core/scanner.ts","kind":"variable","name":"BACKUP_DIR_NAMES","signature":{"name":"BACKUP_DIR_NAMES","parameters":[],"returnType":"Set<string>","visibility":"public"},"dependencies":[{"module":"../logging/index","symbols":["Logger"]},{"module":"./language-detection","symbols":["guessLanguageByShebang"]},{"module":"ignore","symbols":["default as ignore"]},{"module":"node:fs","symbols":["* as fs"]},{"module":"node:path","symbols":["* as path"]}]}
14
+ {"symbol_id":"ts://src/core/scanner.ts#BACKUP_FILE_SUFFIXES(a3b58fe5e8ff494e)","path":"src/core/scanner.ts","kind":"variable","name":"BACKUP_FILE_SUFFIXES","signature":{"name":"BACKUP_FILE_SUFFIXES","parameters":[],"returnType":"string[]","visibility":"public"},"dependencies":[{"module":"../logging/index","symbols":["Logger"]},{"module":"./language-detection","symbols":["guessLanguageByShebang"]},{"module":"ignore","symbols":["default as ignore"]},{"module":"node:fs","symbols":["* as fs"]},{"module":"node:path","symbols":["* as path"]}]}
15
+ {"symbol_id":"ts://src/core/scanner.ts#DEFAULT_EXCLUDES(fc6b6e046d36b3dd)","path":"src/core/scanner.ts","kind":"variable","name":"DEFAULT_EXCLUDES","signature":{"name":"DEFAULT_EXCLUDES","parameters":[],"returnType":"Set<string>","visibility":"public"},"dependencies":[{"module":"../logging/index","symbols":["Logger"]},{"module":"./language-detection","symbols":["guessLanguageByShebang"]},{"module":"ignore","symbols":["default as ignore"]},{"module":"node:fs","symbols":["* as fs"]},{"module":"node:path","symbols":["* as path"]}]}
16
+ {"symbol_id":"ts://src/core/scanner.ts#EXCLUDE_FILE_PATTERNS(947c25eb007d96f0)","path":"src/core/scanner.ts","kind":"variable","name":"EXCLUDE_FILE_PATTERNS","signature":{"name":"EXCLUDE_FILE_PATTERNS","parameters":[],"returnType":"RegExp[]","visibility":"public"},"dependencies":[{"module":"../logging/index","symbols":["Logger"]},{"module":"./language-detection","symbols":["guessLanguageByShebang"]},{"module":"ignore","symbols":["default as ignore"]},{"module":"node:fs","symbols":["* as fs"]},{"module":"node:path","symbols":["* as path"]}]}
17
+ {"symbol_id":"ts://src/core/scanner.ts#ScannedFile(7c102c616459a20a)","path":"src/core/scanner.ts","kind":"interface","name":"ScannedFile","signature":{"name":"ScannedFile","parameters":[{"name":"absolutePath","type":"string","hasDefault":false,"optional":false},{"name":"repositoryRelativePath","type":"string","hasDefault":false,"optional":false},{"name":"language","type":"string | null","hasDefault":false,"optional":false}],"visibility":"public"},"dependencies":[{"module":"../logging/index","symbols":["Logger"]},{"module":"./language-detection","symbols":["guessLanguageByShebang"]},{"module":"ignore","symbols":["default as ignore"]},{"module":"node:fs","symbols":["* as fs"]},{"module":"node:path","symbols":["* as path"]}]}
18
+ {"symbol_id":"ts://src/core/scanner.ts#ScanOptions(d2d336b1afc58b23)","path":"src/core/scanner.ts","kind":"interface","name":"ScanOptions","signature":{"name":"ScanOptions","parameters":[{"name":"workspaceRoot","type":"string","hasDefault":false,"optional":false},{"name":"includeGlobs","type":"string[]","hasDefault":false,"optional":true},{"name":"excludeGlobs","type":"string[]","hasDefault":false,"optional":true}],"visibility":"public"},"dependencies":[{"module":"../logging/index","symbols":["Logger"]},{"module":"./language-detection","symbols":["guessLanguageByShebang"]},{"module":"ignore","symbols":["default as ignore"]},{"module":"node:fs","symbols":["* as fs"]},{"module":"node:path","symbols":["* as path"]}]}
19
+ {"symbol_id":"ts://src/core/scanner.ts#scanWorkspace(606c9426b4f0d06a)","path":"src/core/scanner.ts","kind":"function","name":"scanWorkspace","signature":{"name":"scanWorkspace","parameters":[{"name":"options","type":"ScanOptions","hasDefault":false},{"name":"includeBackups","type":"boolean","hasDefault":true}],"returnType":"ScannedFile[]","visibility":"public"},"dependencies":[{"module":"../logging/index","symbols":["Logger"]},{"module":"./language-detection","symbols":["guessLanguageByShebang"]},{"module":"ignore","symbols":["default as ignore"]},{"module":"node:fs","symbols":["* as fs"]},{"module":"node:path","symbols":["* as path"]}]}
20
+ {"symbol_id":"ts://src/index/index.ts#buildIndexFromSymbols(1adc4faba238783a)","path":"src/index/index.ts","kind":"function","name":"buildIndexFromSymbols","signature":{"name":"buildIndexFromSymbols","parameters":[{"name":"symbols","type":"ParsedSymbol[]","hasDefault":false},{"name":"dependencies","type":"DependencyCacheEntry[]","hasDefault":true}],"returnType":"IndexRow[]","visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../core/symbols","symbols":["makeStableSymbolId"]},{"module":"../parsers/types","symbols":["ParsedSymbol","SymbolSignature"]},{"module":"fs","symbols":["* as fs"]},{"module":"path","symbols":["* as path"]}]}
21
+ {"symbol_id":"ts://src/index/index.ts#DependencyAccumulator(6df5766f11bdb453)","path":"src/index/index.ts","kind":"interface","name":"DependencyAccumulator","signature":{"name":"DependencyAccumulator","parameters":[{"name":"module","type":"string","hasDefault":false,"optional":false},{"name":"symbols","type":"string[]","hasDefault":false,"optional":false},{"name":"isTypeOnly","type":"boolean","hasDefault":false,"optional":false},{"name":"isReexport","type":"boolean","hasDefault":false,"optional":false}],"visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../core/symbols","symbols":["makeStableSymbolId"]},{"module":"../parsers/types","symbols":["ParsedSymbol","SymbolSignature"]},{"module":"fs","symbols":["* as fs"]},{"module":"path","symbols":["* as path"]}]}
22
+ {"symbol_id":"ts://src/index/index.ts#DependencyEntry(52591f71dd3dc9e6)","path":"src/index/index.ts","kind":"interface","name":"DependencyEntry","signature":{"name":"DependencyEntry","parameters":[{"name":"module","type":"string","hasDefault":false,"optional":false},{"name":"symbols","type":"string[]","hasDefault":false,"optional":true},{"name":"isTypeOnly","type":"boolean","hasDefault":false,"optional":true},{"name":"isReexport","type":"boolean","hasDefault":false,"optional":true}],"visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../core/symbols","symbols":["makeStableSymbolId"]},{"module":"../parsers/types","symbols":["ParsedSymbol","SymbolSignature"]},{"module":"fs","symbols":["* as fs"]},{"module":"path","symbols":["* as path"]}]}
23
+ {"symbol_id":"ts://src/index/index.ts#IndexRow(55562faaf7784957)","path":"src/index/index.ts","kind":"interface","name":"IndexRow","signature":{"name":"IndexRow","parameters":[{"name":"symbol_id","type":"string","hasDefault":false,"optional":false},{"name":"path","type":"string","hasDefault":false,"optional":false},{"name":"kind","type":"string","hasDefault":false,"optional":false},{"name":"name","type":"string","hasDefault":false,"optional":false},{"name":"signature","type":"SymbolSignature","hasDefault":false,"optional":true},{"name":"summary","type":"string","hasDefault":false,"optional":true},{"name":"dependencies","type":"string[] | DependencyEntry[]","hasDefault":false,"optional":true}],"visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../core/symbols","symbols":["makeStableSymbolId"]},{"module":"../parsers/types","symbols":["ParsedSymbol","SymbolSignature"]},{"module":"fs","symbols":["* as fs"]},{"module":"path","symbols":["* as path"]}]}
24
+ {"symbol_id":"ts://src/index/index.ts#readSymbolsFromIndex(37ed1c7149d54c83)","path":"src/index/index.ts","kind":"function","name":"readSymbolsFromIndex","signature":{"name":"readSymbolsFromIndex","parameters":[{"name":"indexFile","type":"string","hasDefault":false}],"returnType":"ParsedSymbol[]","visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../core/symbols","symbols":["makeStableSymbolId"]},{"module":"../parsers/types","symbols":["ParsedSymbol","SymbolSignature"]},{"module":"fs","symbols":["* as fs"]},{"module":"path","symbols":["* as path"]}]}
25
+ {"symbol_id":"ts://src/index/index.ts#writeJsonlIndex(e95bdd53c0d4b6f8)","path":"src/index/index.ts","kind":"function","name":"writeJsonlIndex","signature":{"name":"writeJsonlIndex","parameters":[{"name":"rows","type":"IndexRow[]","hasDefault":false},{"name":"outFile","type":"string","hasDefault":false}],"returnType":"void","visibility":"public"},"dependencies":[{"module":"../cache/dependencies-cache","symbols":["DependencyCacheEntry"]},{"module":"../core/symbols","symbols":["makeStableSymbolId"]},{"module":"../parsers/types","symbols":["ParsedSymbol","SymbolSignature"]},{"module":"fs","symbols":["* as fs"]},{"module":"path","symbols":["* as path"]}]}
26
+ {"symbol_id":"ts://src/parsers/json-yaml.ts#asRepoRel(b4257ebe440ba31b)","path":"src/parsers/json-yaml.ts","kind":"function","name":"asRepoRel","signature":{"name":"asRepoRel","parameters":[{"name":"p","type":"string","hasDefault":false}],"returnType":"string","visibility":"public"},"dependencies":[{"module":"./types","symbols":["ParsedSymbol","ParserAdapter","SymbolSignature"]},{"module":"path","symbols":["* as path"]},{"module":"yaml","symbols":["* as YAML"]}]}
27
+ {"symbol_id":"ts://src/parsers/json-yaml.ts#JsonYamlParser.collectFromObject(124af879908e810f)","path":"src/parsers/json-yaml.ts","kind":"method","name":"JsonYamlParser.collectFromObject","signature":{"name":"collectFromObject","parameters":[{"name":"obj","type":"any","hasDefault":false},{"name":"repoRel","type":"string","hasDefault":false},{"name":"out","type":"ParsedSymbol[]","hasDefault":false},{"name":"lang","type":"string","hasDefault":false}],"returnType":"void","visibility":"private"},"dependencies":[{"module":"./types","symbols":["ParsedSymbol","ParserAdapter","SymbolSignature"]},{"module":"path","symbols":["* as path"]},{"module":"yaml","symbols":["* as YAML"]}]}
28
+ {"symbol_id":"ts://src/parsers/json-yaml.ts#JsonYamlParser.extractFrontMatter(1c5c9aa31d00ce0a)","path":"src/parsers/json-yaml.ts","kind":"method","name":"JsonYamlParser.extractFrontMatter","signature":{"name":"extractFrontMatter","parameters":[{"name":"content","type":"string","hasDefault":false}],"returnType":"any | null","visibility":"private"},"dependencies":[{"module":"./types","symbols":["ParsedSymbol","ParserAdapter","SymbolSignature"]},{"module":"path","symbols":["* as path"]},{"module":"yaml","symbols":["* as YAML"]}]}
29
+ {"symbol_id":"ts://src/parsers/json-yaml.ts#JsonYamlParser.language(1377df0dffb38b51)","path":"src/parsers/json-yaml.ts","kind":"variable","name":"JsonYamlParser.language","signature":{"name":"language","parameters":[],"returnType":"string","visibility":"public"},"dependencies":[{"module":"./types","symbols":["ParsedSymbol","ParserAdapter","SymbolSignature"]},{"module":"path","symbols":["* as path"]},{"module":"yaml","symbols":["* as YAML"]}]}
30
+ {"symbol_id":"ts://src/parsers/json-yaml.ts#JsonYamlParser.parse(7fb4e4727025247b)","path":"src/parsers/json-yaml.ts","kind":"method","name":"JsonYamlParser.parse","signature":{"name":"parse","parameters":[{"name":"filePath","type":"string","hasDefault":false},{"name":"fileContent","type":"string","hasDefault":false}],"returnType":"ParsedSymbol[]","visibility":"public"},"dependencies":[{"module":"./types","symbols":["ParsedSymbol","ParserAdapter","SymbolSignature"]},{"module":"path","symbols":["* as path"]},{"module":"yaml","symbols":["* as YAML"]}]}
31
+ {"symbol_id":"ts://src/parsers/json-yaml.ts#JsonYamlParser(10445888500045e7)","path":"src/parsers/json-yaml.ts","kind":"class","name":"JsonYamlParser","signature":{"name":"JsonYamlParser","parameters":[]},"dependencies":[{"module":"./types","symbols":["ParsedSymbol","ParserAdapter","SymbolSignature"]},{"module":"path","symbols":["* as path"]},{"module":"yaml","symbols":["* as YAML"]}]}
@@ -0,0 +1,50 @@
1
+ # Modul: action/action.yml
2
+
3
+ ### variable: author
4
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
5
+ Signatur: `author: string`
6
+ ```ts
7
+ author: string
8
+ ```
9
+
10
+ ### variable: branding
11
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
12
+ Signatur: `branding: object`
13
+ ```ts
14
+ branding: object
15
+ ```
16
+
17
+ ### variable: description
18
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
19
+ Signatur: `description: string`
20
+ ```ts
21
+ description: string
22
+ ```
23
+
24
+ ### variable: inputs
25
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
26
+ Signatur: `inputs: object`
27
+ ```ts
28
+ inputs: object
29
+ ```
30
+
31
+ ### variable: name
32
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
33
+ Signatur: `name: string`
34
+ ```ts
35
+ name: string
36
+ ```
37
+
38
+ ### variable: outputs
39
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
40
+ Signatur: `outputs: object`
41
+ ```ts
42
+ outputs: object
43
+ ```
44
+
45
+ ### variable: runs
46
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
47
+ Signatur: `runs: object`
48
+ ```ts
49
+ runs: object
50
+ ```
@@ -0,0 +1,37 @@
1
+ # Modul: documentation.config.schema.json
2
+
3
+ <!-- change: signature-changed old="$schema():" new="$schema():string" -->
4
+ ### variable: $schema
5
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
6
+ Signatur: `$schema: string`
7
+ ```ts
8
+ $schema: string
9
+ ```
10
+
11
+ ### variable: additionalProperties
12
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
13
+ Signatur: `additionalProperties: boolean`
14
+ ```ts
15
+ additionalProperties: boolean
16
+ ```
17
+
18
+ ### variable: properties
19
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
20
+ Signatur: `properties: object`
21
+ ```ts
22
+ properties: object
23
+ ```
24
+
25
+ ### variable: title
26
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
27
+ Signatur: `title: string`
28
+ ```ts
29
+ title: string
30
+ ```
31
+
32
+ ### variable: type
33
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
34
+ Signatur: `type: string`
35
+ ```ts
36
+ type: string
37
+ ```
@@ -0,0 +1,130 @@
1
+ # Modul: mcp/package.json
2
+
3
+ <!-- change: symbol-added name="homepage" kind="variable" -->
4
+ ### variable: author
5
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
6
+ Signatur: `author: string`
7
+ ```ts
8
+ author: string
9
+ ```
10
+
11
+ <!-- change: symbol-added name="keywords" kind="variable" -->
12
+ ### variable: bin
13
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
14
+ Signatur: `bin: object`
15
+ ```ts
16
+ bin: object
17
+ ```
18
+
19
+ <!-- change: symbol-added name="license" kind="variable" -->
20
+ ### variable: bugs
21
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
22
+ Signatur: `bugs: object`
23
+ ```ts
24
+ bugs: object
25
+ ```
26
+
27
+ <!-- change: symbol-added name="main" kind="variable" -->
28
+ ### variable: dependencies
29
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
30
+ Signatur: `dependencies: object`
31
+ ```ts
32
+ dependencies: object
33
+ ```
34
+
35
+ <!-- change: symbol-added name="name" kind="variable" -->
36
+ ### variable: description
37
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
38
+ Signatur: `description: string`
39
+ ```ts
40
+ description: string
41
+ ```
42
+
43
+ <!-- change: symbol-added name="scripts" kind="variable" -->
44
+ ### variable: devDependencies
45
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
46
+ Signatur: `devDependencies: object`
47
+ ```ts
48
+ devDependencies: object
49
+ ```
50
+
51
+ <!-- change: symbol-added name="type" kind="variable" -->
52
+ ### variable: engines
53
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
54
+ Signatur: `engines: object`
55
+ ```ts
56
+ engines: object
57
+ ```
58
+
59
+ <!-- change: symbol-added name="types" kind="variable" -->
60
+ ### variable: homepage
61
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
62
+ Signatur: `homepage: string`
63
+ ```ts
64
+ homepage: string
65
+ ```
66
+
67
+ <!-- change: symbol-added name="version" kind="variable" -->
68
+ ### variable: keywords
69
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
70
+ Signatur: `keywords: object`
71
+ ```ts
72
+ keywords: object
73
+ ```
74
+
75
+ <!-- change: symbol-added name="repository" kind="variable" -->
76
+ ### variable: license
77
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
78
+ Signatur: `license: string`
79
+ ```ts
80
+ license: string
81
+ ```
82
+
83
+ ### variable: main
84
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
85
+ Signatur: `main: string`
86
+ ```ts
87
+ main: string
88
+ ```
89
+
90
+ ### variable: name
91
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
92
+ Signatur: `name: string`
93
+ ```ts
94
+ name: string
95
+ ```
96
+
97
+ ### variable: scripts
98
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
99
+ Signatur: `scripts: object`
100
+ ```ts
101
+ scripts: object
102
+ ```
103
+
104
+ ### variable: type
105
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
106
+ Signatur: `type: string`
107
+ ```ts
108
+ type: string
109
+ ```
110
+
111
+ ### variable: types
112
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
113
+ Signatur: `types: string`
114
+ ```ts
115
+ types: string
116
+ ```
117
+
118
+ ### variable: version
119
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
120
+ Signatur: `version: string`
121
+ ```ts
122
+ version: string
123
+ ```
124
+
125
+ ### variable: repository
126
+ Rolle: infra (Sichtbarkeit: public, Priorität: low)
127
+ Signatur: `repository: object`
128
+ ```ts
129
+ repository: object
130
+ ```
@@ -0,0 +1,94 @@
1
+ # Modul: mcp/src/resources/docs.ts
2
+
3
+ ### interface: ParsedUri
4
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
5
+ Signatur: `interface ParsedUri {
6
+ type: 'system' | 'modules' | 'adr' | 'index';
7
+ name: string;
8
+ filePath: string;
9
+ }`
10
+ ```ts
11
+ interface ParsedUri {
12
+ type: 'system' | 'modules' | 'adr' | 'index';
13
+ name: string;
14
+ filePath: string;
15
+ }
16
+ ```
17
+
18
+ Eigenschaften:
19
+
20
+ | Name | Typ | Optional |
21
+ |------|-----|----------|
22
+ | `filePath` | `string` | nein |
23
+ | `name` | `string` | nein |
24
+ | `type` | `'system' | 'modules' | 'adr' | 'index'` | nein |
25
+
26
+ ### function: getSystemFilePath
27
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
28
+ Signatur: `getSystemFilePath(name: string): string`
29
+ ```ts
30
+ getSystemFilePath(name: string): string
31
+ ```
32
+
33
+ Parameter:
34
+
35
+ | Name | Typ | Optional | Default |
36
+ |------|-----|----------|---------|
37
+ | `name` | `string` | nein | nein |
38
+
39
+ Rückgabewert: `string`
40
+
41
+ ### function: listADRs
42
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
43
+ Signatur: `listADRs(): Promise<string[]>`
44
+ ```ts
45
+ listADRs(): Promise<string[]>
46
+ ```
47
+
48
+ Rückgabewert: `Promise<string[]>`
49
+
50
+ ### function: listModuleDocs
51
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
52
+ Signatur: `listModuleDocs(): Promise<string[]>`
53
+ ```ts
54
+ listModuleDocs(): Promise<string[]>
55
+ ```
56
+
57
+ Rückgabewert: `Promise<string[]>`
58
+
59
+ ### function: parseDocsUri
60
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
61
+ Signatur: `parseDocsUri(uri: string): ParsedUri | null`
62
+ ```ts
63
+ parseDocsUri(uri: string): ParsedUri | null
64
+ ```
65
+
66
+ Parameter:
67
+
68
+ | Name | Typ | Optional | Default |
69
+ |------|-----|----------|---------|
70
+ | `uri` | `string` | nein | nein |
71
+
72
+ Rückgabewert: `ParsedUri | null`
73
+
74
+ ### function: readDocsResource
75
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
76
+ Signatur: `readDocsResource(uri: string): Promise<string>`
77
+ ```ts
78
+ readDocsResource(uri: string): Promise<string>
79
+ ```
80
+
81
+ Parameter:
82
+
83
+ | Name | Typ | Optional | Default |
84
+ |------|-----|----------|---------|
85
+ | `uri` | `string` | nein | nein |
86
+
87
+ Rückgabewert: `Promise<string>`
88
+
89
+ ### variable: DOCS_BASE
90
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
91
+ Signatur: `DOCS_BASE: "docs"`
92
+ ```ts
93
+ DOCS_BASE: "docs"
94
+ ```
@@ -0,0 +1,15 @@
1
+ # Modul: mcp/src/server.ts
2
+
3
+ ### variable: server
4
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
5
+ Signatur: `server: any`
6
+ ```ts
7
+ server: any
8
+ ```
9
+
10
+ ### variable: transport
11
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
12
+ Signatur: `transport: StdioServerTransport`
13
+ ```ts
14
+ transport: StdioServerTransport
15
+ ```
@@ -0,0 +1,110 @@
1
+ # Modul: mcp/src/tools/drift.ts
2
+
3
+ ### interface: DriftRequest
4
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
5
+ Signatur: `interface DriftRequest {
6
+ since?: string;
7
+ }`
8
+ ```ts
9
+ interface DriftRequest {
10
+ since?: string;
11
+ }
12
+ ```
13
+
14
+ Eigenschaften:
15
+
16
+ | Name | Typ | Optional |
17
+ |------|-----|----------|
18
+ | `since` | `string` | ja |
19
+
20
+ ### interface: DriftResponse
21
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
22
+ Signatur: `interface DriftResponse {
23
+ status: 'clean' | 'drift_detected';
24
+ drifted: DriftItem[];
25
+ changedFiles: string[];
26
+ duration: number;
27
+ }`
28
+ ```ts
29
+ interface DriftResponse {
30
+ status: 'clean' | 'drift_detected';
31
+ drifted: DriftItem[];
32
+ changedFiles: string[];
33
+ duration: number;
34
+ }
35
+ ```
36
+
37
+ Eigenschaften:
38
+
39
+ | Name | Typ | Optional |
40
+ |------|-----|----------|
41
+ | `changedFiles` | `string[]` | nein |
42
+ | `drifted` | `DriftItem[]` | nein |
43
+ | `duration` | `number` | nein |
44
+ | `status` | `'clean' | 'drift_detected'` | nein |
45
+
46
+ ### interface: DriftItem
47
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
48
+ Signatur: `interface DriftItem {
49
+ file: string;
50
+ type: 'signature_mismatch' | 'new_file' | 'deleted_file' | 'modified';
51
+ expected?: string;
52
+ found?: string;
53
+ message: string;
54
+ }`
55
+ ```ts
56
+ interface DriftItem {
57
+ file: string;
58
+ type: 'signature_mismatch' | 'new_file' | 'deleted_file' | 'modified';
59
+ expected?: string;
60
+ found?: string;
61
+ message: string;
62
+ }
63
+ ```
64
+
65
+ Eigenschaften:
66
+
67
+ | Name | Typ | Optional |
68
+ |------|-----|----------|
69
+ | `expected` | `string` | ja |
70
+ | `file` | `string` | nein |
71
+ | `found` | `string` | ja |
72
+ | `message` | `string` | nein |
73
+ | `type` | `'signature_mismatch' | 'new_file' | 'deleted_file' | 'modified'` | nein |
74
+
75
+ ### function: getDocPath
76
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
77
+ Signatur: `getDocPath(sourcePath: string): string`
78
+ ```ts
79
+ getDocPath(sourcePath: string): string
80
+ ```
81
+
82
+ Parameter:
83
+
84
+ | Name | Typ | Optional | Default |
85
+ |------|-----|----------|---------|
86
+ | `sourcePath` | `string` | nein | nein |
87
+
88
+ Rückgabewert: `string`
89
+
90
+ ### function: runDriftCheck
91
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
92
+ Signatur: `runDriftCheck(request: DriftRequest): Promise<DriftResponse>`
93
+ ```ts
94
+ runDriftCheck(request: DriftRequest): Promise<DriftResponse>
95
+ ```
96
+
97
+ Parameter:
98
+
99
+ | Name | Typ | Optional | Default |
100
+ |------|-----|----------|---------|
101
+ | `request` | `DriftRequest` | nein | nein |
102
+
103
+ Rückgabewert: `Promise<DriftResponse>`
104
+
105
+ ### variable: execAsync
106
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
107
+ Signatur: `execAsync: typeof exec.__promisify__`
108
+ ```ts
109
+ execAsync: typeof exec.__promisify__
110
+ ```