@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,355 @@
1
+ # Modul: packages/doc-system-agent/src/mcp/types.ts
2
+
3
+ <!-- change: symbol-added name="ValidateRequest" kind="interface" -->
4
+ ### interface: DriftRequest
5
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
6
+ Signatur: `interface DriftRequest {
7
+ since?: string;
8
+ }`
9
+ ```ts
10
+ interface DriftRequest {
11
+ since?: string;
12
+ }
13
+ ```
14
+
15
+ Eigenschaften:
16
+
17
+ | Name | Typ | Optional |
18
+ |------|-----|----------|
19
+ | `since` | `string` | ja |
20
+
21
+ <!-- change: symbol-added name="ValidateResponse" kind="interface" -->
22
+ ### interface: DriftResponse
23
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
24
+ Signatur: `interface DriftResponse {
25
+ status: 'clean' | 'drift_detected';
26
+ drifted: DriftItem[];
27
+ changedFiles: string[];
28
+ duration: number;
29
+ }`
30
+ ```ts
31
+ interface DriftResponse {
32
+ status: 'clean' | 'drift_detected';
33
+ drifted: DriftItem[];
34
+ changedFiles: string[];
35
+ duration: number;
36
+ }
37
+ ```
38
+
39
+ Eigenschaften:
40
+
41
+ | Name | Typ | Optional |
42
+ |------|-----|----------|
43
+ | `changedFiles` | `string[]` | nein |
44
+ | `drifted` | `DriftItem[]` | nein |
45
+ | `duration` | `number` | nein |
46
+ | `status` | `'clean' | 'drift_detected'` | nein |
47
+
48
+ <!-- change: symbol-added name="DriftItem" kind="interface" -->
49
+ ### interface: ImpactRequest
50
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
51
+ Signatur: `interface ImpactRequest {
52
+ file: string;
53
+ symbol?: string;
54
+ }`
55
+ ```ts
56
+ interface ImpactRequest {
57
+ file: string;
58
+ symbol?: string;
59
+ }
60
+ ```
61
+
62
+ Eigenschaften:
63
+
64
+ | Name | Typ | Optional |
65
+ |------|-----|----------|
66
+ | `file` | `string` | nein |
67
+ | `symbol` | `string` | ja |
68
+
69
+ <!-- change: symbol-added name="ValidationError" kind="interface" -->
70
+ ### interface: ImpactResponse
71
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
72
+ Signatur: `interface ImpactResponse {
73
+ file: string;
74
+ symbol?: string;
75
+ directDependents: string[];
76
+ transitiveDependents: string[];
77
+ impactLevel: 'low' | 'medium' | 'high' | 'critical';
78
+ recommendation: string;
79
+ }`
80
+ ```ts
81
+ interface ImpactResponse {
82
+ file: string;
83
+ symbol?: string;
84
+ directDependents: string[];
85
+ transitiveDependents: string[];
86
+ impactLevel: 'low' | 'medium' | 'high' | 'critical';
87
+ recommendation: string;
88
+ }
89
+ ```
90
+
91
+ Eigenschaften:
92
+
93
+ | Name | Typ | Optional |
94
+ |------|-----|----------|
95
+ | `directDependents` | `string[]` | nein |
96
+ | `file` | `string` | nein |
97
+ | `impactLevel` | `'low' | 'medium' | 'high' | 'critical'` | nein |
98
+ | `recommendation` | `string` | nein |
99
+ | `symbol` | `string` | ja |
100
+ | `transitiveDependents` | `string[]` | nein |
101
+
102
+ ### interface: ScanRequest
103
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
104
+ Signatur: `interface ScanRequest {
105
+ files?: string[];
106
+ incremental?: boolean;
107
+ }`
108
+ ```ts
109
+ interface ScanRequest {
110
+ files?: string[];
111
+ incremental?: boolean;
112
+ }
113
+ ```
114
+
115
+ Eigenschaften:
116
+
117
+ | Name | Typ | Optional |
118
+ |------|-----|----------|
119
+ | `files` | `string[]` | ja |
120
+ | `incremental` | `boolean` | ja |
121
+
122
+ ### interface: ScanResponse
123
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
124
+ Signatur: `interface ScanResponse {
125
+ status: 'success' | 'error' | 'partial';
126
+ filesProcessed: number;
127
+ symbolsExtracted: number;
128
+ duration: number;
129
+ logs: string[];
130
+ errors?: string[];
131
+ }`
132
+ ```ts
133
+ interface ScanResponse {
134
+ status: 'success' | 'error' | 'partial';
135
+ filesProcessed: number;
136
+ symbolsExtracted: number;
137
+ duration: number;
138
+ logs: string[];
139
+ errors?: string[];
140
+ }
141
+ ```
142
+
143
+ Eigenschaften:
144
+
145
+ | Name | Typ | Optional |
146
+ |------|-----|----------|
147
+ | `duration` | `number` | nein |
148
+ | `errors` | `string[]` | ja |
149
+ | `filesProcessed` | `number` | nein |
150
+ | `logs` | `string[]` | nein |
151
+ | `status` | `'success' | 'error' | 'partial'` | nein |
152
+ | `symbolsExtracted` | `number` | nein |
153
+
154
+ <!-- change: symbol-added name="VerifyAdrsRequest" kind="interface" -->
155
+ ### interface: ValidateRequest
156
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
157
+ Signatur: `interface ValidateRequest {
158
+ files?: string[];
159
+ verbose?: boolean;
160
+ }`
161
+ ```ts
162
+ interface ValidateRequest {
163
+ files?: string[];
164
+ verbose?: boolean;
165
+ }
166
+ ```
167
+
168
+ Eigenschaften:
169
+
170
+ | Name | Typ | Optional |
171
+ |------|-----|----------|
172
+ | `files` | `string[]` | ja |
173
+ | `verbose` | `boolean` | ja |
174
+
175
+ <!-- change: symbol-added name="VerifyAdrsResponse" kind="interface" -->
176
+ ### interface: ValidateResponse
177
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
178
+ Signatur: `interface ValidateResponse {
179
+ status: 'success' | 'warnings' | 'errors';
180
+ errors: ValidationError[];
181
+ warnings: ValidationError[];
182
+ coverage: {
183
+ documented: number;
184
+ total: number;
185
+ percentage: number;
186
+ };
187
+ duration: number;
188
+ logs: string[];
189
+ }`
190
+ ```ts
191
+ interface ValidateResponse {
192
+ status: 'success' | 'warnings' | 'errors';
193
+ errors: ValidationError[];
194
+ warnings: ValidationError[];
195
+ coverage: {
196
+ documented: number;
197
+ total: number;
198
+ percentage: number;
199
+ };
200
+ duration: number;
201
+ logs: string[];
202
+ }
203
+ ```
204
+
205
+ Eigenschaften:
206
+
207
+ | Name | Typ | Optional |
208
+ |------|-----|----------|
209
+ | `coverage` | `{
210
+ documented: number;
211
+ total: number;
212
+ percentage: number;
213
+ }` | nein |
214
+ | `duration` | `number` | nein |
215
+ | `errors` | `ValidationError[]` | nein |
216
+ | `logs` | `string[]` | nein |
217
+ | `status` | `'success' | 'warnings' | 'errors'` | nein |
218
+ | `warnings` | `ValidationError[]` | nein |
219
+
220
+ <!-- change: symbol-added name="AdrClaim" kind="interface" -->
221
+ ### interface: VerifyAdrsRequest
222
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
223
+ Signatur: `interface VerifyAdrsRequest {
224
+ verbose?: boolean;
225
+ }`
226
+ ```ts
227
+ interface VerifyAdrsRequest {
228
+ verbose?: boolean;
229
+ }
230
+ ```
231
+
232
+ Eigenschaften:
233
+
234
+ | Name | Typ | Optional |
235
+ |------|-----|----------|
236
+ | `verbose` | `boolean` | ja |
237
+
238
+ ### interface: VerifyAdrsResponse
239
+ Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
240
+ Signatur: `interface VerifyAdrsResponse {
241
+ status: 'success' | 'warnings' | 'errors';
242
+ totalClaims: number;
243
+ verifiedClaims: number;
244
+ errors: AdrClaim[];
245
+ warnings: AdrClaim[];
246
+ duration: number;
247
+ logs: string[];
248
+ }`
249
+ ```ts
250
+ interface VerifyAdrsResponse {
251
+ status: 'success' | 'warnings' | 'errors';
252
+ totalClaims: number;
253
+ verifiedClaims: number;
254
+ errors: AdrClaim[];
255
+ warnings: AdrClaim[];
256
+ duration: number;
257
+ logs: string[];
258
+ }
259
+ ```
260
+
261
+ Eigenschaften:
262
+
263
+ | Name | Typ | Optional |
264
+ |------|-----|----------|
265
+ | `duration` | `number` | nein |
266
+ | `errors` | `AdrClaim[]` | nein |
267
+ | `logs` | `string[]` | nein |
268
+ | `status` | `'success' | 'warnings' | 'errors'` | nein |
269
+ | `totalClaims` | `number` | nein |
270
+ | `verifiedClaims` | `number` | nein |
271
+ | `warnings` | `AdrClaim[]` | nein |
272
+
273
+ ### interface: AdrClaim
274
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
275
+ Signatur: `interface AdrClaim {
276
+ adr: string;
277
+ line: number;
278
+ claim: string;
279
+ type: 'file-exists' | 'function-exists';
280
+ }`
281
+ ```ts
282
+ interface AdrClaim {
283
+ adr: string;
284
+ line: number;
285
+ claim: string;
286
+ type: 'file-exists' | 'function-exists';
287
+ }
288
+ ```
289
+
290
+ Eigenschaften:
291
+
292
+ | Name | Typ | Optional |
293
+ |------|-----|----------|
294
+ | `adr` | `string` | nein |
295
+ | `claim` | `string` | nein |
296
+ | `line` | `number` | nein |
297
+ | `type` | `'file-exists' | 'function-exists'` | nein |
298
+
299
+ ### interface: DriftItem
300
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
301
+ Signatur: `interface DriftItem {
302
+ file: string;
303
+ type: 'signature_mismatch' | 'new_file' | 'deleted_file' | 'modified';
304
+ expected?: string;
305
+ found?: string;
306
+ message: string;
307
+ }`
308
+ ```ts
309
+ interface DriftItem {
310
+ file: string;
311
+ type: 'signature_mismatch' | 'new_file' | 'deleted_file' | 'modified';
312
+ expected?: string;
313
+ found?: string;
314
+ message: string;
315
+ }
316
+ ```
317
+
318
+ Eigenschaften:
319
+
320
+ | Name | Typ | Optional |
321
+ |------|-----|----------|
322
+ | `expected` | `string` | ja |
323
+ | `file` | `string` | nein |
324
+ | `found` | `string` | ja |
325
+ | `message` | `string` | nein |
326
+ | `type` | `'signature_mismatch' | 'new_file' | 'deleted_file' | 'modified'` | nein |
327
+
328
+ ### interface: ValidationError
329
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
330
+ Signatur: `interface ValidationError {
331
+ file: string;
332
+ type: 'signature_mismatch' | 'missing_docs' | 'stale_docs' | 'coverage';
333
+ message: string;
334
+ expected?: string;
335
+ found?: string;
336
+ }`
337
+ ```ts
338
+ interface ValidationError {
339
+ file: string;
340
+ type: 'signature_mismatch' | 'missing_docs' | 'stale_docs' | 'coverage';
341
+ message: string;
342
+ expected?: string;
343
+ found?: string;
344
+ }
345
+ ```
346
+
347
+ Eigenschaften:
348
+
349
+ | Name | Typ | Optional |
350
+ |------|-----|----------|
351
+ | `expected` | `string` | ja |
352
+ | `file` | `string` | nein |
353
+ | `found` | `string` | ja |
354
+ | `message` | `string` | nein |
355
+ | `type` | `'signature_mismatch' | 'missing_docs' | 'stale_docs' | 'coverage'` | nein |
@@ -0,0 +1,22 @@
1
+ # Modul: packages/doc-system-agent/tsconfig.json
2
+
3
+ ### variable: compilerOptions
4
+ Rolle: config (Sichtbarkeit: public, Priorität: normal)
5
+ Signatur: `compilerOptions: object`
6
+ ```ts
7
+ compilerOptions: object
8
+ ```
9
+
10
+ ### variable: exclude
11
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
12
+ Signatur: `exclude: object`
13
+ ```ts
14
+ exclude: object
15
+ ```
16
+
17
+ ### variable: include
18
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
19
+ Signatur: `include: object`
20
+ ```ts
21
+ include: object
22
+ ```
@@ -0,0 +1,97 @@
1
+ # Modul: scripts/verify-adrs.js
2
+
3
+ <!-- change: symbol-added name="searchInDirectory" kind="function" -->
4
+ ### function: extractClaimsFromAdr
5
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
6
+ Signatur: `extractClaimsFromAdr(adrPath: any): ({ type: string; name: string; adr: string; line: number; explicit: boolean; } | { type: string; file: string; adr: string; line: number; })[]`
7
+ ```ts
8
+ extractClaimsFromAdr(adrPath: any): ({ type: string; name: string; adr: string; line: number; explicit: boolean; } | { type: string; file: string; adr: string; line: number; })[]
9
+ ```
10
+
11
+ Parameter:
12
+
13
+ | Name | Typ | Optional | Default |
14
+ |------|-----|----------|---------|
15
+ | `adrPath` | `any` | nein | nein |
16
+
17
+ Rückgabewert: `({ type: string; name: string; adr: string; line: number; explicit: boolean; } | { type: string; file: string; adr: string; line: number; })[]`
18
+
19
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
20
+ ### function: main
21
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
22
+ Signatur: `main(): void`
23
+ ```ts
24
+ main(): void
25
+ ```
26
+
27
+ Rückgabewert: `void`
28
+
29
+ <!-- change: symbol-removed name="{ execSync }" kind="variable" -->
30
+ ### function: searchInDirectory
31
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
32
+ Signatur: `searchInDirectory(dir: any, pattern: any): boolean`
33
+ ```ts
34
+ searchInDirectory(dir: any, pattern: any): boolean
35
+ ```
36
+
37
+ Parameter:
38
+
39
+ | Name | Typ | Optional | Default |
40
+ |------|-----|----------|---------|
41
+ | `dir` | `any` | nein | nein |
42
+ | `pattern` | `any` | nein | nein |
43
+
44
+ Rückgabewert: `boolean`
45
+
46
+ <!-- change: symbol-removed name="{ execSync }" kind="variable" -->
47
+ ### function: verifyClaim
48
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
49
+ Signatur: `verifyClaim(claim: any, workspaceRoot: any): boolean`
50
+ ```ts
51
+ verifyClaim(claim: any, workspaceRoot: any): boolean
52
+ ```
53
+
54
+ Parameter:
55
+
56
+ | Name | Typ | Optional | Default |
57
+ |------|-----|----------|---------|
58
+ | `claim` | `any` | nein | nein |
59
+ | `workspaceRoot` | `any` | nein | nein |
60
+
61
+ Rückgabewert: `boolean`
62
+
63
+ <!-- change: symbol-removed name="{ execSync }" kind="variable" -->
64
+ ### variable: { execSync }
65
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
66
+ Signatur: `{ execSync }`
67
+ ```ts
68
+ { execSync }
69
+ ```
70
+
71
+ ### variable: errors
72
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
73
+ Signatur: `errors: string[]`
74
+ ```ts
75
+ errors: string[]
76
+ ```
77
+
78
+ ### variable: fs
79
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
80
+ Signatur: `fs: typeof import("fs")`
81
+ ```ts
82
+ fs: typeof import("fs")
83
+ ```
84
+
85
+ ### variable: path
86
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
87
+ Signatur: `path: PlatformPath`
88
+ ```ts
89
+ path: PlatformPath
90
+ ```
91
+
92
+ ### variable: warnings
93
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
94
+ Signatur: `warnings: string[]`
95
+ ```ts
96
+ warnings: string[]
97
+ ```
@@ -0,0 +1,93 @@
1
+ # Modul: scripts/verify-architecture.js
2
+
3
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
4
+ ### function: checkImportDirections
5
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
6
+ Signatur: `checkImportDirections(): void`
7
+ ```ts
8
+ checkImportDirections(): void
9
+ ```
10
+
11
+ Rückgabewert: `void`
12
+
13
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
14
+ ### function: checkMcpToSrcImports
15
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
16
+ Signatur: `checkMcpToSrcImports(): void`
17
+ ```ts
18
+ checkMcpToSrcImports(): void
19
+ ```
20
+
21
+ Rückgabewert: `void`
22
+
23
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
24
+ ### function: checkPackageJsonType
25
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
26
+ Signatur: `checkPackageJsonType(): void`
27
+ ```ts
28
+ checkPackageJsonType(): void
29
+ ```
30
+
31
+ Rückgabewert: `void`
32
+
33
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
34
+ ### function: getAllTsFiles
35
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
36
+ Signatur: `getAllTsFiles(dir: any): any[]`
37
+ ```ts
38
+ getAllTsFiles(dir: any): any[]
39
+ ```
40
+
41
+ Parameter:
42
+
43
+ | Name | Typ | Optional | Default |
44
+ |------|-----|----------|---------|
45
+ | `dir` | `any` | nein | nein |
46
+
47
+ Rückgabewert: `any[]`
48
+
49
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
50
+ ### function: main
51
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
52
+ Signatur: `main(): void`
53
+ ```ts
54
+ main(): void
55
+ ```
56
+
57
+ Rückgabewert: `void`
58
+
59
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
60
+ ### variable: { execSync }
61
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
62
+ Signatur: `{ execSync }: any`
63
+ ```ts
64
+ { execSync }: any
65
+ ```
66
+
67
+ ### variable: errors
68
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
69
+ Signatur: `errors: string[]`
70
+ ```ts
71
+ errors: string[]
72
+ ```
73
+
74
+ ### variable: fs
75
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
76
+ Signatur: `fs: typeof import("fs")`
77
+ ```ts
78
+ fs: typeof import("fs")
79
+ ```
80
+
81
+ ### variable: path
82
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
83
+ Signatur: `path: PlatformPath`
84
+ ```ts
85
+ path: PlatformPath
86
+ ```
87
+
88
+ ### variable: warnings
89
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
90
+ Signatur: `warnings: string[]`
91
+ ```ts
92
+ warnings: string[]
93
+ ```
@@ -0,0 +1,114 @@
1
+ # Modul: scripts/verify-imports.js
2
+
3
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
4
+ ### function: checkFileImports
5
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
6
+ Signatur: `checkFileImports(filePath: any, workspaceRoot: any): void`
7
+ ```ts
8
+ checkFileImports(filePath: any, workspaceRoot: any): void
9
+ ```
10
+
11
+ Parameter:
12
+
13
+ | Name | Typ | Optional | Default |
14
+ |------|-----|----------|---------|
15
+ | `filePath` | `any` | nein | nein |
16
+ | `workspaceRoot` | `any` | nein | nein |
17
+
18
+ Rückgabewert: `void`
19
+
20
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
21
+ ### function: checkImport
22
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
23
+ Signatur: `checkImport(importPath: any, importedName: any, fromFile: any): boolean`
24
+ ```ts
25
+ checkImport(importPath: any, importedName: any, fromFile: any): boolean
26
+ ```
27
+
28
+ Parameter:
29
+
30
+ | Name | Typ | Optional | Default |
31
+ |------|-----|----------|---------|
32
+ | `fromFile` | `any` | nein | nein |
33
+ | `importedName` | `any` | nein | nein |
34
+ | `importPath` | `any` | nein | nein |
35
+
36
+ Rückgabewert: `boolean`
37
+
38
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
39
+ ### function: extractExports
40
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
41
+ Signatur: `extractExports(filePath: any): any[]`
42
+ ```ts
43
+ extractExports(filePath: any): any[]
44
+ ```
45
+
46
+ Parameter:
47
+
48
+ | Name | Typ | Optional | Default |
49
+ |------|-----|----------|---------|
50
+ | `filePath` | `any` | nein | nein |
51
+
52
+ Rückgabewert: `any[]`
53
+
54
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
55
+ ### function: getAllTsFiles
56
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
57
+ Signatur: `getAllTsFiles(dir: any): any[]`
58
+ ```ts
59
+ getAllTsFiles(dir: any): any[]
60
+ ```
61
+
62
+ Parameter:
63
+
64
+ | Name | Typ | Optional | Default |
65
+ |------|-----|----------|---------|
66
+ | `dir` | `any` | nein | nein |
67
+
68
+ Rückgabewert: `any[]`
69
+
70
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
71
+ ### function: main
72
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
73
+ Signatur: `main(): void`
74
+ ```ts
75
+ main(): void
76
+ ```
77
+
78
+ Rückgabewert: `void`
79
+
80
+ <!-- change: signature-changed old="{ execSync }():" new="{ execSync }():any" -->
81
+ ### variable: { execSync }
82
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
83
+ Signatur: `{ execSync }: any`
84
+ ```ts
85
+ { execSync }: any
86
+ ```
87
+
88
+ ### variable: errors
89
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
90
+ Signatur: `errors: string[]`
91
+ ```ts
92
+ errors: string[]
93
+ ```
94
+
95
+ ### variable: fs
96
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
97
+ Signatur: `fs: typeof import("fs")`
98
+ ```ts
99
+ fs: typeof import("fs")
100
+ ```
101
+
102
+ ### variable: path
103
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
104
+ Signatur: `path: PlatformPath`
105
+ ```ts
106
+ path: PlatformPath
107
+ ```
108
+
109
+ ### variable: warnings
110
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
111
+ Signatur: `warnings: string[]`
112
+ ```ts
113
+ warnings: string[]
114
+ ```
@@ -0,0 +1,8 @@
1
+ # Modul: src/__tests__/setup.ts
2
+
3
+ ### variable: mockDate
4
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
5
+ Signatur: `mockDate: Date`
6
+ ```ts
7
+ mockDate: Date
8
+ ```
@@ -0,0 +1,16 @@
1
+ # Modul: src/__tests__/signature-formatter.test.ts
2
+
3
+ ### function: makeSymbol
4
+ Rolle: other (Sichtbarkeit: public, Priorität: normal)
5
+ Signatur: `makeSymbol(partial: Partial<ParsedSymbol>): ParsedSymbol`
6
+ ```ts
7
+ makeSymbol(partial: Partial<ParsedSymbol>): ParsedSymbol
8
+ ```
9
+
10
+ Parameter:
11
+
12
+ | Name | Typ | Optional | Default |
13
+ |------|-----|----------|---------|
14
+ | `partial` | `Partial<ParsedSymbol>` | nein | nein |
15
+
16
+ Rückgabewert: `ParsedSymbol`
@@ -0,0 +1,8 @@
1
+ # Modul: src/__tests__/snapshot-doc-generation.test.ts
2
+
3
+ ### variable: SNAPSHOT_TS
4
+ Rolle: infra (Sichtbarkeit: public, Priorität: low)
5
+ Signatur: `SNAPSHOT_TS: string`
6
+ ```ts
7
+ SNAPSHOT_TS: string
8
+ ```