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

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 +341 -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,114 +0,0 @@
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
- workspaceRoot?: string;
8
- }`
9
- ```ts
10
- interface DriftRequest {
11
- since?: string;
12
- workspaceRoot?: string;
13
- }
14
- ```
15
-
16
- Eigenschaften:
17
-
18
- | Name | Typ | Optional |
19
- |------|-----|----------|
20
- | `since` | `string` | ja |
21
- | `workspaceRoot` | `string` | ja |
22
-
23
- ### interface: DriftResponse
24
- Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
25
- Signatur: `interface DriftResponse {
26
- status: 'clean' | 'drift_detected';
27
- drifted: DriftItem[];
28
- changedFiles: string[];
29
- duration: number;
30
- }`
31
- ```ts
32
- interface DriftResponse {
33
- status: 'clean' | 'drift_detected';
34
- drifted: DriftItem[];
35
- changedFiles: string[];
36
- duration: number;
37
- }
38
- ```
39
-
40
- Eigenschaften:
41
-
42
- | Name | Typ | Optional |
43
- |------|-----|----------|
44
- | `changedFiles` | `string[]` | nein |
45
- | `drifted` | `DriftItem[]` | nein |
46
- | `duration` | `number` | nein |
47
- | `status` | `'clean' | 'drift_detected'` | nein |
48
-
49
- ### interface: DriftItem
50
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
51
- Signatur: `interface DriftItem {
52
- file: string;
53
- type: 'signature_mismatch' | 'new_file' | 'deleted_file' | 'modified';
54
- expected?: string;
55
- found?: string;
56
- message: string;
57
- }`
58
- ```ts
59
- interface DriftItem {
60
- file: string;
61
- type: 'signature_mismatch' | 'new_file' | 'deleted_file' | 'modified';
62
- expected?: string;
63
- found?: string;
64
- message: string;
65
- }
66
- ```
67
-
68
- Eigenschaften:
69
-
70
- | Name | Typ | Optional |
71
- |------|-----|----------|
72
- | `expected` | `string` | ja |
73
- | `file` | `string` | nein |
74
- | `found` | `string` | ja |
75
- | `message` | `string` | nein |
76
- | `type` | `'signature_mismatch' | 'new_file' | 'deleted_file' | 'modified'` | nein |
77
-
78
- ### function: getDocPath
79
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
80
- Signatur: `getDocPath(sourcePath: string, workspaceRoot: string = …): string`
81
- ```ts
82
- getDocPath(sourcePath: string, workspaceRoot: string = …): string
83
- ```
84
-
85
- Parameter:
86
-
87
- | Name | Typ | Optional | Default |
88
- |------|-----|----------|---------|
89
- | `sourcePath` | `string` | nein | nein |
90
- | `workspaceRoot` | `string` | nein | ja |
91
-
92
- Rückgabewert: `string`
93
-
94
- ### function: runDriftCheck
95
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
96
- Signatur: `runDriftCheck(request: DriftRequest): Promise<DriftResponse>`
97
- ```ts
98
- runDriftCheck(request: DriftRequest): Promise<DriftResponse>
99
- ```
100
-
101
- Parameter:
102
-
103
- | Name | Typ | Optional | Default |
104
- |------|-----|----------|---------|
105
- | `request` | `DriftRequest` | nein | nein |
106
-
107
- Rückgabewert: `Promise<DriftResponse>`
108
-
109
- ### variable: execAsync
110
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
111
- Signatur: `execAsync: typeof exec.__promisify__`
112
- ```ts
113
- execAsync: typeof exec.__promisify__
114
- ```
@@ -1,130 +0,0 @@
1
- # Modul: mcp/src/tools/impact.ts
2
-
3
- ### interface: ImpactRequest
4
- Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
5
- Signatur: `interface ImpactRequest {
6
- file: string;
7
- symbol?: string;
8
- workspaceRoot?: string;
9
- }`
10
- ```ts
11
- interface ImpactRequest {
12
- file: string;
13
- symbol?: string;
14
- workspaceRoot?: string;
15
- }
16
- ```
17
-
18
- Eigenschaften:
19
-
20
- | Name | Typ | Optional |
21
- |------|-----|----------|
22
- | `file` | `string` | nein |
23
- | `symbol` | `string` | ja |
24
- | `workspaceRoot` | `string` | ja |
25
-
26
- ### interface: ImpactResponse
27
- Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
28
- Signatur: `interface ImpactResponse {
29
- file: string;
30
- symbol?: string;
31
- directDependents: string[];
32
- transitiveDependents: string[];
33
- impactLevel: 'low' | 'medium' | 'high' | 'critical';
34
- recommendation: string;
35
- }`
36
- ```ts
37
- interface ImpactResponse {
38
- file: string;
39
- symbol?: string;
40
- directDependents: string[];
41
- transitiveDependents: string[];
42
- impactLevel: 'low' | 'medium' | 'high' | 'critical';
43
- recommendation: string;
44
- }
45
- ```
46
-
47
- Eigenschaften:
48
-
49
- | Name | Typ | Optional |
50
- |------|-----|----------|
51
- | `directDependents` | `string[]` | nein |
52
- | `file` | `string` | nein |
53
- | `impactLevel` | `'low' | 'medium' | 'high' | 'critical'` | nein |
54
- | `recommendation` | `string` | nein |
55
- | `symbol` | `string` | ja |
56
- | `transitiveDependents` | `string[]` | nein |
57
-
58
- ### interface: SymbolEntry
59
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
60
- Signatur: `interface SymbolEntry {
61
- file: string;
62
- name: string;
63
- type: string;
64
- dependencies?: string[];
65
- dependents?: string[];
66
- }`
67
- ```ts
68
- interface SymbolEntry {
69
- file: string;
70
- name: string;
71
- type: string;
72
- dependencies?: string[];
73
- dependents?: string[];
74
- }
75
- ```
76
-
77
- Eigenschaften:
78
-
79
- | Name | Typ | Optional |
80
- |------|-----|----------|
81
- | `dependencies` | `string[]` | ja |
82
- | `dependents` | `string[]` | ja |
83
- | `file` | `string` | nein |
84
- | `name` | `string` | nein |
85
- | `type` | `string` | nein |
86
-
87
- ### function: analyzeImpact
88
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
89
- Signatur: `analyzeImpact(request: ImpactRequest): Promise<ImpactResponse>`
90
- ```ts
91
- analyzeImpact(request: ImpactRequest): Promise<ImpactResponse>
92
- ```
93
-
94
- Parameter:
95
-
96
- | Name | Typ | Optional | Default |
97
- |------|-----|----------|---------|
98
- | `request` | `ImpactRequest` | nein | nein |
99
-
100
- Rückgabewert: `Promise<ImpactResponse>`
101
-
102
- ### function: buildDependencyMap
103
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
104
- Signatur: `buildDependencyMap(symbolsPath: string): Promise<Map<string, Set<string>>>`
105
- ```ts
106
- buildDependencyMap(symbolsPath: string): Promise<Map<string, Set<string>>>
107
- ```
108
-
109
- Parameter:
110
-
111
- | Name | Typ | Optional | Default |
112
- |------|-----|----------|---------|
113
- | `symbolsPath` | `string` | nein | nein |
114
-
115
- Rückgabewert: `Promise<Map<string, Set<string>>>`
116
-
117
- ### function: calculateImpact
118
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
119
- Signatur: `calculateImpact(totalDependents: number): { impactLevel: 'low' | 'medium' | 'high' | 'critical'; recommendation: string; }`
120
- ```ts
121
- calculateImpact(totalDependents: number): { impactLevel: 'low' | 'medium' | 'high' | 'critical'; recommendation: string; }
122
- ```
123
-
124
- Parameter:
125
-
126
- | Name | Typ | Optional | Default |
127
- |------|-----|----------|---------|
128
- | `totalDependents` | `number` | nein | nein |
129
-
130
- Rückgabewert: `{ impactLevel: 'low' | 'medium' | 'high' | 'critical'; recommendation: string; }`
@@ -1,75 +0,0 @@
1
- # Modul: mcp/src/tools/scan.ts
2
-
3
- ### interface: ScanRequest
4
- Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
5
- Signatur: `interface ScanRequest {
6
- files?: string[];
7
- incremental?: boolean;
8
- }`
9
- ```ts
10
- interface ScanRequest {
11
- files?: string[];
12
- incremental?: boolean;
13
- }
14
- ```
15
-
16
- Eigenschaften:
17
-
18
- | Name | Typ | Optional |
19
- |------|-----|----------|
20
- | `files` | `string[]` | ja |
21
- | `incremental` | `boolean` | ja |
22
-
23
- ### interface: ScanResponse
24
- Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
25
- Signatur: `interface ScanResponse {
26
- status: 'success' | 'error' | 'partial';
27
- filesProcessed: number;
28
- symbolsExtracted: number;
29
- duration: number;
30
- logs: string[];
31
- errors?: string[];
32
- }`
33
- ```ts
34
- interface ScanResponse {
35
- status: 'success' | 'error' | 'partial';
36
- filesProcessed: number;
37
- symbolsExtracted: number;
38
- duration: number;
39
- logs: string[];
40
- errors?: string[];
41
- }
42
- ```
43
-
44
- Eigenschaften:
45
-
46
- | Name | Typ | Optional |
47
- |------|-----|----------|
48
- | `duration` | `number` | nein |
49
- | `errors` | `string[]` | ja |
50
- | `filesProcessed` | `number` | nein |
51
- | `logs` | `string[]` | nein |
52
- | `status` | `'success' | 'error' | 'partial'` | nein |
53
- | `symbolsExtracted` | `number` | nein |
54
-
55
- ### function: runScan
56
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
57
- Signatur: `runScan(request: ScanRequest): Promise<ScanResponse>`
58
- ```ts
59
- runScan(request: ScanRequest): Promise<ScanResponse>
60
- ```
61
-
62
- Parameter:
63
-
64
- | Name | Typ | Optional | Default |
65
- |------|-----|----------|---------|
66
- | `request` | `ScanRequest` | nein | nein |
67
-
68
- Rückgabewert: `Promise<ScanResponse>`
69
-
70
- ### variable: execAsync
71
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
72
- Signatur: `execAsync: any`
73
- ```ts
74
- execAsync: any
75
- ```
@@ -1,116 +0,0 @@
1
- # Modul: mcp/src/tools/validate.ts
2
-
3
- ### interface: ValidateRequest
4
- Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
5
- Signatur: `interface ValidateRequest {
6
- files?: string[];
7
- verbose?: boolean;
8
- }`
9
- ```ts
10
- interface ValidateRequest {
11
- files?: string[];
12
- verbose?: boolean;
13
- }
14
- ```
15
-
16
- Eigenschaften:
17
-
18
- | Name | Typ | Optional |
19
- |------|-----|----------|
20
- | `files` | `string[]` | ja |
21
- | `verbose` | `boolean` | ja |
22
-
23
- ### interface: ValidateResponse
24
- Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
25
- Signatur: `interface ValidateResponse {
26
- status: 'success' | 'warnings' | 'errors';
27
- errors: ValidationError[];
28
- warnings: ValidationError[];
29
- coverage: {
30
- documented: number;
31
- total: number;
32
- percentage: number;
33
- };
34
- duration: number;
35
- logs: string[];
36
- }`
37
- ```ts
38
- interface ValidateResponse {
39
- status: 'success' | 'warnings' | 'errors';
40
- errors: ValidationError[];
41
- warnings: ValidationError[];
42
- coverage: {
43
- documented: number;
44
- total: number;
45
- percentage: number;
46
- };
47
- duration: number;
48
- logs: string[];
49
- }
50
- ```
51
-
52
- Eigenschaften:
53
-
54
- | Name | Typ | Optional |
55
- |------|-----|----------|
56
- | `coverage` | `{
57
- documented: number;
58
- total: number;
59
- percentage: number;
60
- }` | nein |
61
- | `duration` | `number` | nein |
62
- | `errors` | `ValidationError[]` | nein |
63
- | `logs` | `string[]` | nein |
64
- | `status` | `'success' | 'warnings' | 'errors'` | nein |
65
- | `warnings` | `ValidationError[]` | nein |
66
-
67
- ### interface: ValidationError
68
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
69
- Signatur: `interface ValidationError {
70
- file: string;
71
- type: 'signature_mismatch' | 'missing_docs' | 'stale_docs' | 'coverage';
72
- message: string;
73
- expected?: string;
74
- found?: string;
75
- }`
76
- ```ts
77
- interface ValidationError {
78
- file: string;
79
- type: 'signature_mismatch' | 'missing_docs' | 'stale_docs' | 'coverage';
80
- message: string;
81
- expected?: string;
82
- found?: string;
83
- }
84
- ```
85
-
86
- Eigenschaften:
87
-
88
- | Name | Typ | Optional |
89
- |------|-----|----------|
90
- | `expected` | `string` | ja |
91
- | `file` | `string` | nein |
92
- | `found` | `string` | ja |
93
- | `message` | `string` | nein |
94
- | `type` | `'signature_mismatch' | 'missing_docs' | 'stale_docs' | 'coverage'` | nein |
95
-
96
- ### function: runValidate
97
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
98
- Signatur: `runValidate(request: ValidateRequest): Promise<ValidateResponse>`
99
- ```ts
100
- runValidate(request: ValidateRequest): Promise<ValidateResponse>
101
- ```
102
-
103
- Parameter:
104
-
105
- | Name | Typ | Optional | Default |
106
- |------|-----|----------|---------|
107
- | `request` | `ValidateRequest` | nein | nein |
108
-
109
- Rückgabewert: `Promise<ValidateResponse>`
110
-
111
- ### variable: execAsync
112
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
113
- Signatur: `execAsync: any`
114
- ```ts
115
- execAsync: any
116
- ```
@@ -1,106 +0,0 @@
1
- # Modul: mcp/src/tools/verify-adrs.ts
2
-
3
- <!-- change: symbol-added name="VerifyAdrsRequest" kind="interface" -->
4
- ### interface: VerifyAdrsRequest
5
- Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
6
- Signatur: `interface VerifyAdrsRequest {
7
- verbose?: boolean;
8
- }`
9
- ```ts
10
- interface VerifyAdrsRequest {
11
- verbose?: boolean;
12
- }
13
- ```
14
-
15
- Eigenschaften:
16
-
17
- | Name | Typ | Optional |
18
- |------|-----|----------|
19
- | `verbose` | `boolean` | ja |
20
-
21
- <!-- change: symbol-added name="VerifyAdrsResponse" kind="interface" -->
22
- ### interface: VerifyAdrsResponse
23
- Rolle: domain-model (Sichtbarkeit: public, Priorität: high)
24
- Signatur: `interface VerifyAdrsResponse {
25
- status: 'success' | 'warnings' | 'errors';
26
- totalClaims: number;
27
- verifiedClaims: number;
28
- errors: AdrClaim[];
29
- warnings: AdrClaim[];
30
- duration: number;
31
- logs: string[];
32
- }`
33
- ```ts
34
- interface VerifyAdrsResponse {
35
- status: 'success' | 'warnings' | 'errors';
36
- totalClaims: number;
37
- verifiedClaims: number;
38
- errors: AdrClaim[];
39
- warnings: AdrClaim[];
40
- duration: number;
41
- logs: string[];
42
- }
43
- ```
44
-
45
- Eigenschaften:
46
-
47
- | Name | Typ | Optional |
48
- |------|-----|----------|
49
- | `duration` | `number` | nein |
50
- | `errors` | `AdrClaim[]` | nein |
51
- | `logs` | `string[]` | nein |
52
- | `status` | `'success' | 'warnings' | 'errors'` | nein |
53
- | `totalClaims` | `number` | nein |
54
- | `verifiedClaims` | `number` | nein |
55
- | `warnings` | `AdrClaim[]` | nein |
56
-
57
- <!-- change: symbol-added name="AdrClaim" kind="interface" -->
58
- ### interface: AdrClaim
59
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
60
- Signatur: `interface AdrClaim {
61
- adr: string;
62
- line: number;
63
- claim: string;
64
- type: 'file-exists' | 'function-exists';
65
- }`
66
- ```ts
67
- interface AdrClaim {
68
- adr: string;
69
- line: number;
70
- claim: string;
71
- type: 'file-exists' | 'function-exists';
72
- }
73
- ```
74
-
75
- Eigenschaften:
76
-
77
- | Name | Typ | Optional |
78
- |------|-----|----------|
79
- | `adr` | `string` | nein |
80
- | `claim` | `string` | nein |
81
- | `line` | `number` | nein |
82
- | `type` | `'file-exists' | 'function-exists'` | nein |
83
-
84
- <!-- change: symbol-added name="runVerifyAdrs" kind="function" -->
85
- ### function: runVerifyAdrs
86
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
87
- Signatur: `runVerifyAdrs(request: VerifyAdrsRequest): Promise<VerifyAdrsResponse>`
88
- ```ts
89
- runVerifyAdrs(request: VerifyAdrsRequest): Promise<VerifyAdrsResponse>
90
- ```
91
-
92
- Parameter:
93
-
94
- | Name | Typ | Optional | Default |
95
- |------|-----|----------|---------|
96
- | `request` | `VerifyAdrsRequest` | nein | nein |
97
-
98
- Rückgabewert: `Promise<VerifyAdrsResponse>`
99
-
100
- <!-- change: symbol-added name="execAsync" kind="variable" -->
101
- ### variable: execAsync
102
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
103
- Signatur: `execAsync: typeof exec.__promisify__`
104
- ```ts
105
- execAsync: typeof exec.__promisify__
106
- ```
@@ -1,22 +0,0 @@
1
- # Modul: mcp/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
- ```
@@ -1,130 +0,0 @@
1
- # Modul: package.json
2
-
3
- <!-- change: symbol-added name="scripts" kind="variable" -->
4
- ### variable: publishConfig
5
- Rolle: config (Sichtbarkeit: public, Priorität: normal)
6
- Signatur: `publishConfig: object`
7
- ```ts
8
- publishConfig: object
9
- ```
10
-
11
- <!-- change: symbol-added name="version" kind="variable" -->
12
- ### variable: activationEvents
13
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
14
- Signatur: `activationEvents: object`
15
- ```ts
16
- activationEvents: object
17
- ```
18
-
19
- <!-- change: symbol-added name="repository" 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
- ### variable: categories
28
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
29
- Signatur: `categories: object`
30
- ```ts
31
- categories: object
32
- ```
33
-
34
- ### variable: contributes
35
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
36
- Signatur: `contributes: object`
37
- ```ts
38
- contributes: object
39
- ```
40
-
41
- ### variable: dependencies
42
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
43
- Signatur: `dependencies: object`
44
- ```ts
45
- dependencies: object
46
- ```
47
-
48
- ### variable: description
49
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
50
- Signatur: `description: string`
51
- ```ts
52
- description: string
53
- ```
54
-
55
- ### variable: devDependencies
56
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
57
- Signatur: `devDependencies: object`
58
- ```ts
59
- devDependencies: object
60
- ```
61
-
62
- ### variable: displayName
63
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
64
- Signatur: `displayName: string`
65
- ```ts
66
- displayName: string
67
- ```
68
-
69
- ### variable: engines
70
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
71
- Signatur: `engines: object`
72
- ```ts
73
- engines: object
74
- ```
75
-
76
- ### variable: homepage
77
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
78
- Signatur: `homepage: string`
79
- ```ts
80
- homepage: string
81
- ```
82
-
83
- ### variable: keywords
84
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
85
- Signatur: `keywords: object`
86
- ```ts
87
- keywords: object
88
- ```
89
-
90
- ### variable: main
91
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
92
- Signatur: `main: string`
93
- ```ts
94
- main: string
95
- ```
96
-
97
- ### variable: name
98
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
99
- Signatur: `name: string`
100
- ```ts
101
- name: string
102
- ```
103
-
104
- ### variable: publisher
105
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
106
- Signatur: `publisher: string`
107
- ```ts
108
- publisher: string
109
- ```
110
-
111
- ### variable: scripts
112
- Rolle: other (Sichtbarkeit: public, Priorität: normal)
113
- Signatur: `scripts: object`
114
- ```ts
115
- scripts: object
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
- ```