@bryan-thompson/inspector-assessment-client 1.32.2 → 1.32.3

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 (39) hide show
  1. package/lib/lib/assessment/configSchemas.d.ts +763 -0
  2. package/lib/lib/assessment/configSchemas.d.ts.map +1 -0
  3. package/lib/lib/assessment/configSchemas.js +187 -0
  4. package/lib/lib/assessment/coreTypes.d.ts +41 -0
  5. package/lib/lib/assessment/coreTypes.d.ts.map +1 -1
  6. package/lib/lib/assessment/jsonlEventSchemas.d.ts +1667 -0
  7. package/lib/lib/assessment/jsonlEventSchemas.d.ts.map +1 -0
  8. package/lib/lib/assessment/jsonlEventSchemas.js +437 -0
  9. package/lib/lib/assessment/progressTypes.d.ts +49 -1
  10. package/lib/lib/assessment/progressTypes.d.ts.map +1 -1
  11. package/lib/services/assessment/AssessmentOrchestrator.d.ts +3 -3
  12. package/lib/services/assessment/AssessmentOrchestrator.d.ts.map +1 -1
  13. package/lib/services/assessment/TestDataGenerator.d.ts +42 -8
  14. package/lib/services/assessment/TestDataGenerator.d.ts.map +1 -1
  15. package/lib/services/assessment/TestDataGenerator.js +23 -153
  16. package/lib/services/assessment/modules/CrossCapabilitySecurityAssessor.d.ts.map +1 -1
  17. package/lib/services/assessment/modules/DeveloperExperienceAssessor.d.ts.map +1 -1
  18. package/lib/services/assessment/modules/DocumentationAssessor.d.ts.map +1 -1
  19. package/lib/services/assessment/modules/ErrorHandlingAssessor.d.ts.map +1 -1
  20. package/lib/services/assessment/modules/ErrorHandlingAssessor.js +18 -1
  21. package/lib/services/assessment/modules/FunctionalityAssessor.d.ts +2 -2
  22. package/lib/services/assessment/modules/FunctionalityAssessor.d.ts.map +1 -1
  23. package/lib/services/assessment/modules/FunctionalityAssessor.js +6 -3
  24. package/lib/services/assessment/modules/MCPSpecComplianceAssessor.d.ts.map +1 -1
  25. package/lib/services/assessment/modules/PortabilityAssessor.d.ts.map +1 -1
  26. package/lib/services/assessment/modules/ProhibitedLibrariesAssessor.d.ts.map +1 -1
  27. package/lib/services/assessment/modules/ProtocolComplianceAssessor.d.ts.map +1 -1
  28. package/lib/services/assessment/modules/securityTests/SecurityPayloadTester.d.ts.map +1 -1
  29. package/lib/services/assessment/modules/securityTests/SecurityPayloadTester.js +78 -2
  30. package/lib/services/assessment/testdata/index.d.ts +12 -0
  31. package/lib/services/assessment/testdata/index.d.ts.map +1 -0
  32. package/lib/services/assessment/testdata/index.js +11 -0
  33. package/lib/services/assessment/testdata/realistic-values.d.ts +126 -0
  34. package/lib/services/assessment/testdata/realistic-values.d.ts.map +1 -0
  35. package/lib/services/assessment/testdata/realistic-values.js +162 -0
  36. package/lib/services/assessment/testdata/tool-category-data.d.ts +28 -0
  37. package/lib/services/assessment/testdata/tool-category-data.d.ts.map +1 -0
  38. package/lib/services/assessment/testdata/tool-category-data.js +60 -0
  39. package/package.json +1 -1
@@ -0,0 +1,763 @@
1
+ /**
2
+ * Zod Schemas for Assessment Configuration
3
+ *
4
+ * Runtime validation schemas for assessment configuration.
5
+ * Validates configuration objects loaded from files or passed programmatically.
6
+ *
7
+ * @public
8
+ * @module assessment/configSchemas
9
+ */
10
+ import { z } from "zod";
11
+ import { LogLevelSchema, ZOD_SCHEMA_VERSION } from "./sharedSchemas.js";
12
+ export { LogLevelSchema, ZOD_SCHEMA_VERSION };
13
+ /**
14
+ * Schema for logging configuration.
15
+ */
16
+ export declare const LoggingConfigSchema: z.ZodObject<{
17
+ level: z.ZodEnum<["silent", "error", "warn", "info", "debug"]>;
18
+ format: z.ZodOptional<z.ZodEnum<["text", "json"]>>;
19
+ includeTimestamp: z.ZodOptional<z.ZodBoolean>;
20
+ }, "strip", z.ZodTypeAny, {
21
+ level?: "silent" | "error" | "warn" | "info" | "debug";
22
+ format?: "text" | "json";
23
+ includeTimestamp?: boolean;
24
+ }, {
25
+ level?: "silent" | "error" | "warn" | "info" | "debug";
26
+ format?: "text" | "json";
27
+ includeTimestamp?: boolean;
28
+ }>;
29
+ /**
30
+ * Schema for HTTP transport configuration.
31
+ */
32
+ export declare const HttpTransportConfigSchema: z.ZodObject<{
33
+ baseUrl: z.ZodString;
34
+ apiKey: z.ZodOptional<z.ZodString>;
35
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
36
+ }, "strip", z.ZodTypeAny, {
37
+ baseUrl?: string;
38
+ apiKey?: string;
39
+ headers?: Record<string, string>;
40
+ }, {
41
+ baseUrl?: string;
42
+ apiKey?: string;
43
+ headers?: Record<string, string>;
44
+ }>;
45
+ /**
46
+ * Schema for Claude Code features configuration.
47
+ */
48
+ export declare const ClaudeCodeFeaturesSchema: z.ZodObject<{
49
+ intelligentTestGeneration: z.ZodBoolean;
50
+ aupSemanticAnalysis: z.ZodBoolean;
51
+ annotationInference: z.ZodBoolean;
52
+ documentationQuality: z.ZodBoolean;
53
+ }, "strip", z.ZodTypeAny, {
54
+ intelligentTestGeneration?: boolean;
55
+ aupSemanticAnalysis?: boolean;
56
+ annotationInference?: boolean;
57
+ documentationQuality?: boolean;
58
+ }, {
59
+ intelligentTestGeneration?: boolean;
60
+ aupSemanticAnalysis?: boolean;
61
+ annotationInference?: boolean;
62
+ documentationQuality?: boolean;
63
+ }>;
64
+ /**
65
+ * Schema for Claude Code configuration.
66
+ */
67
+ export declare const ClaudeCodeConfigSchema: z.ZodEffects<z.ZodObject<{
68
+ enabled: z.ZodBoolean;
69
+ features: z.ZodObject<{
70
+ intelligentTestGeneration: z.ZodBoolean;
71
+ aupSemanticAnalysis: z.ZodBoolean;
72
+ annotationInference: z.ZodBoolean;
73
+ documentationQuality: z.ZodBoolean;
74
+ }, "strip", z.ZodTypeAny, {
75
+ intelligentTestGeneration?: boolean;
76
+ aupSemanticAnalysis?: boolean;
77
+ annotationInference?: boolean;
78
+ documentationQuality?: boolean;
79
+ }, {
80
+ intelligentTestGeneration?: boolean;
81
+ aupSemanticAnalysis?: boolean;
82
+ annotationInference?: boolean;
83
+ documentationQuality?: boolean;
84
+ }>;
85
+ timeout: z.ZodNumber;
86
+ workingDir: z.ZodOptional<z.ZodString>;
87
+ maxRetries: z.ZodOptional<z.ZodNumber>;
88
+ transport: z.ZodOptional<z.ZodEnum<["cli", "http"]>>;
89
+ httpConfig: z.ZodOptional<z.ZodObject<{
90
+ baseUrl: z.ZodString;
91
+ apiKey: z.ZodOptional<z.ZodString>;
92
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
93
+ }, "strip", z.ZodTypeAny, {
94
+ baseUrl?: string;
95
+ apiKey?: string;
96
+ headers?: Record<string, string>;
97
+ }, {
98
+ baseUrl?: string;
99
+ apiKey?: string;
100
+ headers?: Record<string, string>;
101
+ }>>;
102
+ }, "strip", z.ZodTypeAny, {
103
+ features?: {
104
+ intelligentTestGeneration?: boolean;
105
+ aupSemanticAnalysis?: boolean;
106
+ annotationInference?: boolean;
107
+ documentationQuality?: boolean;
108
+ };
109
+ timeout?: number;
110
+ enabled?: boolean;
111
+ transport?: "cli" | "http";
112
+ maxRetries?: number;
113
+ httpConfig?: {
114
+ baseUrl?: string;
115
+ apiKey?: string;
116
+ headers?: Record<string, string>;
117
+ };
118
+ workingDir?: string;
119
+ }, {
120
+ features?: {
121
+ intelligentTestGeneration?: boolean;
122
+ aupSemanticAnalysis?: boolean;
123
+ annotationInference?: boolean;
124
+ documentationQuality?: boolean;
125
+ };
126
+ timeout?: number;
127
+ enabled?: boolean;
128
+ transport?: "cli" | "http";
129
+ maxRetries?: number;
130
+ httpConfig?: {
131
+ baseUrl?: string;
132
+ apiKey?: string;
133
+ headers?: Record<string, string>;
134
+ };
135
+ workingDir?: string;
136
+ }>, {
137
+ features?: {
138
+ intelligentTestGeneration?: boolean;
139
+ aupSemanticAnalysis?: boolean;
140
+ annotationInference?: boolean;
141
+ documentationQuality?: boolean;
142
+ };
143
+ timeout?: number;
144
+ enabled?: boolean;
145
+ transport?: "cli" | "http";
146
+ maxRetries?: number;
147
+ httpConfig?: {
148
+ baseUrl?: string;
149
+ apiKey?: string;
150
+ headers?: Record<string, string>;
151
+ };
152
+ workingDir?: string;
153
+ }, {
154
+ features?: {
155
+ intelligentTestGeneration?: boolean;
156
+ aupSemanticAnalysis?: boolean;
157
+ annotationInference?: boolean;
158
+ documentationQuality?: boolean;
159
+ };
160
+ timeout?: number;
161
+ enabled?: boolean;
162
+ transport?: "cli" | "http";
163
+ maxRetries?: number;
164
+ httpConfig?: {
165
+ baseUrl?: string;
166
+ apiKey?: string;
167
+ headers?: Record<string, string>;
168
+ };
169
+ workingDir?: string;
170
+ }>;
171
+ /**
172
+ * Schema for assessment categories flags.
173
+ * All fields are optional booleans.
174
+ */
175
+ export declare const AssessmentCategoriesSchema: z.ZodObject<{
176
+ functionality: z.ZodOptional<z.ZodBoolean>;
177
+ security: z.ZodOptional<z.ZodBoolean>;
178
+ documentation: z.ZodOptional<z.ZodBoolean>;
179
+ errorHandling: z.ZodOptional<z.ZodBoolean>;
180
+ usability: z.ZodOptional<z.ZodBoolean>;
181
+ /** @deprecated Use protocolCompliance instead */
182
+ mcpSpecCompliance: z.ZodOptional<z.ZodBoolean>;
183
+ protocolCompliance: z.ZodOptional<z.ZodBoolean>;
184
+ aupCompliance: z.ZodOptional<z.ZodBoolean>;
185
+ toolAnnotations: z.ZodOptional<z.ZodBoolean>;
186
+ prohibitedLibraries: z.ZodOptional<z.ZodBoolean>;
187
+ manifestValidation: z.ZodOptional<z.ZodBoolean>;
188
+ portability: z.ZodOptional<z.ZodBoolean>;
189
+ externalAPIScanner: z.ZodOptional<z.ZodBoolean>;
190
+ authentication: z.ZodOptional<z.ZodBoolean>;
191
+ temporal: z.ZodOptional<z.ZodBoolean>;
192
+ resources: z.ZodOptional<z.ZodBoolean>;
193
+ prompts: z.ZodOptional<z.ZodBoolean>;
194
+ crossCapability: z.ZodOptional<z.ZodBoolean>;
195
+ /** @deprecated Use protocolCompliance instead */
196
+ protocolConformance: z.ZodOptional<z.ZodBoolean>;
197
+ fileModularization: z.ZodOptional<z.ZodBoolean>;
198
+ }, "strip", z.ZodTypeAny, {
199
+ functionality?: boolean;
200
+ security?: boolean;
201
+ documentation?: boolean;
202
+ errorHandling?: boolean;
203
+ usability?: boolean;
204
+ mcpSpecCompliance?: boolean;
205
+ aupCompliance?: boolean;
206
+ toolAnnotations?: boolean;
207
+ prohibitedLibraries?: boolean;
208
+ manifestValidation?: boolean;
209
+ portability?: boolean;
210
+ externalAPIScanner?: boolean;
211
+ authentication?: boolean;
212
+ temporal?: boolean;
213
+ resources?: boolean;
214
+ prompts?: boolean;
215
+ crossCapability?: boolean;
216
+ protocolConformance?: boolean;
217
+ protocolCompliance?: boolean;
218
+ fileModularization?: boolean;
219
+ }, {
220
+ functionality?: boolean;
221
+ security?: boolean;
222
+ documentation?: boolean;
223
+ errorHandling?: boolean;
224
+ usability?: boolean;
225
+ mcpSpecCompliance?: boolean;
226
+ aupCompliance?: boolean;
227
+ toolAnnotations?: boolean;
228
+ prohibitedLibraries?: boolean;
229
+ manifestValidation?: boolean;
230
+ portability?: boolean;
231
+ externalAPIScanner?: boolean;
232
+ authentication?: boolean;
233
+ temporal?: boolean;
234
+ resources?: boolean;
235
+ prompts?: boolean;
236
+ crossCapability?: boolean;
237
+ protocolConformance?: boolean;
238
+ protocolCompliance?: boolean;
239
+ fileModularization?: boolean;
240
+ }>;
241
+ /**
242
+ * Schema for documentation verbosity level.
243
+ */
244
+ export declare const DocumentationVerbositySchema: z.ZodEnum<["minimal", "standard", "verbose"]>;
245
+ /**
246
+ * Schema for the main assessment configuration.
247
+ */
248
+ export declare const AssessmentConfigurationSchema: z.ZodObject<{
249
+ configVersion: z.ZodOptional<z.ZodNumber>;
250
+ testTimeout: z.ZodNumber;
251
+ securityTestTimeout: z.ZodOptional<z.ZodNumber>;
252
+ delayBetweenTests: z.ZodOptional<z.ZodNumber>;
253
+ skipBrokenTools: z.ZodBoolean;
254
+ reviewerMode: z.ZodOptional<z.ZodBoolean>;
255
+ enableExtendedAssessment: z.ZodOptional<z.ZodBoolean>;
256
+ documentationVerbosity: z.ZodOptional<z.ZodEnum<["minimal", "standard", "verbose"]>>;
257
+ parallelTesting: z.ZodOptional<z.ZodBoolean>;
258
+ maxParallelTests: z.ZodOptional<z.ZodNumber>;
259
+ scenariosPerTool: z.ZodOptional<z.ZodNumber>;
260
+ /** @deprecated Use selectedToolsForTesting instead */
261
+ maxToolsToTestForErrors: z.ZodOptional<z.ZodNumber>;
262
+ selectedToolsForTesting: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
263
+ securityPatternsToTest: z.ZodOptional<z.ZodNumber>;
264
+ enableDomainTesting: z.ZodOptional<z.ZodBoolean>;
265
+ enableSequenceTesting: z.ZodOptional<z.ZodBoolean>;
266
+ mcpProtocolVersion: z.ZodOptional<z.ZodString>;
267
+ enableSourceCodeAnalysis: z.ZodOptional<z.ZodBoolean>;
268
+ patternConfigPath: z.ZodOptional<z.ZodString>;
269
+ claudeCode: z.ZodOptional<z.ZodEffects<z.ZodObject<{
270
+ enabled: z.ZodBoolean;
271
+ features: z.ZodObject<{
272
+ intelligentTestGeneration: z.ZodBoolean;
273
+ aupSemanticAnalysis: z.ZodBoolean;
274
+ annotationInference: z.ZodBoolean;
275
+ documentationQuality: z.ZodBoolean;
276
+ }, "strip", z.ZodTypeAny, {
277
+ intelligentTestGeneration?: boolean;
278
+ aupSemanticAnalysis?: boolean;
279
+ annotationInference?: boolean;
280
+ documentationQuality?: boolean;
281
+ }, {
282
+ intelligentTestGeneration?: boolean;
283
+ aupSemanticAnalysis?: boolean;
284
+ annotationInference?: boolean;
285
+ documentationQuality?: boolean;
286
+ }>;
287
+ timeout: z.ZodNumber;
288
+ workingDir: z.ZodOptional<z.ZodString>;
289
+ maxRetries: z.ZodOptional<z.ZodNumber>;
290
+ transport: z.ZodOptional<z.ZodEnum<["cli", "http"]>>;
291
+ httpConfig: z.ZodOptional<z.ZodObject<{
292
+ baseUrl: z.ZodString;
293
+ apiKey: z.ZodOptional<z.ZodString>;
294
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
295
+ }, "strip", z.ZodTypeAny, {
296
+ baseUrl?: string;
297
+ apiKey?: string;
298
+ headers?: Record<string, string>;
299
+ }, {
300
+ baseUrl?: string;
301
+ apiKey?: string;
302
+ headers?: Record<string, string>;
303
+ }>>;
304
+ }, "strip", z.ZodTypeAny, {
305
+ features?: {
306
+ intelligentTestGeneration?: boolean;
307
+ aupSemanticAnalysis?: boolean;
308
+ annotationInference?: boolean;
309
+ documentationQuality?: boolean;
310
+ };
311
+ timeout?: number;
312
+ enabled?: boolean;
313
+ transport?: "cli" | "http";
314
+ maxRetries?: number;
315
+ httpConfig?: {
316
+ baseUrl?: string;
317
+ apiKey?: string;
318
+ headers?: Record<string, string>;
319
+ };
320
+ workingDir?: string;
321
+ }, {
322
+ features?: {
323
+ intelligentTestGeneration?: boolean;
324
+ aupSemanticAnalysis?: boolean;
325
+ annotationInference?: boolean;
326
+ documentationQuality?: boolean;
327
+ };
328
+ timeout?: number;
329
+ enabled?: boolean;
330
+ transport?: "cli" | "http";
331
+ maxRetries?: number;
332
+ httpConfig?: {
333
+ baseUrl?: string;
334
+ apiKey?: string;
335
+ headers?: Record<string, string>;
336
+ };
337
+ workingDir?: string;
338
+ }>, {
339
+ features?: {
340
+ intelligentTestGeneration?: boolean;
341
+ aupSemanticAnalysis?: boolean;
342
+ annotationInference?: boolean;
343
+ documentationQuality?: boolean;
344
+ };
345
+ timeout?: number;
346
+ enabled?: boolean;
347
+ transport?: "cli" | "http";
348
+ maxRetries?: number;
349
+ httpConfig?: {
350
+ baseUrl?: string;
351
+ apiKey?: string;
352
+ headers?: Record<string, string>;
353
+ };
354
+ workingDir?: string;
355
+ }, {
356
+ features?: {
357
+ intelligentTestGeneration?: boolean;
358
+ aupSemanticAnalysis?: boolean;
359
+ annotationInference?: boolean;
360
+ documentationQuality?: boolean;
361
+ };
362
+ timeout?: number;
363
+ enabled?: boolean;
364
+ transport?: "cli" | "http";
365
+ maxRetries?: number;
366
+ httpConfig?: {
367
+ baseUrl?: string;
368
+ apiKey?: string;
369
+ headers?: Record<string, string>;
370
+ };
371
+ workingDir?: string;
372
+ }>>;
373
+ temporalInvocations: z.ZodOptional<z.ZodNumber>;
374
+ logging: z.ZodOptional<z.ZodObject<{
375
+ level: z.ZodEnum<["silent", "error", "warn", "info", "debug"]>;
376
+ format: z.ZodOptional<z.ZodEnum<["text", "json"]>>;
377
+ includeTimestamp: z.ZodOptional<z.ZodBoolean>;
378
+ }, "strip", z.ZodTypeAny, {
379
+ level?: "silent" | "error" | "warn" | "info" | "debug";
380
+ format?: "text" | "json";
381
+ includeTimestamp?: boolean;
382
+ }, {
383
+ level?: "silent" | "error" | "warn" | "info" | "debug";
384
+ format?: "text" | "json";
385
+ includeTimestamp?: boolean;
386
+ }>>;
387
+ assessmentCategories: z.ZodOptional<z.ZodObject<{
388
+ functionality: z.ZodOptional<z.ZodBoolean>;
389
+ security: z.ZodOptional<z.ZodBoolean>;
390
+ documentation: z.ZodOptional<z.ZodBoolean>;
391
+ errorHandling: z.ZodOptional<z.ZodBoolean>;
392
+ usability: z.ZodOptional<z.ZodBoolean>;
393
+ /** @deprecated Use protocolCompliance instead */
394
+ mcpSpecCompliance: z.ZodOptional<z.ZodBoolean>;
395
+ protocolCompliance: z.ZodOptional<z.ZodBoolean>;
396
+ aupCompliance: z.ZodOptional<z.ZodBoolean>;
397
+ toolAnnotations: z.ZodOptional<z.ZodBoolean>;
398
+ prohibitedLibraries: z.ZodOptional<z.ZodBoolean>;
399
+ manifestValidation: z.ZodOptional<z.ZodBoolean>;
400
+ portability: z.ZodOptional<z.ZodBoolean>;
401
+ externalAPIScanner: z.ZodOptional<z.ZodBoolean>;
402
+ authentication: z.ZodOptional<z.ZodBoolean>;
403
+ temporal: z.ZodOptional<z.ZodBoolean>;
404
+ resources: z.ZodOptional<z.ZodBoolean>;
405
+ prompts: z.ZodOptional<z.ZodBoolean>;
406
+ crossCapability: z.ZodOptional<z.ZodBoolean>;
407
+ /** @deprecated Use protocolCompliance instead */
408
+ protocolConformance: z.ZodOptional<z.ZodBoolean>;
409
+ fileModularization: z.ZodOptional<z.ZodBoolean>;
410
+ }, "strip", z.ZodTypeAny, {
411
+ functionality?: boolean;
412
+ security?: boolean;
413
+ documentation?: boolean;
414
+ errorHandling?: boolean;
415
+ usability?: boolean;
416
+ mcpSpecCompliance?: boolean;
417
+ aupCompliance?: boolean;
418
+ toolAnnotations?: boolean;
419
+ prohibitedLibraries?: boolean;
420
+ manifestValidation?: boolean;
421
+ portability?: boolean;
422
+ externalAPIScanner?: boolean;
423
+ authentication?: boolean;
424
+ temporal?: boolean;
425
+ resources?: boolean;
426
+ prompts?: boolean;
427
+ crossCapability?: boolean;
428
+ protocolConformance?: boolean;
429
+ protocolCompliance?: boolean;
430
+ fileModularization?: boolean;
431
+ }, {
432
+ functionality?: boolean;
433
+ security?: boolean;
434
+ documentation?: boolean;
435
+ errorHandling?: boolean;
436
+ usability?: boolean;
437
+ mcpSpecCompliance?: boolean;
438
+ aupCompliance?: boolean;
439
+ toolAnnotations?: boolean;
440
+ prohibitedLibraries?: boolean;
441
+ manifestValidation?: boolean;
442
+ portability?: boolean;
443
+ externalAPIScanner?: boolean;
444
+ authentication?: boolean;
445
+ temporal?: boolean;
446
+ resources?: boolean;
447
+ prompts?: boolean;
448
+ crossCapability?: boolean;
449
+ protocolConformance?: boolean;
450
+ protocolCompliance?: boolean;
451
+ fileModularization?: boolean;
452
+ }>>;
453
+ }, "strip", z.ZodTypeAny, {
454
+ mcpProtocolVersion?: string;
455
+ assessmentCategories?: {
456
+ functionality?: boolean;
457
+ security?: boolean;
458
+ documentation?: boolean;
459
+ errorHandling?: boolean;
460
+ usability?: boolean;
461
+ mcpSpecCompliance?: boolean;
462
+ aupCompliance?: boolean;
463
+ toolAnnotations?: boolean;
464
+ prohibitedLibraries?: boolean;
465
+ manifestValidation?: boolean;
466
+ portability?: boolean;
467
+ externalAPIScanner?: boolean;
468
+ authentication?: boolean;
469
+ temporal?: boolean;
470
+ resources?: boolean;
471
+ prompts?: boolean;
472
+ crossCapability?: boolean;
473
+ protocolConformance?: boolean;
474
+ protocolCompliance?: boolean;
475
+ fileModularization?: boolean;
476
+ };
477
+ configVersion?: number;
478
+ testTimeout?: number;
479
+ securityTestTimeout?: number;
480
+ delayBetweenTests?: number;
481
+ skipBrokenTools?: boolean;
482
+ reviewerMode?: boolean;
483
+ enableExtendedAssessment?: boolean;
484
+ documentationVerbosity?: "minimal" | "standard" | "verbose";
485
+ parallelTesting?: boolean;
486
+ maxParallelTests?: number;
487
+ scenariosPerTool?: number;
488
+ maxToolsToTestForErrors?: number;
489
+ selectedToolsForTesting?: string[];
490
+ securityPatternsToTest?: number;
491
+ enableDomainTesting?: boolean;
492
+ enableSequenceTesting?: boolean;
493
+ enableSourceCodeAnalysis?: boolean;
494
+ patternConfigPath?: string;
495
+ claudeCode?: {
496
+ features?: {
497
+ intelligentTestGeneration?: boolean;
498
+ aupSemanticAnalysis?: boolean;
499
+ annotationInference?: boolean;
500
+ documentationQuality?: boolean;
501
+ };
502
+ timeout?: number;
503
+ enabled?: boolean;
504
+ transport?: "cli" | "http";
505
+ maxRetries?: number;
506
+ httpConfig?: {
507
+ baseUrl?: string;
508
+ apiKey?: string;
509
+ headers?: Record<string, string>;
510
+ };
511
+ workingDir?: string;
512
+ };
513
+ temporalInvocations?: number;
514
+ logging?: {
515
+ level?: "silent" | "error" | "warn" | "info" | "debug";
516
+ format?: "text" | "json";
517
+ includeTimestamp?: boolean;
518
+ };
519
+ }, {
520
+ mcpProtocolVersion?: string;
521
+ assessmentCategories?: {
522
+ functionality?: boolean;
523
+ security?: boolean;
524
+ documentation?: boolean;
525
+ errorHandling?: boolean;
526
+ usability?: boolean;
527
+ mcpSpecCompliance?: boolean;
528
+ aupCompliance?: boolean;
529
+ toolAnnotations?: boolean;
530
+ prohibitedLibraries?: boolean;
531
+ manifestValidation?: boolean;
532
+ portability?: boolean;
533
+ externalAPIScanner?: boolean;
534
+ authentication?: boolean;
535
+ temporal?: boolean;
536
+ resources?: boolean;
537
+ prompts?: boolean;
538
+ crossCapability?: boolean;
539
+ protocolConformance?: boolean;
540
+ protocolCompliance?: boolean;
541
+ fileModularization?: boolean;
542
+ };
543
+ configVersion?: number;
544
+ testTimeout?: number;
545
+ securityTestTimeout?: number;
546
+ delayBetweenTests?: number;
547
+ skipBrokenTools?: boolean;
548
+ reviewerMode?: boolean;
549
+ enableExtendedAssessment?: boolean;
550
+ documentationVerbosity?: "minimal" | "standard" | "verbose";
551
+ parallelTesting?: boolean;
552
+ maxParallelTests?: number;
553
+ scenariosPerTool?: number;
554
+ maxToolsToTestForErrors?: number;
555
+ selectedToolsForTesting?: string[];
556
+ securityPatternsToTest?: number;
557
+ enableDomainTesting?: boolean;
558
+ enableSequenceTesting?: boolean;
559
+ enableSourceCodeAnalysis?: boolean;
560
+ patternConfigPath?: string;
561
+ claudeCode?: {
562
+ features?: {
563
+ intelligentTestGeneration?: boolean;
564
+ aupSemanticAnalysis?: boolean;
565
+ annotationInference?: boolean;
566
+ documentationQuality?: boolean;
567
+ };
568
+ timeout?: number;
569
+ enabled?: boolean;
570
+ transport?: "cli" | "http";
571
+ maxRetries?: number;
572
+ httpConfig?: {
573
+ baseUrl?: string;
574
+ apiKey?: string;
575
+ headers?: Record<string, string>;
576
+ };
577
+ workingDir?: string;
578
+ };
579
+ temporalInvocations?: number;
580
+ logging?: {
581
+ level?: "silent" | "error" | "warn" | "info" | "debug";
582
+ format?: "text" | "json";
583
+ includeTimestamp?: boolean;
584
+ };
585
+ }>;
586
+ /**
587
+ * Inferred type from LoggingConfigSchema.
588
+ */
589
+ export type LoggingConfigParsed = z.infer<typeof LoggingConfigSchema>;
590
+ /**
591
+ * Inferred type from ClaudeCodeConfigSchema.
592
+ */
593
+ export type ClaudeCodeConfigParsed = z.infer<typeof ClaudeCodeConfigSchema>;
594
+ /**
595
+ * Inferred type from AssessmentCategoriesSchema.
596
+ */
597
+ export type AssessmentCategoriesParsed = z.infer<typeof AssessmentCategoriesSchema>;
598
+ /**
599
+ * Inferred type from AssessmentConfigurationSchema.
600
+ */
601
+ export type AssessmentConfigurationParsed = z.infer<typeof AssessmentConfigurationSchema>;
602
+ /**
603
+ * Parse and validate an assessment configuration object.
604
+ *
605
+ * @param config - Raw configuration object
606
+ * @returns Validated configuration
607
+ * @throws ZodError if validation fails
608
+ */
609
+ export declare function parseAssessmentConfig(config: unknown): AssessmentConfigurationParsed;
610
+ /**
611
+ * Safely parse an assessment configuration without throwing.
612
+ *
613
+ * @param config - Raw configuration object
614
+ * @returns SafeParseResult with success status and data/error
615
+ */
616
+ export declare function safeParseAssessmentConfig(config: unknown): z.SafeParseReturnType<{
617
+ mcpProtocolVersion?: string;
618
+ assessmentCategories?: {
619
+ functionality?: boolean;
620
+ security?: boolean;
621
+ documentation?: boolean;
622
+ errorHandling?: boolean;
623
+ usability?: boolean;
624
+ mcpSpecCompliance?: boolean;
625
+ aupCompliance?: boolean;
626
+ toolAnnotations?: boolean;
627
+ prohibitedLibraries?: boolean;
628
+ manifestValidation?: boolean;
629
+ portability?: boolean;
630
+ externalAPIScanner?: boolean;
631
+ authentication?: boolean;
632
+ temporal?: boolean;
633
+ resources?: boolean;
634
+ prompts?: boolean;
635
+ crossCapability?: boolean;
636
+ protocolConformance?: boolean;
637
+ protocolCompliance?: boolean;
638
+ fileModularization?: boolean;
639
+ };
640
+ configVersion?: number;
641
+ testTimeout?: number;
642
+ securityTestTimeout?: number;
643
+ delayBetweenTests?: number;
644
+ skipBrokenTools?: boolean;
645
+ reviewerMode?: boolean;
646
+ enableExtendedAssessment?: boolean;
647
+ documentationVerbosity?: "minimal" | "standard" | "verbose";
648
+ parallelTesting?: boolean;
649
+ maxParallelTests?: number;
650
+ scenariosPerTool?: number;
651
+ maxToolsToTestForErrors?: number;
652
+ selectedToolsForTesting?: string[];
653
+ securityPatternsToTest?: number;
654
+ enableDomainTesting?: boolean;
655
+ enableSequenceTesting?: boolean;
656
+ enableSourceCodeAnalysis?: boolean;
657
+ patternConfigPath?: string;
658
+ claudeCode?: {
659
+ features?: {
660
+ intelligentTestGeneration?: boolean;
661
+ aupSemanticAnalysis?: boolean;
662
+ annotationInference?: boolean;
663
+ documentationQuality?: boolean;
664
+ };
665
+ timeout?: number;
666
+ enabled?: boolean;
667
+ transport?: "cli" | "http";
668
+ maxRetries?: number;
669
+ httpConfig?: {
670
+ baseUrl?: string;
671
+ apiKey?: string;
672
+ headers?: Record<string, string>;
673
+ };
674
+ workingDir?: string;
675
+ };
676
+ temporalInvocations?: number;
677
+ logging?: {
678
+ level?: "silent" | "error" | "warn" | "info" | "debug";
679
+ format?: "text" | "json";
680
+ includeTimestamp?: boolean;
681
+ };
682
+ }, {
683
+ mcpProtocolVersion?: string;
684
+ assessmentCategories?: {
685
+ functionality?: boolean;
686
+ security?: boolean;
687
+ documentation?: boolean;
688
+ errorHandling?: boolean;
689
+ usability?: boolean;
690
+ mcpSpecCompliance?: boolean;
691
+ aupCompliance?: boolean;
692
+ toolAnnotations?: boolean;
693
+ prohibitedLibraries?: boolean;
694
+ manifestValidation?: boolean;
695
+ portability?: boolean;
696
+ externalAPIScanner?: boolean;
697
+ authentication?: boolean;
698
+ temporal?: boolean;
699
+ resources?: boolean;
700
+ prompts?: boolean;
701
+ crossCapability?: boolean;
702
+ protocolConformance?: boolean;
703
+ protocolCompliance?: boolean;
704
+ fileModularization?: boolean;
705
+ };
706
+ configVersion?: number;
707
+ testTimeout?: number;
708
+ securityTestTimeout?: number;
709
+ delayBetweenTests?: number;
710
+ skipBrokenTools?: boolean;
711
+ reviewerMode?: boolean;
712
+ enableExtendedAssessment?: boolean;
713
+ documentationVerbosity?: "minimal" | "standard" | "verbose";
714
+ parallelTesting?: boolean;
715
+ maxParallelTests?: number;
716
+ scenariosPerTool?: number;
717
+ maxToolsToTestForErrors?: number;
718
+ selectedToolsForTesting?: string[];
719
+ securityPatternsToTest?: number;
720
+ enableDomainTesting?: boolean;
721
+ enableSequenceTesting?: boolean;
722
+ enableSourceCodeAnalysis?: boolean;
723
+ patternConfigPath?: string;
724
+ claudeCode?: {
725
+ features?: {
726
+ intelligentTestGeneration?: boolean;
727
+ aupSemanticAnalysis?: boolean;
728
+ annotationInference?: boolean;
729
+ documentationQuality?: boolean;
730
+ };
731
+ timeout?: number;
732
+ enabled?: boolean;
733
+ transport?: "cli" | "http";
734
+ maxRetries?: number;
735
+ httpConfig?: {
736
+ baseUrl?: string;
737
+ apiKey?: string;
738
+ headers?: Record<string, string>;
739
+ };
740
+ workingDir?: string;
741
+ };
742
+ temporalInvocations?: number;
743
+ logging?: {
744
+ level?: "silent" | "error" | "warn" | "info" | "debug";
745
+ format?: "text" | "json";
746
+ includeTimestamp?: boolean;
747
+ };
748
+ }>;
749
+ /**
750
+ * Validate an assessment configuration and return error messages.
751
+ *
752
+ * @param config - Configuration to validate
753
+ * @returns Array of validation error messages (empty if valid)
754
+ */
755
+ export declare function validateAssessmentConfig(config: unknown): string[];
756
+ /**
757
+ * Validate a Claude Code configuration and return error messages.
758
+ *
759
+ * @param config - Configuration to validate
760
+ * @returns Array of validation error messages (empty if valid)
761
+ */
762
+ export declare function validateClaudeCodeConfig(config: unknown): string[];
763
+ //# sourceMappingURL=configSchemas.d.ts.map