agentic-qe 1.7.0 → 1.8.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 (152) hide show
  1. package/.claude/skills/sherlock-review/SKILL.md +786 -0
  2. package/CHANGELOG.md +625 -0
  3. package/README.md +42 -55
  4. package/dist/agents/BaseAgent.d.ts +10 -10
  5. package/dist/agents/BaseAgent.d.ts.map +1 -1
  6. package/dist/agents/BaseAgent.js +96 -78
  7. package/dist/agents/BaseAgent.js.map +1 -1
  8. package/dist/agents/CoverageAnalyzerAgent.js +2 -2
  9. package/dist/agents/CoverageAnalyzerAgent.js.map +1 -1
  10. package/dist/agents/LearningAgent.d.ts +2 -2
  11. package/dist/agents/LearningAgent.d.ts.map +1 -1
  12. package/dist/agents/LearningAgent.js +4 -4
  13. package/dist/agents/LearningAgent.js.map +1 -1
  14. package/dist/agents/TestExecutorAgent.d.ts +41 -2
  15. package/dist/agents/TestExecutorAgent.d.ts.map +1 -1
  16. package/dist/agents/TestExecutorAgent.js +314 -64
  17. package/dist/agents/TestExecutorAgent.js.map +1 -1
  18. package/dist/agents/examples/batchAnalyze.d.ts +252 -0
  19. package/dist/agents/examples/batchAnalyze.d.ts.map +1 -0
  20. package/dist/agents/examples/batchAnalyze.js +259 -0
  21. package/dist/agents/examples/batchAnalyze.js.map +1 -0
  22. package/dist/agents/examples/batchGenerate.d.ts +153 -0
  23. package/dist/agents/examples/batchGenerate.d.ts.map +1 -0
  24. package/dist/agents/examples/batchGenerate.js +166 -0
  25. package/dist/agents/examples/batchGenerate.js.map +1 -0
  26. package/dist/agents/generateWithPII.d.ts +128 -0
  27. package/dist/agents/generateWithPII.d.ts.map +1 -0
  28. package/dist/agents/generateWithPII.js +175 -0
  29. package/dist/agents/generateWithPII.js.map +1 -0
  30. package/dist/agents/lifecycle/AgentLifecycleManager.d.ts +1 -6
  31. package/dist/agents/lifecycle/AgentLifecycleManager.d.ts.map +1 -1
  32. package/dist/agents/lifecycle/AgentLifecycleManager.js +0 -7
  33. package/dist/agents/lifecycle/AgentLifecycleManager.js.map +1 -1
  34. package/dist/cli/commands/init.d.ts +6 -3
  35. package/dist/cli/commands/init.d.ts.map +1 -1
  36. package/dist/cli/commands/init.js +51 -46
  37. package/dist/cli/commands/init.js.map +1 -1
  38. package/dist/cli/commands/learn/index.d.ts +4 -0
  39. package/dist/cli/commands/learn/index.d.ts.map +1 -1
  40. package/dist/cli/commands/learn/index.js +57 -0
  41. package/dist/cli/commands/learn/index.js.map +1 -1
  42. package/dist/cli/index.js +14 -0
  43. package/dist/cli/index.js.map +1 -1
  44. package/dist/core/memory/AdapterConfig.d.ts +108 -0
  45. package/dist/core/memory/AdapterConfig.d.ts.map +1 -0
  46. package/dist/core/memory/AdapterConfig.js +189 -0
  47. package/dist/core/memory/AdapterConfig.js.map +1 -0
  48. package/dist/core/memory/AdapterFactory.d.ts +72 -0
  49. package/dist/core/memory/AdapterFactory.d.ts.map +1 -0
  50. package/dist/core/memory/AdapterFactory.js +152 -0
  51. package/dist/core/memory/AdapterFactory.js.map +1 -0
  52. package/dist/core/memory/AgentDBManager.d.ts +28 -5
  53. package/dist/core/memory/AgentDBManager.d.ts.map +1 -1
  54. package/dist/core/memory/AgentDBManager.js +99 -73
  55. package/dist/core/memory/AgentDBManager.js.map +1 -1
  56. package/dist/core/memory/PatternCache.d.ts +105 -0
  57. package/dist/core/memory/PatternCache.d.ts.map +1 -0
  58. package/dist/core/memory/PatternCache.js +183 -0
  59. package/dist/core/memory/PatternCache.js.map +1 -0
  60. package/dist/core/memory/RealAgentDBAdapter.d.ts +14 -0
  61. package/dist/core/memory/RealAgentDBAdapter.d.ts.map +1 -1
  62. package/dist/core/memory/RealAgentDBAdapter.js +153 -16
  63. package/dist/core/memory/RealAgentDBAdapter.js.map +1 -1
  64. package/dist/core/memory/ReasoningBankAdapter.d.ts +4 -0
  65. package/dist/core/memory/ReasoningBankAdapter.d.ts.map +1 -1
  66. package/dist/core/memory/ReasoningBankAdapter.js +20 -0
  67. package/dist/core/memory/ReasoningBankAdapter.js.map +1 -1
  68. package/dist/core/memory/SwarmMemoryManager.d.ts +8 -0
  69. package/dist/core/memory/SwarmMemoryManager.d.ts.map +1 -1
  70. package/dist/core/memory/SwarmMemoryManager.js +33 -0
  71. package/dist/core/memory/SwarmMemoryManager.js.map +1 -1
  72. package/dist/core/memory/index.d.ts +6 -0
  73. package/dist/core/memory/index.d.ts.map +1 -1
  74. package/dist/core/memory/index.js +12 -1
  75. package/dist/core/memory/index.js.map +1 -1
  76. package/dist/core/neural/NeuralTrainer.d.ts +2 -6
  77. package/dist/core/neural/NeuralTrainer.d.ts.map +1 -1
  78. package/dist/core/neural/NeuralTrainer.js +7 -25
  79. package/dist/core/neural/NeuralTrainer.js.map +1 -1
  80. package/dist/learning/ImprovementLoop.js +2 -2
  81. package/dist/learning/ImprovementLoop.js.map +1 -1
  82. package/dist/learning/LearningEngine.d.ts +11 -7
  83. package/dist/learning/LearningEngine.d.ts.map +1 -1
  84. package/dist/learning/LearningEngine.js +156 -72
  85. package/dist/learning/LearningEngine.js.map +1 -1
  86. package/dist/mcp/handlers/filtered/coverage-analyzer-filtered.d.ts +83 -0
  87. package/dist/mcp/handlers/filtered/coverage-analyzer-filtered.d.ts.map +1 -0
  88. package/dist/mcp/handlers/filtered/coverage-analyzer-filtered.js +130 -0
  89. package/dist/mcp/handlers/filtered/coverage-analyzer-filtered.js.map +1 -0
  90. package/dist/mcp/handlers/filtered/flaky-detector-filtered.d.ts +58 -0
  91. package/dist/mcp/handlers/filtered/flaky-detector-filtered.d.ts.map +1 -0
  92. package/dist/mcp/handlers/filtered/flaky-detector-filtered.js +84 -0
  93. package/dist/mcp/handlers/filtered/flaky-detector-filtered.js.map +1 -0
  94. package/dist/mcp/handlers/filtered/index.d.ts +47 -0
  95. package/dist/mcp/handlers/filtered/index.d.ts.map +1 -0
  96. package/dist/mcp/handlers/filtered/index.js +63 -0
  97. package/dist/mcp/handlers/filtered/index.js.map +1 -0
  98. package/dist/mcp/handlers/filtered/performance-tester-filtered.d.ts +57 -0
  99. package/dist/mcp/handlers/filtered/performance-tester-filtered.d.ts.map +1 -0
  100. package/dist/mcp/handlers/filtered/performance-tester-filtered.js +83 -0
  101. package/dist/mcp/handlers/filtered/performance-tester-filtered.js.map +1 -0
  102. package/dist/mcp/handlers/filtered/quality-assessor-filtered.d.ts +57 -0
  103. package/dist/mcp/handlers/filtered/quality-assessor-filtered.d.ts.map +1 -0
  104. package/dist/mcp/handlers/filtered/quality-assessor-filtered.js +93 -0
  105. package/dist/mcp/handlers/filtered/quality-assessor-filtered.js.map +1 -0
  106. package/dist/mcp/handlers/filtered/security-scanner-filtered.d.ts +54 -0
  107. package/dist/mcp/handlers/filtered/security-scanner-filtered.d.ts.map +1 -0
  108. package/dist/mcp/handlers/filtered/security-scanner-filtered.js +73 -0
  109. package/dist/mcp/handlers/filtered/security-scanner-filtered.js.map +1 -0
  110. package/dist/mcp/handlers/filtered/test-executor-filtered.d.ts +61 -0
  111. package/dist/mcp/handlers/filtered/test-executor-filtered.d.ts.map +1 -0
  112. package/dist/mcp/handlers/filtered/test-executor-filtered.js +117 -0
  113. package/dist/mcp/handlers/filtered/test-executor-filtered.js.map +1 -0
  114. package/dist/mcp/handlers/phase2/Phase2Tools.js +2 -2
  115. package/dist/mcp/handlers/phase2/Phase2Tools.js.map +1 -1
  116. package/dist/scripts/backup-helper.d.ts +64 -0
  117. package/dist/scripts/backup-helper.d.ts.map +1 -0
  118. package/dist/scripts/backup-helper.js +251 -0
  119. package/dist/scripts/backup-helper.js.map +1 -0
  120. package/dist/scripts/migrate-with-backup.d.ts +15 -0
  121. package/dist/scripts/migrate-with-backup.d.ts.map +1 -0
  122. package/dist/scripts/migrate-with-backup.js +194 -0
  123. package/dist/scripts/migrate-with-backup.js.map +1 -0
  124. package/dist/security/pii-tokenization.d.ts +216 -0
  125. package/dist/security/pii-tokenization.d.ts.map +1 -0
  126. package/dist/security/pii-tokenization.js +325 -0
  127. package/dist/security/pii-tokenization.js.map +1 -0
  128. package/dist/utils/EmbeddingGenerator.d.ts +35 -0
  129. package/dist/utils/EmbeddingGenerator.d.ts.map +1 -0
  130. package/dist/utils/EmbeddingGenerator.js +72 -0
  131. package/dist/utils/EmbeddingGenerator.js.map +1 -0
  132. package/dist/utils/batch-operations.d.ts +215 -0
  133. package/dist/utils/batch-operations.d.ts.map +1 -0
  134. package/dist/utils/batch-operations.js +266 -0
  135. package/dist/utils/batch-operations.js.map +1 -0
  136. package/dist/utils/filtering.d.ts +180 -0
  137. package/dist/utils/filtering.d.ts.map +1 -0
  138. package/dist/utils/filtering.js +288 -0
  139. package/dist/utils/filtering.js.map +1 -0
  140. package/dist/utils/prompt-cache-examples.d.ts +111 -0
  141. package/dist/utils/prompt-cache-examples.d.ts.map +1 -0
  142. package/dist/utils/prompt-cache-examples.js +416 -0
  143. package/dist/utils/prompt-cache-examples.js.map +1 -0
  144. package/dist/utils/prompt-cache.d.ts +305 -0
  145. package/dist/utils/prompt-cache.d.ts.map +1 -0
  146. package/dist/utils/prompt-cache.js +448 -0
  147. package/dist/utils/prompt-cache.js.map +1 -0
  148. package/package.json +7 -16
  149. package/dist/mcp/tools/deprecated.d.ts +0 -1390
  150. package/dist/mcp/tools/deprecated.d.ts.map +0 -1
  151. package/dist/mcp/tools/deprecated.js +0 -859
  152. package/dist/mcp/tools/deprecated.js.map +0 -1
@@ -1,1390 +0,0 @@
1
- /**
2
- * Deprecated MCP Tools - Phase 3 Migration
3
- *
4
- * This file contains deprecation wrappers for tools that were renamed/moved in Phase 3.
5
- * All wrappers maintain 100% backward compatibility while warning users to migrate.
6
- *
7
- * Deprecation Timeline: v3.0.0 (February 2026)
8
- * Migration Guide: docs/migration/phase3-tools.md
9
- */
10
- import { z } from 'zod';
11
- /**
12
- * @deprecated Use analyzeCoverageWithRiskScoring() from 'agentic-qe/tools/qe/coverage' instead
13
- * Will be removed in v3.0.0 (February 2026)
14
- * Migration guide: docs/migration/phase3-tools.md
15
- */
16
- export declare const test_coverage_detailed: {
17
- name: string;
18
- description: string;
19
- schema: z.ZodObject<{
20
- source_dirs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21
- test_dirs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22
- framework: z.ZodOptional<z.ZodEnum<["jest", "mocha", "vitest", "pytest"]>>;
23
- risk_threshold: z.ZodOptional<z.ZodNumber>;
24
- }, "strip", z.ZodTypeAny, {
25
- framework?: "jest" | "mocha" | "vitest" | "pytest" | undefined;
26
- source_dirs?: string[] | undefined;
27
- test_dirs?: string[] | undefined;
28
- risk_threshold?: number | undefined;
29
- }, {
30
- framework?: "jest" | "mocha" | "vitest" | "pytest" | undefined;
31
- source_dirs?: string[] | undefined;
32
- test_dirs?: string[] | undefined;
33
- risk_threshold?: number | undefined;
34
- }>;
35
- handler: (params: any) => Promise<import("./qe/coverage/analyze-with-risk-scoring").RiskScoringResult>;
36
- };
37
- /**
38
- * @deprecated Use identifyUncoveredRiskAreas() from 'agentic-qe/tools/qe/coverage' instead
39
- * Will be removed in v3.0.0 (February 2026)
40
- * Migration guide: docs/migration/phase3-tools.md
41
- */
42
- export declare const test_coverage_gaps: {
43
- name: string;
44
- description: string;
45
- schema: z.ZodObject<{
46
- source_dirs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
47
- coverage_threshold: z.ZodOptional<z.ZodNumber>;
48
- risk_factors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
49
- }, "strip", z.ZodTypeAny, {
50
- source_dirs?: string[] | undefined;
51
- coverage_threshold?: number | undefined;
52
- risk_factors?: string[] | undefined;
53
- }, {
54
- source_dirs?: string[] | undefined;
55
- coverage_threshold?: number | undefined;
56
- risk_factors?: string[] | undefined;
57
- }>;
58
- handler: (params: any) => Promise<import("./qe/coverage/detect-gaps-ml").MLGapDetectionResult>;
59
- };
60
- /**
61
- * @deprecated Use detectFlakyTestsStatistical() from 'agentic-qe/tools/qe/flaky-detection' instead
62
- * Will be removed in v3.0.0 (February 2026)
63
- * Migration guide: docs/migration/phase3-tools.md
64
- */
65
- export declare const flaky_test_detect: {
66
- name: string;
67
- description: string;
68
- schema: z.ZodObject<{
69
- test_results_dir: z.ZodOptional<z.ZodString>;
70
- runs_threshold: z.ZodOptional<z.ZodNumber>;
71
- confidence_level: z.ZodOptional<z.ZodNumber>;
72
- }, "strip", z.ZodTypeAny, {
73
- test_results_dir?: string | undefined;
74
- runs_threshold?: number | undefined;
75
- confidence_level?: number | undefined;
76
- }, {
77
- test_results_dir?: string | undefined;
78
- runs_threshold?: number | undefined;
79
- confidence_level?: number | undefined;
80
- }>;
81
- handler: (params: any) => Promise<import("./qe/shared/types").QEToolResponse<import("./qe/flaky-detection/detect-statistical").StatisticalDetectionResult>>;
82
- };
83
- /**
84
- * @deprecated Use analyzeFlakyTestPatterns() from 'agentic-qe/tools/qe/flaky-detection' instead
85
- * Will be removed in v3.0.0 (February 2026)
86
- * Migration guide: docs/migration/phase3-tools.md
87
- */
88
- export declare const flaky_test_patterns: {
89
- name: string;
90
- description: string;
91
- schema: z.ZodObject<{
92
- test_results_dir: z.ZodOptional<z.ZodString>;
93
- pattern_types: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
94
- }, "strip", z.ZodTypeAny, {
95
- test_results_dir?: string | undefined;
96
- pattern_types?: string[] | undefined;
97
- }, {
98
- test_results_dir?: string | undefined;
99
- pattern_types?: string[] | undefined;
100
- }>;
101
- handler: (params: any) => Promise<import("./qe/shared/types").QEToolResponse<import("./qe/flaky-detection/analyze-patterns").PatternAnalysisResult>>;
102
- };
103
- /**
104
- * @deprecated Use stabilizeFlakyTestAuto() from 'agentic-qe/tools/qe/flaky-detection' instead
105
- * Will be removed in v3.0.0 (February 2026)
106
- * Migration guide: docs/migration/phase3-tools.md
107
- */
108
- export declare const flaky_test_stabilize: {
109
- name: string;
110
- description: string;
111
- schema: z.ZodObject<{
112
- test_file: z.ZodString;
113
- flaky_test_name: z.ZodString;
114
- stabilization_strategy: z.ZodOptional<z.ZodEnum<["retry", "timeout", "isolation", "auto"]>>;
115
- }, "strip", z.ZodTypeAny, {
116
- test_file: string;
117
- flaky_test_name: string;
118
- stabilization_strategy?: "timeout" | "isolation" | "auto" | "retry" | undefined;
119
- }, {
120
- test_file: string;
121
- flaky_test_name: string;
122
- stabilization_strategy?: "timeout" | "isolation" | "auto" | "retry" | undefined;
123
- }>;
124
- handler: (params: any) => Promise<import("./qe/shared/types").QEToolResponse<import("./qe/flaky-detection/stabilize-auto").StabilizationResult>>;
125
- };
126
- /**
127
- * @deprecated Use runPerformanceBenchmark() from 'agentic-qe/tools/qe/performance' instead
128
- * Will be removed in v3.0.0 (February 2026)
129
- * Migration guide: docs/migration/phase3-tools.md
130
- */
131
- export declare const performance_benchmark_run: {
132
- name: string;
133
- description: string;
134
- schema: z.ZodObject<{
135
- target: z.ZodOptional<z.ZodString>;
136
- duration: z.ZodOptional<z.ZodNumber>;
137
- concurrency: z.ZodOptional<z.ZodNumber>;
138
- tool: z.ZodOptional<z.ZodEnum<["k6", "jmeter", "gatling", "artillery"]>>;
139
- }, "strip", z.ZodTypeAny, {
140
- concurrency?: number | undefined;
141
- duration?: number | undefined;
142
- tool?: "k6" | "jmeter" | "gatling" | "artillery" | undefined;
143
- target?: string | undefined;
144
- }, {
145
- concurrency?: number | undefined;
146
- duration?: number | undefined;
147
- tool?: "k6" | "jmeter" | "gatling" | "artillery" | undefined;
148
- target?: string | undefined;
149
- }>;
150
- handler: (params: any) => Promise<import("./qe/performance/run-benchmark").BenchmarkResult>;
151
- };
152
- /**
153
- * @deprecated Use monitorRealtimePerformance() from 'agentic-qe/tools/qe/performance' instead
154
- * Will be removed in v3.0.0 (February 2026)
155
- * Migration guide: docs/migration/phase3-tools.md
156
- */
157
- export declare const performance_monitor_realtime: {
158
- name: string;
159
- description: string;
160
- schema: z.ZodObject<{
161
- target: z.ZodOptional<z.ZodString>;
162
- metrics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
163
- interval: z.ZodOptional<z.ZodNumber>;
164
- duration: z.ZodOptional<z.ZodNumber>;
165
- }, "strip", z.ZodTypeAny, {
166
- metrics?: string[] | undefined;
167
- interval?: number | undefined;
168
- duration?: number | undefined;
169
- target?: string | undefined;
170
- }, {
171
- metrics?: string[] | undefined;
172
- interval?: number | undefined;
173
- duration?: number | undefined;
174
- target?: string | undefined;
175
- }>;
176
- handler: (params: any) => Promise<import("./qe/performance/monitor-realtime").RealtimeMonitoringResult>;
177
- };
178
- /**
179
- * @deprecated Use securityScanComprehensive() from 'agentic-qe/handlers/security' instead
180
- * Will be removed in v3.0.0 (February 2026)
181
- * Migration guide: docs/migration/phase3-tools.md
182
- */
183
- export declare const security_scan_comprehensive: {
184
- name: string;
185
- description: string;
186
- schema: z.ZodObject<{
187
- targets: z.ZodArray<z.ZodString, "many">;
188
- scanTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["sast", "dast", "sca", "secrets", "dependencies"]>, "many">>;
189
- severity: z.ZodOptional<z.ZodArray<z.ZodEnum<["critical", "high", "medium", "low"]>, "many">>;
190
- includeCompliance: z.ZodOptional<z.ZodBoolean>;
191
- fixSuggestions: z.ZodOptional<z.ZodBoolean>;
192
- }, "strip", z.ZodTypeAny, {
193
- targets: string[];
194
- severity?: ("low" | "medium" | "high" | "critical")[] | undefined;
195
- scanTypes?: ("dependencies" | "sast" | "dast" | "sca" | "secrets")[] | undefined;
196
- includeCompliance?: boolean | undefined;
197
- fixSuggestions?: boolean | undefined;
198
- }, {
199
- targets: string[];
200
- severity?: ("low" | "medium" | "high" | "critical")[] | undefined;
201
- scanTypes?: ("dependencies" | "sast" | "dast" | "sca" | "secrets")[] | undefined;
202
- includeCompliance?: boolean | undefined;
203
- fixSuggestions?: boolean | undefined;
204
- }>;
205
- handler: (params: any) => Promise<import("../handlers/security/scan-comprehensive").SecurityScanComprehensiveResult>;
206
- };
207
- /**
208
- * @deprecated Use validateAuthenticationFlow() from 'agentic-qe/handlers/security' instead
209
- * Will be removed in v3.0.0 (February 2026)
210
- * Migration guide: docs/migration/phase3-tools.md
211
- */
212
- export declare const security_validate_auth: {
213
- name: string;
214
- description: string;
215
- schema: z.ZodObject<{
216
- endpoints: z.ZodArray<z.ZodString, "many">;
217
- authType: z.ZodOptional<z.ZodEnum<["jwt", "oauth2", "basic", "api-key", "custom"]>>;
218
- includeTokenValidation: z.ZodOptional<z.ZodBoolean>;
219
- testNegativeCases: z.ZodOptional<z.ZodBoolean>;
220
- }, "strip", z.ZodTypeAny, {
221
- endpoints: string[];
222
- authType?: "custom" | "basic" | "jwt" | "oauth2" | "api-key" | undefined;
223
- includeTokenValidation?: boolean | undefined;
224
- testNegativeCases?: boolean | undefined;
225
- }, {
226
- endpoints: string[];
227
- authType?: "custom" | "basic" | "jwt" | "oauth2" | "api-key" | undefined;
228
- includeTokenValidation?: boolean | undefined;
229
- testNegativeCases?: boolean | undefined;
230
- }>;
231
- handler: (params: any) => Promise<import("../handlers/security/validate-auth").AuthValidationResult>;
232
- };
233
- /**
234
- * @deprecated Use checkAuthorizationRules() from 'agentic-qe/handlers/security' instead
235
- * Will be removed in v3.0.0 (February 2026)
236
- * Migration guide: docs/migration/phase3-tools.md
237
- */
238
- export declare const security_check_authz: {
239
- name: string;
240
- description: string;
241
- schema: z.ZodObject<{
242
- policies: z.ZodArray<z.ZodAny, "many">;
243
- testCases: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
244
- validateRBAC: z.ZodOptional<z.ZodBoolean>;
245
- validateABAC: z.ZodOptional<z.ZodBoolean>;
246
- }, "strip", z.ZodTypeAny, {
247
- policies: any[];
248
- testCases?: any[] | undefined;
249
- validateRBAC?: boolean | undefined;
250
- validateABAC?: boolean | undefined;
251
- }, {
252
- policies: any[];
253
- testCases?: any[] | undefined;
254
- validateRBAC?: boolean | undefined;
255
- validateABAC?: boolean | undefined;
256
- }>;
257
- handler: (params: any) => Promise<import("../handlers/security/check-authz").AuthzCheckResult>;
258
- };
259
- /**
260
- * @deprecated Use generateUnitTests() from 'agentic-qe/handlers/test' instead
261
- * Will be removed in v3.0.0 (February 2026)
262
- * Migration guide: docs/migration/phase3-tools.md
263
- */
264
- export declare const test_generate_unit: {
265
- name: string;
266
- description: string;
267
- schema: z.ZodObject<{
268
- sourceCode: z.ZodString;
269
- language: z.ZodEnum<["typescript", "javascript", "python", "java", "go"]>;
270
- framework: z.ZodEnum<["jest", "mocha", "pytest", "junit", "testing"]>;
271
- coverageGoal: z.ZodOptional<z.ZodNumber>;
272
- aiEnhanced: z.ZodOptional<z.ZodBoolean>;
273
- includeEdgeCases: z.ZodOptional<z.ZodBoolean>;
274
- }, "strip", z.ZodTypeAny, {
275
- framework: "jest" | "mocha" | "testing" | "pytest" | "junit";
276
- language: "typescript" | "javascript" | "python" | "java" | "go";
277
- sourceCode: string;
278
- coverageGoal?: number | undefined;
279
- includeEdgeCases?: boolean | undefined;
280
- aiEnhanced?: boolean | undefined;
281
- }, {
282
- framework: "jest" | "mocha" | "testing" | "pytest" | "junit";
283
- language: "typescript" | "javascript" | "python" | "java" | "go";
284
- sourceCode: string;
285
- coverageGoal?: number | undefined;
286
- includeEdgeCases?: boolean | undefined;
287
- aiEnhanced?: boolean | undefined;
288
- }>;
289
- handler: (params: any) => Promise<import("../handlers/test/generate-unit-tests").GenerateUnitTestsResult>;
290
- };
291
- /**
292
- * @deprecated Use generateIntegrationTests() from 'agentic-qe/handlers/test' instead
293
- * Will be removed in v3.0.0 (February 2026)
294
- * Migration guide: docs/migration/phase3-tools.md
295
- */
296
- export declare const test_generate_integration: {
297
- name: string;
298
- description: string;
299
- schema: z.ZodObject<{
300
- apiSpec: z.ZodOptional<z.ZodString>;
301
- endpoints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
302
- framework: z.ZodOptional<z.ZodEnum<["supertest", "axios", "pact", "rest-assured"]>>;
303
- includeContractTests: z.ZodOptional<z.ZodBoolean>;
304
- includeDatabaseTests: z.ZodOptional<z.ZodBoolean>;
305
- }, "strip", z.ZodTypeAny, {
306
- framework?: "supertest" | "axios" | "pact" | "rest-assured" | undefined;
307
- apiSpec?: string | undefined;
308
- endpoints?: string[] | undefined;
309
- includeContractTests?: boolean | undefined;
310
- includeDatabaseTests?: boolean | undefined;
311
- }, {
312
- framework?: "supertest" | "axios" | "pact" | "rest-assured" | undefined;
313
- apiSpec?: string | undefined;
314
- endpoints?: string[] | undefined;
315
- includeContractTests?: boolean | undefined;
316
- includeDatabaseTests?: boolean | undefined;
317
- }>;
318
- handler: (params: any) => Promise<import("../handlers/test/generate-integration-tests").GenerateIntegrationTestsResult>;
319
- };
320
- /**
321
- * @deprecated Use optimizeTestSuite() from 'agentic-qe/handlers/test' instead
322
- * Will be removed in v3.0.0 (February 2026)
323
- * Migration guide: docs/migration/phase3-tools.md
324
- */
325
- export declare const test_optimize_suite: {
326
- name: string;
327
- description: string;
328
- schema: z.ZodObject<{
329
- testDirectory: z.ZodString;
330
- framework: z.ZodOptional<z.ZodEnum<["jest", "mocha", "vitest", "pytest"]>>;
331
- targetCoverage: z.ZodOptional<z.ZodNumber>;
332
- removeDuplicates: z.ZodOptional<z.ZodBoolean>;
333
- parallelizeTests: z.ZodOptional<z.ZodBoolean>;
334
- }, "strip", z.ZodTypeAny, {
335
- testDirectory: string;
336
- framework?: "jest" | "mocha" | "vitest" | "pytest" | undefined;
337
- targetCoverage?: number | undefined;
338
- removeDuplicates?: boolean | undefined;
339
- parallelizeTests?: boolean | undefined;
340
- }, {
341
- testDirectory: string;
342
- framework?: "jest" | "mocha" | "vitest" | "pytest" | undefined;
343
- targetCoverage?: number | undefined;
344
- removeDuplicates?: boolean | undefined;
345
- parallelizeTests?: boolean | undefined;
346
- }>;
347
- handler: (params: any) => Promise<import("../handlers/test/optimize-test-suite").OptimizeTestSuiteResult>;
348
- };
349
- /**
350
- * @deprecated Use QualityGateExecuteHandler from 'agentic-qe/handlers/quality' instead
351
- * Will be removed in v3.0.0 (February 2026)
352
- * Migration guide: docs/migration/phase3-tools.md
353
- */
354
- export declare const quality_gate_execute: {
355
- name: string;
356
- description: string;
357
- schema: z.ZodObject<{
358
- projectId: z.ZodString;
359
- buildId: z.ZodString;
360
- environment: z.ZodEnum<["development", "staging", "production"]>;
361
- metrics: z.ZodAny;
362
- policy: z.ZodOptional<z.ZodAny>;
363
- }, "strip", z.ZodTypeAny, {
364
- environment: "development" | "staging" | "production";
365
- projectId: string;
366
- buildId: string;
367
- metrics?: any;
368
- policy?: any;
369
- }, {
370
- environment: "development" | "staging" | "production";
371
- projectId: string;
372
- buildId: string;
373
- metrics?: any;
374
- policy?: any;
375
- }>;
376
- handler: (params: any) => Promise<never>;
377
- };
378
- /**
379
- * @deprecated Use QualityRiskAssessHandler from 'agentic-qe/handlers/quality' instead
380
- * Will be removed in v3.0.0 (February 2026)
381
- * Migration guide: docs/migration/phase3-tools.md
382
- */
383
- export declare const quality_assess_risk: {
384
- name: string;
385
- description: string;
386
- schema: z.ZodObject<{
387
- changes: z.ZodArray<z.ZodAny, "many">;
388
- metrics: z.ZodAny;
389
- historicalData: z.ZodOptional<z.ZodAny>;
390
- deploymentTarget: z.ZodOptional<z.ZodString>;
391
- }, "strip", z.ZodTypeAny, {
392
- changes: any[];
393
- metrics?: any;
394
- historicalData?: any;
395
- deploymentTarget?: string | undefined;
396
- }, {
397
- changes: any[];
398
- metrics?: any;
399
- historicalData?: any;
400
- deploymentTarget?: string | undefined;
401
- }>;
402
- handler: (params: any) => Promise<never>;
403
- };
404
- /**
405
- * @deprecated Use QualityValidateMetricsHandler from 'agentic-qe/handlers/quality' instead
406
- * Will be removed in v3.0.0 (February 2026)
407
- * Migration guide: docs/migration/phase3-tools.md
408
- */
409
- export declare const quality_validate_metrics: {
410
- name: string;
411
- description: string;
412
- schema: z.ZodObject<{
413
- metrics: z.ZodAny;
414
- thresholds: z.ZodAny;
415
- validateTrends: z.ZodOptional<z.ZodBoolean>;
416
- includeHistorical: z.ZodOptional<z.ZodBoolean>;
417
- }, "strip", z.ZodTypeAny, {
418
- metrics?: any;
419
- thresholds?: any;
420
- validateTrends?: boolean | undefined;
421
- includeHistorical?: boolean | undefined;
422
- }, {
423
- metrics?: any;
424
- thresholds?: any;
425
- validateTrends?: boolean | undefined;
426
- includeHistorical?: boolean | undefined;
427
- }>;
428
- handler: (params: any) => Promise<never>;
429
- };
430
- /**
431
- * @deprecated Use detectVisualRegression() from 'agentic-qe/tools/qe/visual' instead
432
- * Will be removed in v3.0.0 (February 2026)
433
- * Migration guide: docs/migration/phase3-tools.md
434
- */
435
- export declare const visual_test_regression: {
436
- name: string;
437
- description: string;
438
- schema: z.ZodObject<{
439
- baseline_dir: z.ZodOptional<z.ZodString>;
440
- current_dir: z.ZodOptional<z.ZodString>;
441
- threshold: z.ZodOptional<z.ZodNumber>;
442
- ai_analysis: z.ZodOptional<z.ZodBoolean>;
443
- }, "strip", z.ZodTypeAny, {
444
- threshold?: number | undefined;
445
- baseline_dir?: string | undefined;
446
- current_dir?: string | undefined;
447
- ai_analysis?: boolean | undefined;
448
- }, {
449
- threshold?: number | undefined;
450
- baseline_dir?: string | undefined;
451
- current_dir?: string | undefined;
452
- ai_analysis?: boolean | undefined;
453
- }>;
454
- handler: (params: any) => Promise<never>;
455
- };
456
- /**
457
- * @deprecated Use contractValidate() from 'agentic-qe/handlers/integration' instead
458
- * Will be removed in v3.0.0 (February 2026)
459
- * Migration guide: docs/migration/phase3-tools.md
460
- */
461
- export declare const api_contract_validate: {
462
- name: string;
463
- description: string;
464
- schema: z.ZodObject<{
465
- providerContract: z.ZodString;
466
- consumerContract: z.ZodString;
467
- strictMode: z.ZodOptional<z.ZodBoolean>;
468
- }, "strip", z.ZodTypeAny, {
469
- providerContract: string;
470
- consumerContract: string;
471
- strictMode?: boolean | undefined;
472
- }, {
473
- providerContract: string;
474
- consumerContract: string;
475
- strictMode?: boolean | undefined;
476
- }>;
477
- handler: (params: any) => Promise<import("../types/integration").ContractValidateResult>;
478
- };
479
- /**
480
- * @deprecated Use apiBreakingChanges() from 'agentic-qe/handlers/advanced' instead
481
- * Will be removed in v3.0.0 (February 2026)
482
- * Migration guide: docs/migration/phase3-tools.md
483
- */
484
- export declare const api_contract_breaking_changes: {
485
- name: string;
486
- description: string;
487
- schema: z.ZodObject<{
488
- oldAPI: z.ZodString;
489
- newAPI: z.ZodString;
490
- language: z.ZodOptional<z.ZodEnum<["typescript", "javascript", "openapi"]>>;
491
- calculateSemver: z.ZodOptional<z.ZodBoolean>;
492
- }, "strip", z.ZodTypeAny, {
493
- oldAPI: string;
494
- newAPI: string;
495
- language?: "typescript" | "javascript" | "openapi" | undefined;
496
- calculateSemver?: boolean | undefined;
497
- }, {
498
- oldAPI: string;
499
- newAPI: string;
500
- language?: "typescript" | "javascript" | "openapi" | undefined;
501
- calculateSemver?: boolean | undefined;
502
- }>;
503
- handler: (params: any) => Promise<import("../types/advanced").APIBreakingChangesResult>;
504
- };
505
- /**
506
- * @deprecated Use generateVersioningMatrix() from 'agentic-qe/handlers/advanced' instead
507
- * Will be removed in v3.0.0 (February 2026)
508
- * Migration guide: docs/migration/phase3-tools.md
509
- */
510
- export declare const api_contract_versioning: {
511
- name: string;
512
- description: string;
513
- schema: z.ZodObject<{
514
- versions: z.ZodArray<z.ZodString, "many">;
515
- contracts: z.ZodArray<z.ZodAny, "many">;
516
- checkBackwardCompatibility: z.ZodOptional<z.ZodBoolean>;
517
- }, "strip", z.ZodTypeAny, {
518
- contracts: any[];
519
- versions: string[];
520
- checkBackwardCompatibility?: boolean | undefined;
521
- }, {
522
- contracts: any[];
523
- versions: string[];
524
- checkBackwardCompatibility?: boolean | undefined;
525
- }>;
526
- handler: (params: any) => Promise<any>;
527
- };
528
- /**
529
- * @deprecated Use generateTestData() from 'agentic-qe/tools/qe/test-data' instead
530
- * Will be removed in v3.0.0 (February 2026)
531
- * Migration guide: docs/migration/phase3-tools.md
532
- */
533
- export declare const test_data_generate: {
534
- name: string;
535
- description: string;
536
- schema: z.ZodObject<{
537
- schema: z.ZodAny;
538
- count: z.ZodOptional<z.ZodNumber>;
539
- locale: z.ZodOptional<z.ZodString>;
540
- seed: z.ZodOptional<z.ZodNumber>;
541
- }, "strip", z.ZodTypeAny, {
542
- count?: number | undefined;
543
- schema?: any;
544
- seed?: number | undefined;
545
- locale?: string | undefined;
546
- }, {
547
- count?: number | undefined;
548
- schema?: any;
549
- seed?: number | undefined;
550
- locale?: string | undefined;
551
- }>;
552
- handler: (params: any) => Promise<any>;
553
- };
554
- /**
555
- * @deprecated Use maskSensitiveData() from 'agentic-qe/tools/qe/test-data' instead
556
- * Will be removed in v3.0.0 (February 2026)
557
- * Migration guide: docs/migration/phase3-tools.md
558
- */
559
- export declare const test_data_mask: {
560
- name: string;
561
- description: string;
562
- schema: z.ZodObject<{
563
- data: z.ZodAny;
564
- fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
565
- maskingStrategy: z.ZodOptional<z.ZodEnum<["redact", "hash", "tokenize", "shuffle"]>>;
566
- }, "strip", z.ZodTypeAny, {
567
- data?: any;
568
- fields?: string[] | undefined;
569
- maskingStrategy?: "hash" | "tokenize" | "redact" | "shuffle" | undefined;
570
- }, {
571
- data?: any;
572
- fields?: string[] | undefined;
573
- maskingStrategy?: "hash" | "tokenize" | "redact" | "shuffle" | undefined;
574
- }>;
575
- handler: (params: any) => Promise<any>;
576
- };
577
- /**
578
- * @deprecated Use validateDataSchema() from 'agentic-qe/tools/qe/test-data' instead
579
- * Will be removed in v3.0.0 (February 2026)
580
- * Migration guide: docs/migration/phase3-tools.md
581
- */
582
- export declare const test_data_schema: {
583
- name: string;
584
- description: string;
585
- schema: z.ZodObject<{
586
- data: z.ZodAny;
587
- schema: z.ZodAny;
588
- strictMode: z.ZodOptional<z.ZodBoolean>;
589
- }, "strip", z.ZodTypeAny, {
590
- data?: any;
591
- schema?: any;
592
- strictMode?: boolean | undefined;
593
- }, {
594
- data?: any;
595
- schema?: any;
596
- strictMode?: boolean | undefined;
597
- }>;
598
- handler: (params: any) => Promise<any>;
599
- };
600
- /**
601
- * @deprecated Use regressionAnalyzeRisk() from 'agentic-qe/handlers/prediction' instead
602
- * Will be removed in v3.0.0 (February 2026)
603
- * Migration guide: docs/migration/phase3-tools.md
604
- */
605
- export declare const regression_analyze_risk: {
606
- name: string;
607
- description: string;
608
- schema: z.ZodObject<{
609
- changedFiles: z.ZodArray<z.ZodString, "many">;
610
- commitHistory: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
611
- testHistory: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
612
- }, "strip", z.ZodTypeAny, {
613
- changedFiles: string[];
614
- commitHistory?: any[] | undefined;
615
- testHistory?: any[] | undefined;
616
- }, {
617
- changedFiles: string[];
618
- commitHistory?: any[] | undefined;
619
- testHistory?: any[] | undefined;
620
- }>;
621
- handler: (params: any) => Promise<any>;
622
- };
623
- /**
624
- * @deprecated Use selectRegressionTests() from 'agentic-qe/handlers/prediction' instead
625
- * Will be removed in v3.0.0 (February 2026)
626
- * Migration guide: docs/migration/phase3-tools.md
627
- */
628
- export declare const regression_select_tests: {
629
- name: string;
630
- description: string;
631
- schema: z.ZodObject<{
632
- changedFiles: z.ZodArray<z.ZodString, "many">;
633
- testSuite: z.ZodArray<z.ZodString, "many">;
634
- maxTests: z.ZodOptional<z.ZodNumber>;
635
- strategy: z.ZodOptional<z.ZodEnum<["risk-based", "coverage-based", "hybrid"]>>;
636
- }, "strip", z.ZodTypeAny, {
637
- testSuite: string[];
638
- changedFiles: string[];
639
- strategy?: "hybrid" | "risk-based" | "coverage-based" | undefined;
640
- maxTests?: number | undefined;
641
- }, {
642
- testSuite: string[];
643
- changedFiles: string[];
644
- strategy?: "hybrid" | "risk-based" | "coverage-based" | undefined;
645
- maxTests?: number | undefined;
646
- }>;
647
- handler: (params: any) => Promise<any>;
648
- };
649
- /**
650
- * @deprecated Use requirementsValidate() from 'agentic-qe/handlers/advanced' instead
651
- * Will be removed in v3.0.0 (February 2026)
652
- * Migration guide: docs/migration/phase3-tools.md
653
- */
654
- export declare const requirements_validate: {
655
- name: string;
656
- description: string;
657
- schema: z.ZodObject<{
658
- requirements: z.ZodArray<z.ZodString, "many">;
659
- strictMode: z.ZodOptional<z.ZodBoolean>;
660
- generateTestSuggestions: z.ZodOptional<z.ZodBoolean>;
661
- }, "strip", z.ZodTypeAny, {
662
- requirements: string[];
663
- strictMode?: boolean | undefined;
664
- generateTestSuggestions?: boolean | undefined;
665
- }, {
666
- requirements: string[];
667
- strictMode?: boolean | undefined;
668
- generateTestSuggestions?: boolean | undefined;
669
- }>;
670
- handler: (params: any) => Promise<import("../types/advanced").RequirementsValidateResult>;
671
- };
672
- /**
673
- * @deprecated Use requirementsGenerateBDD() from 'agentic-qe/handlers/advanced' instead
674
- * Will be removed in v3.0.0 (February 2026)
675
- * Migration guide: docs/migration/phase3-tools.md
676
- */
677
- export declare const requirements_bdd: {
678
- name: string;
679
- description: string;
680
- schema: z.ZodObject<{
681
- requirement: z.ZodString;
682
- format: z.ZodOptional<z.ZodEnum<["gherkin", "cucumber", "jest-cucumber"]>>;
683
- includeEdgeCases: z.ZodOptional<z.ZodBoolean>;
684
- generateTestCode: z.ZodOptional<z.ZodBoolean>;
685
- }, "strip", z.ZodTypeAny, {
686
- requirement: string;
687
- format?: "gherkin" | "cucumber" | "jest-cucumber" | undefined;
688
- includeEdgeCases?: boolean | undefined;
689
- generateTestCode?: boolean | undefined;
690
- }, {
691
- requirement: string;
692
- format?: "gherkin" | "cucumber" | "jest-cucumber" | undefined;
693
- includeEdgeCases?: boolean | undefined;
694
- generateTestCode?: boolean | undefined;
695
- }>;
696
- handler: (params: any) => Promise<import("../types/advanced").RequirementsGenerateBDDResult>;
697
- };
698
- /**
699
- * @deprecated Use analyzeComplexity() from 'agentic-qe/tools/qe/code-quality' instead
700
- * Will be removed in v3.0.0 (February 2026)
701
- * Migration guide: docs/migration/phase3-tools.md
702
- */
703
- export declare const code_complexity_analyze: {
704
- name: string;
705
- description: string;
706
- schema: z.ZodObject<{
707
- sourceFiles: z.ZodArray<z.ZodString, "many">;
708
- metrics: z.ZodOptional<z.ZodArray<z.ZodEnum<["cyclomatic", "cognitive", "halstead", "maintainability"]>, "many">>;
709
- }, "strip", z.ZodTypeAny, {
710
- sourceFiles: string[];
711
- metrics?: ("maintainability" | "cyclomatic" | "cognitive" | "halstead")[] | undefined;
712
- }, {
713
- sourceFiles: string[];
714
- metrics?: ("maintainability" | "cyclomatic" | "cognitive" | "halstead")[] | undefined;
715
- }>;
716
- handler: (params: any) => Promise<any>;
717
- };
718
- /**
719
- * @deprecated Use calculateQualityMetrics() from 'agentic-qe/tools/qe/code-quality' instead
720
- * Will be removed in v3.0.0 (February 2026)
721
- * Migration guide: docs/migration/phase3-tools.md
722
- */
723
- export declare const code_quality_metrics: {
724
- name: string;
725
- description: string;
726
- schema: z.ZodObject<{
727
- projectPath: z.ZodString;
728
- includeTests: z.ZodOptional<z.ZodBoolean>;
729
- thresholds: z.ZodOptional<z.ZodAny>;
730
- }, "strip", z.ZodTypeAny, {
731
- projectPath: string;
732
- thresholds?: any;
733
- includeTests?: boolean | undefined;
734
- }, {
735
- projectPath: string;
736
- thresholds?: any;
737
- includeTests?: boolean | undefined;
738
- }>;
739
- handler: (params: any) => Promise<any>;
740
- };
741
- /**
742
- * @deprecated Use coordinateFleet() from 'agentic-qe/handlers/fleet' instead
743
- * Will be removed in v3.0.0 (February 2026)
744
- * Migration guide: docs/migration/phase3-tools.md
745
- */
746
- export declare const fleet_coordinate: {
747
- name: string;
748
- description: string;
749
- schema: z.ZodObject<{
750
- agents: z.ZodArray<z.ZodString, "many">;
751
- task: z.ZodString;
752
- strategy: z.ZodOptional<z.ZodEnum<["parallel", "sequential", "hierarchical"]>>;
753
- }, "strip", z.ZodTypeAny, {
754
- agents: string[];
755
- task: string;
756
- strategy?: "hierarchical" | "parallel" | "sequential" | undefined;
757
- }, {
758
- agents: string[];
759
- task: string;
760
- strategy?: "hierarchical" | "parallel" | "sequential" | undefined;
761
- }>;
762
- handler: (params: any) => Promise<any>;
763
- };
764
- /**
765
- * @deprecated Use getFleetStatus() from 'agentic-qe/handlers/fleet' instead
766
- * Will be removed in v3.0.0 (February 2026)
767
- * Migration guide: docs/migration/phase3-tools.md
768
- */
769
- export declare const fleet_status: {
770
- name: string;
771
- description: string;
772
- schema: z.ZodObject<{
773
- verbose: z.ZodOptional<z.ZodBoolean>;
774
- agentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
775
- }, "strip", z.ZodTypeAny, {
776
- verbose?: boolean | undefined;
777
- agentIds?: string[] | undefined;
778
- }, {
779
- verbose?: boolean | undefined;
780
- agentIds?: string[] | undefined;
781
- }>;
782
- handler: (params: any) => Promise<any>;
783
- };
784
- export declare const deprecatedTools: ({
785
- name: string;
786
- description: string;
787
- schema: z.ZodObject<{
788
- source_dirs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
789
- test_dirs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
790
- framework: z.ZodOptional<z.ZodEnum<["jest", "mocha", "vitest", "pytest"]>>;
791
- risk_threshold: z.ZodOptional<z.ZodNumber>;
792
- }, "strip", z.ZodTypeAny, {
793
- framework?: "jest" | "mocha" | "vitest" | "pytest" | undefined;
794
- source_dirs?: string[] | undefined;
795
- test_dirs?: string[] | undefined;
796
- risk_threshold?: number | undefined;
797
- }, {
798
- framework?: "jest" | "mocha" | "vitest" | "pytest" | undefined;
799
- source_dirs?: string[] | undefined;
800
- test_dirs?: string[] | undefined;
801
- risk_threshold?: number | undefined;
802
- }>;
803
- handler: (params: any) => Promise<import("./qe/coverage/analyze-with-risk-scoring").RiskScoringResult>;
804
- } | {
805
- name: string;
806
- description: string;
807
- schema: z.ZodObject<{
808
- source_dirs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
809
- coverage_threshold: z.ZodOptional<z.ZodNumber>;
810
- risk_factors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
811
- }, "strip", z.ZodTypeAny, {
812
- source_dirs?: string[] | undefined;
813
- coverage_threshold?: number | undefined;
814
- risk_factors?: string[] | undefined;
815
- }, {
816
- source_dirs?: string[] | undefined;
817
- coverage_threshold?: number | undefined;
818
- risk_factors?: string[] | undefined;
819
- }>;
820
- handler: (params: any) => Promise<import("./qe/coverage/detect-gaps-ml").MLGapDetectionResult>;
821
- } | {
822
- name: string;
823
- description: string;
824
- schema: z.ZodObject<{
825
- test_results_dir: z.ZodOptional<z.ZodString>;
826
- runs_threshold: z.ZodOptional<z.ZodNumber>;
827
- confidence_level: z.ZodOptional<z.ZodNumber>;
828
- }, "strip", z.ZodTypeAny, {
829
- test_results_dir?: string | undefined;
830
- runs_threshold?: number | undefined;
831
- confidence_level?: number | undefined;
832
- }, {
833
- test_results_dir?: string | undefined;
834
- runs_threshold?: number | undefined;
835
- confidence_level?: number | undefined;
836
- }>;
837
- handler: (params: any) => Promise<import("./qe/shared/types").QEToolResponse<import("./qe/flaky-detection/detect-statistical").StatisticalDetectionResult>>;
838
- } | {
839
- name: string;
840
- description: string;
841
- schema: z.ZodObject<{
842
- test_results_dir: z.ZodOptional<z.ZodString>;
843
- pattern_types: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
844
- }, "strip", z.ZodTypeAny, {
845
- test_results_dir?: string | undefined;
846
- pattern_types?: string[] | undefined;
847
- }, {
848
- test_results_dir?: string | undefined;
849
- pattern_types?: string[] | undefined;
850
- }>;
851
- handler: (params: any) => Promise<import("./qe/shared/types").QEToolResponse<import("./qe/flaky-detection/analyze-patterns").PatternAnalysisResult>>;
852
- } | {
853
- name: string;
854
- description: string;
855
- schema: z.ZodObject<{
856
- test_file: z.ZodString;
857
- flaky_test_name: z.ZodString;
858
- stabilization_strategy: z.ZodOptional<z.ZodEnum<["retry", "timeout", "isolation", "auto"]>>;
859
- }, "strip", z.ZodTypeAny, {
860
- test_file: string;
861
- flaky_test_name: string;
862
- stabilization_strategy?: "timeout" | "isolation" | "auto" | "retry" | undefined;
863
- }, {
864
- test_file: string;
865
- flaky_test_name: string;
866
- stabilization_strategy?: "timeout" | "isolation" | "auto" | "retry" | undefined;
867
- }>;
868
- handler: (params: any) => Promise<import("./qe/shared/types").QEToolResponse<import("./qe/flaky-detection/stabilize-auto").StabilizationResult>>;
869
- } | {
870
- name: string;
871
- description: string;
872
- schema: z.ZodObject<{
873
- target: z.ZodOptional<z.ZodString>;
874
- duration: z.ZodOptional<z.ZodNumber>;
875
- concurrency: z.ZodOptional<z.ZodNumber>;
876
- tool: z.ZodOptional<z.ZodEnum<["k6", "jmeter", "gatling", "artillery"]>>;
877
- }, "strip", z.ZodTypeAny, {
878
- concurrency?: number | undefined;
879
- duration?: number | undefined;
880
- tool?: "k6" | "jmeter" | "gatling" | "artillery" | undefined;
881
- target?: string | undefined;
882
- }, {
883
- concurrency?: number | undefined;
884
- duration?: number | undefined;
885
- tool?: "k6" | "jmeter" | "gatling" | "artillery" | undefined;
886
- target?: string | undefined;
887
- }>;
888
- handler: (params: any) => Promise<import("./qe/performance/run-benchmark").BenchmarkResult>;
889
- } | {
890
- name: string;
891
- description: string;
892
- schema: z.ZodObject<{
893
- target: z.ZodOptional<z.ZodString>;
894
- metrics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
895
- interval: z.ZodOptional<z.ZodNumber>;
896
- duration: z.ZodOptional<z.ZodNumber>;
897
- }, "strip", z.ZodTypeAny, {
898
- metrics?: string[] | undefined;
899
- interval?: number | undefined;
900
- duration?: number | undefined;
901
- target?: string | undefined;
902
- }, {
903
- metrics?: string[] | undefined;
904
- interval?: number | undefined;
905
- duration?: number | undefined;
906
- target?: string | undefined;
907
- }>;
908
- handler: (params: any) => Promise<import("./qe/performance/monitor-realtime").RealtimeMonitoringResult>;
909
- } | {
910
- name: string;
911
- description: string;
912
- schema: z.ZodObject<{
913
- targets: z.ZodArray<z.ZodString, "many">;
914
- scanTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["sast", "dast", "sca", "secrets", "dependencies"]>, "many">>;
915
- severity: z.ZodOptional<z.ZodArray<z.ZodEnum<["critical", "high", "medium", "low"]>, "many">>;
916
- includeCompliance: z.ZodOptional<z.ZodBoolean>;
917
- fixSuggestions: z.ZodOptional<z.ZodBoolean>;
918
- }, "strip", z.ZodTypeAny, {
919
- targets: string[];
920
- severity?: ("low" | "medium" | "high" | "critical")[] | undefined;
921
- scanTypes?: ("dependencies" | "sast" | "dast" | "sca" | "secrets")[] | undefined;
922
- includeCompliance?: boolean | undefined;
923
- fixSuggestions?: boolean | undefined;
924
- }, {
925
- targets: string[];
926
- severity?: ("low" | "medium" | "high" | "critical")[] | undefined;
927
- scanTypes?: ("dependencies" | "sast" | "dast" | "sca" | "secrets")[] | undefined;
928
- includeCompliance?: boolean | undefined;
929
- fixSuggestions?: boolean | undefined;
930
- }>;
931
- handler: (params: any) => Promise<import("../handlers/security/scan-comprehensive").SecurityScanComprehensiveResult>;
932
- } | {
933
- name: string;
934
- description: string;
935
- schema: z.ZodObject<{
936
- endpoints: z.ZodArray<z.ZodString, "many">;
937
- authType: z.ZodOptional<z.ZodEnum<["jwt", "oauth2", "basic", "api-key", "custom"]>>;
938
- includeTokenValidation: z.ZodOptional<z.ZodBoolean>;
939
- testNegativeCases: z.ZodOptional<z.ZodBoolean>;
940
- }, "strip", z.ZodTypeAny, {
941
- endpoints: string[];
942
- authType?: "custom" | "basic" | "jwt" | "oauth2" | "api-key" | undefined;
943
- includeTokenValidation?: boolean | undefined;
944
- testNegativeCases?: boolean | undefined;
945
- }, {
946
- endpoints: string[];
947
- authType?: "custom" | "basic" | "jwt" | "oauth2" | "api-key" | undefined;
948
- includeTokenValidation?: boolean | undefined;
949
- testNegativeCases?: boolean | undefined;
950
- }>;
951
- handler: (params: any) => Promise<import("../handlers/security/validate-auth").AuthValidationResult>;
952
- } | {
953
- name: string;
954
- description: string;
955
- schema: z.ZodObject<{
956
- policies: z.ZodArray<z.ZodAny, "many">;
957
- testCases: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
958
- validateRBAC: z.ZodOptional<z.ZodBoolean>;
959
- validateABAC: z.ZodOptional<z.ZodBoolean>;
960
- }, "strip", z.ZodTypeAny, {
961
- policies: any[];
962
- testCases?: any[] | undefined;
963
- validateRBAC?: boolean | undefined;
964
- validateABAC?: boolean | undefined;
965
- }, {
966
- policies: any[];
967
- testCases?: any[] | undefined;
968
- validateRBAC?: boolean | undefined;
969
- validateABAC?: boolean | undefined;
970
- }>;
971
- handler: (params: any) => Promise<import("../handlers/security/check-authz").AuthzCheckResult>;
972
- } | {
973
- name: string;
974
- description: string;
975
- schema: z.ZodObject<{
976
- sourceCode: z.ZodString;
977
- language: z.ZodEnum<["typescript", "javascript", "python", "java", "go"]>;
978
- framework: z.ZodEnum<["jest", "mocha", "pytest", "junit", "testing"]>;
979
- coverageGoal: z.ZodOptional<z.ZodNumber>;
980
- aiEnhanced: z.ZodOptional<z.ZodBoolean>;
981
- includeEdgeCases: z.ZodOptional<z.ZodBoolean>;
982
- }, "strip", z.ZodTypeAny, {
983
- framework: "jest" | "mocha" | "testing" | "pytest" | "junit";
984
- language: "typescript" | "javascript" | "python" | "java" | "go";
985
- sourceCode: string;
986
- coverageGoal?: number | undefined;
987
- includeEdgeCases?: boolean | undefined;
988
- aiEnhanced?: boolean | undefined;
989
- }, {
990
- framework: "jest" | "mocha" | "testing" | "pytest" | "junit";
991
- language: "typescript" | "javascript" | "python" | "java" | "go";
992
- sourceCode: string;
993
- coverageGoal?: number | undefined;
994
- includeEdgeCases?: boolean | undefined;
995
- aiEnhanced?: boolean | undefined;
996
- }>;
997
- handler: (params: any) => Promise<import("../handlers/test/generate-unit-tests").GenerateUnitTestsResult>;
998
- } | {
999
- name: string;
1000
- description: string;
1001
- schema: z.ZodObject<{
1002
- apiSpec: z.ZodOptional<z.ZodString>;
1003
- endpoints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1004
- framework: z.ZodOptional<z.ZodEnum<["supertest", "axios", "pact", "rest-assured"]>>;
1005
- includeContractTests: z.ZodOptional<z.ZodBoolean>;
1006
- includeDatabaseTests: z.ZodOptional<z.ZodBoolean>;
1007
- }, "strip", z.ZodTypeAny, {
1008
- framework?: "supertest" | "axios" | "pact" | "rest-assured" | undefined;
1009
- apiSpec?: string | undefined;
1010
- endpoints?: string[] | undefined;
1011
- includeContractTests?: boolean | undefined;
1012
- includeDatabaseTests?: boolean | undefined;
1013
- }, {
1014
- framework?: "supertest" | "axios" | "pact" | "rest-assured" | undefined;
1015
- apiSpec?: string | undefined;
1016
- endpoints?: string[] | undefined;
1017
- includeContractTests?: boolean | undefined;
1018
- includeDatabaseTests?: boolean | undefined;
1019
- }>;
1020
- handler: (params: any) => Promise<import("../handlers/test/generate-integration-tests").GenerateIntegrationTestsResult>;
1021
- } | {
1022
- name: string;
1023
- description: string;
1024
- schema: z.ZodObject<{
1025
- testDirectory: z.ZodString;
1026
- framework: z.ZodOptional<z.ZodEnum<["jest", "mocha", "vitest", "pytest"]>>;
1027
- targetCoverage: z.ZodOptional<z.ZodNumber>;
1028
- removeDuplicates: z.ZodOptional<z.ZodBoolean>;
1029
- parallelizeTests: z.ZodOptional<z.ZodBoolean>;
1030
- }, "strip", z.ZodTypeAny, {
1031
- testDirectory: string;
1032
- framework?: "jest" | "mocha" | "vitest" | "pytest" | undefined;
1033
- targetCoverage?: number | undefined;
1034
- removeDuplicates?: boolean | undefined;
1035
- parallelizeTests?: boolean | undefined;
1036
- }, {
1037
- testDirectory: string;
1038
- framework?: "jest" | "mocha" | "vitest" | "pytest" | undefined;
1039
- targetCoverage?: number | undefined;
1040
- removeDuplicates?: boolean | undefined;
1041
- parallelizeTests?: boolean | undefined;
1042
- }>;
1043
- handler: (params: any) => Promise<import("../handlers/test/optimize-test-suite").OptimizeTestSuiteResult>;
1044
- } | {
1045
- name: string;
1046
- description: string;
1047
- schema: z.ZodObject<{
1048
- projectId: z.ZodString;
1049
- buildId: z.ZodString;
1050
- environment: z.ZodEnum<["development", "staging", "production"]>;
1051
- metrics: z.ZodAny;
1052
- policy: z.ZodOptional<z.ZodAny>;
1053
- }, "strip", z.ZodTypeAny, {
1054
- environment: "development" | "staging" | "production";
1055
- projectId: string;
1056
- buildId: string;
1057
- metrics?: any;
1058
- policy?: any;
1059
- }, {
1060
- environment: "development" | "staging" | "production";
1061
- projectId: string;
1062
- buildId: string;
1063
- metrics?: any;
1064
- policy?: any;
1065
- }>;
1066
- handler: (params: any) => Promise<never>;
1067
- } | {
1068
- name: string;
1069
- description: string;
1070
- schema: z.ZodObject<{
1071
- changes: z.ZodArray<z.ZodAny, "many">;
1072
- metrics: z.ZodAny;
1073
- historicalData: z.ZodOptional<z.ZodAny>;
1074
- deploymentTarget: z.ZodOptional<z.ZodString>;
1075
- }, "strip", z.ZodTypeAny, {
1076
- changes: any[];
1077
- metrics?: any;
1078
- historicalData?: any;
1079
- deploymentTarget?: string | undefined;
1080
- }, {
1081
- changes: any[];
1082
- metrics?: any;
1083
- historicalData?: any;
1084
- deploymentTarget?: string | undefined;
1085
- }>;
1086
- handler: (params: any) => Promise<never>;
1087
- } | {
1088
- name: string;
1089
- description: string;
1090
- schema: z.ZodObject<{
1091
- metrics: z.ZodAny;
1092
- thresholds: z.ZodAny;
1093
- validateTrends: z.ZodOptional<z.ZodBoolean>;
1094
- includeHistorical: z.ZodOptional<z.ZodBoolean>;
1095
- }, "strip", z.ZodTypeAny, {
1096
- metrics?: any;
1097
- thresholds?: any;
1098
- validateTrends?: boolean | undefined;
1099
- includeHistorical?: boolean | undefined;
1100
- }, {
1101
- metrics?: any;
1102
- thresholds?: any;
1103
- validateTrends?: boolean | undefined;
1104
- includeHistorical?: boolean | undefined;
1105
- }>;
1106
- handler: (params: any) => Promise<never>;
1107
- } | {
1108
- name: string;
1109
- description: string;
1110
- schema: z.ZodObject<{
1111
- baseline_dir: z.ZodOptional<z.ZodString>;
1112
- current_dir: z.ZodOptional<z.ZodString>;
1113
- threshold: z.ZodOptional<z.ZodNumber>;
1114
- ai_analysis: z.ZodOptional<z.ZodBoolean>;
1115
- }, "strip", z.ZodTypeAny, {
1116
- threshold?: number | undefined;
1117
- baseline_dir?: string | undefined;
1118
- current_dir?: string | undefined;
1119
- ai_analysis?: boolean | undefined;
1120
- }, {
1121
- threshold?: number | undefined;
1122
- baseline_dir?: string | undefined;
1123
- current_dir?: string | undefined;
1124
- ai_analysis?: boolean | undefined;
1125
- }>;
1126
- handler: (params: any) => Promise<never>;
1127
- } | {
1128
- name: string;
1129
- description: string;
1130
- schema: z.ZodObject<{
1131
- providerContract: z.ZodString;
1132
- consumerContract: z.ZodString;
1133
- strictMode: z.ZodOptional<z.ZodBoolean>;
1134
- }, "strip", z.ZodTypeAny, {
1135
- providerContract: string;
1136
- consumerContract: string;
1137
- strictMode?: boolean | undefined;
1138
- }, {
1139
- providerContract: string;
1140
- consumerContract: string;
1141
- strictMode?: boolean | undefined;
1142
- }>;
1143
- handler: (params: any) => Promise<import("../types/integration").ContractValidateResult>;
1144
- } | {
1145
- name: string;
1146
- description: string;
1147
- schema: z.ZodObject<{
1148
- oldAPI: z.ZodString;
1149
- newAPI: z.ZodString;
1150
- language: z.ZodOptional<z.ZodEnum<["typescript", "javascript", "openapi"]>>;
1151
- calculateSemver: z.ZodOptional<z.ZodBoolean>;
1152
- }, "strip", z.ZodTypeAny, {
1153
- oldAPI: string;
1154
- newAPI: string;
1155
- language?: "typescript" | "javascript" | "openapi" | undefined;
1156
- calculateSemver?: boolean | undefined;
1157
- }, {
1158
- oldAPI: string;
1159
- newAPI: string;
1160
- language?: "typescript" | "javascript" | "openapi" | undefined;
1161
- calculateSemver?: boolean | undefined;
1162
- }>;
1163
- handler: (params: any) => Promise<import("../types/advanced").APIBreakingChangesResult>;
1164
- } | {
1165
- name: string;
1166
- description: string;
1167
- schema: z.ZodObject<{
1168
- versions: z.ZodArray<z.ZodString, "many">;
1169
- contracts: z.ZodArray<z.ZodAny, "many">;
1170
- checkBackwardCompatibility: z.ZodOptional<z.ZodBoolean>;
1171
- }, "strip", z.ZodTypeAny, {
1172
- contracts: any[];
1173
- versions: string[];
1174
- checkBackwardCompatibility?: boolean | undefined;
1175
- }, {
1176
- contracts: any[];
1177
- versions: string[];
1178
- checkBackwardCompatibility?: boolean | undefined;
1179
- }>;
1180
- handler: (params: any) => Promise<any>;
1181
- } | {
1182
- name: string;
1183
- description: string;
1184
- schema: z.ZodObject<{
1185
- schema: z.ZodAny;
1186
- count: z.ZodOptional<z.ZodNumber>;
1187
- locale: z.ZodOptional<z.ZodString>;
1188
- seed: z.ZodOptional<z.ZodNumber>;
1189
- }, "strip", z.ZodTypeAny, {
1190
- count?: number | undefined;
1191
- schema?: any;
1192
- seed?: number | undefined;
1193
- locale?: string | undefined;
1194
- }, {
1195
- count?: number | undefined;
1196
- schema?: any;
1197
- seed?: number | undefined;
1198
- locale?: string | undefined;
1199
- }>;
1200
- handler: (params: any) => Promise<any>;
1201
- } | {
1202
- name: string;
1203
- description: string;
1204
- schema: z.ZodObject<{
1205
- data: z.ZodAny;
1206
- fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1207
- maskingStrategy: z.ZodOptional<z.ZodEnum<["redact", "hash", "tokenize", "shuffle"]>>;
1208
- }, "strip", z.ZodTypeAny, {
1209
- data?: any;
1210
- fields?: string[] | undefined;
1211
- maskingStrategy?: "hash" | "tokenize" | "redact" | "shuffle" | undefined;
1212
- }, {
1213
- data?: any;
1214
- fields?: string[] | undefined;
1215
- maskingStrategy?: "hash" | "tokenize" | "redact" | "shuffle" | undefined;
1216
- }>;
1217
- handler: (params: any) => Promise<any>;
1218
- } | {
1219
- name: string;
1220
- description: string;
1221
- schema: z.ZodObject<{
1222
- data: z.ZodAny;
1223
- schema: z.ZodAny;
1224
- strictMode: z.ZodOptional<z.ZodBoolean>;
1225
- }, "strip", z.ZodTypeAny, {
1226
- data?: any;
1227
- schema?: any;
1228
- strictMode?: boolean | undefined;
1229
- }, {
1230
- data?: any;
1231
- schema?: any;
1232
- strictMode?: boolean | undefined;
1233
- }>;
1234
- handler: (params: any) => Promise<any>;
1235
- } | {
1236
- name: string;
1237
- description: string;
1238
- schema: z.ZodObject<{
1239
- changedFiles: z.ZodArray<z.ZodString, "many">;
1240
- commitHistory: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
1241
- testHistory: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
1242
- }, "strip", z.ZodTypeAny, {
1243
- changedFiles: string[];
1244
- commitHistory?: any[] | undefined;
1245
- testHistory?: any[] | undefined;
1246
- }, {
1247
- changedFiles: string[];
1248
- commitHistory?: any[] | undefined;
1249
- testHistory?: any[] | undefined;
1250
- }>;
1251
- handler: (params: any) => Promise<any>;
1252
- } | {
1253
- name: string;
1254
- description: string;
1255
- schema: z.ZodObject<{
1256
- changedFiles: z.ZodArray<z.ZodString, "many">;
1257
- testSuite: z.ZodArray<z.ZodString, "many">;
1258
- maxTests: z.ZodOptional<z.ZodNumber>;
1259
- strategy: z.ZodOptional<z.ZodEnum<["risk-based", "coverage-based", "hybrid"]>>;
1260
- }, "strip", z.ZodTypeAny, {
1261
- testSuite: string[];
1262
- changedFiles: string[];
1263
- strategy?: "hybrid" | "risk-based" | "coverage-based" | undefined;
1264
- maxTests?: number | undefined;
1265
- }, {
1266
- testSuite: string[];
1267
- changedFiles: string[];
1268
- strategy?: "hybrid" | "risk-based" | "coverage-based" | undefined;
1269
- maxTests?: number | undefined;
1270
- }>;
1271
- handler: (params: any) => Promise<any>;
1272
- } | {
1273
- name: string;
1274
- description: string;
1275
- schema: z.ZodObject<{
1276
- requirements: z.ZodArray<z.ZodString, "many">;
1277
- strictMode: z.ZodOptional<z.ZodBoolean>;
1278
- generateTestSuggestions: z.ZodOptional<z.ZodBoolean>;
1279
- }, "strip", z.ZodTypeAny, {
1280
- requirements: string[];
1281
- strictMode?: boolean | undefined;
1282
- generateTestSuggestions?: boolean | undefined;
1283
- }, {
1284
- requirements: string[];
1285
- strictMode?: boolean | undefined;
1286
- generateTestSuggestions?: boolean | undefined;
1287
- }>;
1288
- handler: (params: any) => Promise<import("../types/advanced").RequirementsValidateResult>;
1289
- } | {
1290
- name: string;
1291
- description: string;
1292
- schema: z.ZodObject<{
1293
- requirement: z.ZodString;
1294
- format: z.ZodOptional<z.ZodEnum<["gherkin", "cucumber", "jest-cucumber"]>>;
1295
- includeEdgeCases: z.ZodOptional<z.ZodBoolean>;
1296
- generateTestCode: z.ZodOptional<z.ZodBoolean>;
1297
- }, "strip", z.ZodTypeAny, {
1298
- requirement: string;
1299
- format?: "gherkin" | "cucumber" | "jest-cucumber" | undefined;
1300
- includeEdgeCases?: boolean | undefined;
1301
- generateTestCode?: boolean | undefined;
1302
- }, {
1303
- requirement: string;
1304
- format?: "gherkin" | "cucumber" | "jest-cucumber" | undefined;
1305
- includeEdgeCases?: boolean | undefined;
1306
- generateTestCode?: boolean | undefined;
1307
- }>;
1308
- handler: (params: any) => Promise<import("../types/advanced").RequirementsGenerateBDDResult>;
1309
- } | {
1310
- name: string;
1311
- description: string;
1312
- schema: z.ZodObject<{
1313
- sourceFiles: z.ZodArray<z.ZodString, "many">;
1314
- metrics: z.ZodOptional<z.ZodArray<z.ZodEnum<["cyclomatic", "cognitive", "halstead", "maintainability"]>, "many">>;
1315
- }, "strip", z.ZodTypeAny, {
1316
- sourceFiles: string[];
1317
- metrics?: ("maintainability" | "cyclomatic" | "cognitive" | "halstead")[] | undefined;
1318
- }, {
1319
- sourceFiles: string[];
1320
- metrics?: ("maintainability" | "cyclomatic" | "cognitive" | "halstead")[] | undefined;
1321
- }>;
1322
- handler: (params: any) => Promise<any>;
1323
- } | {
1324
- name: string;
1325
- description: string;
1326
- schema: z.ZodObject<{
1327
- projectPath: z.ZodString;
1328
- includeTests: z.ZodOptional<z.ZodBoolean>;
1329
- thresholds: z.ZodOptional<z.ZodAny>;
1330
- }, "strip", z.ZodTypeAny, {
1331
- projectPath: string;
1332
- thresholds?: any;
1333
- includeTests?: boolean | undefined;
1334
- }, {
1335
- projectPath: string;
1336
- thresholds?: any;
1337
- includeTests?: boolean | undefined;
1338
- }>;
1339
- handler: (params: any) => Promise<any>;
1340
- } | {
1341
- name: string;
1342
- description: string;
1343
- schema: z.ZodObject<{
1344
- agents: z.ZodArray<z.ZodString, "many">;
1345
- task: z.ZodString;
1346
- strategy: z.ZodOptional<z.ZodEnum<["parallel", "sequential", "hierarchical"]>>;
1347
- }, "strip", z.ZodTypeAny, {
1348
- agents: string[];
1349
- task: string;
1350
- strategy?: "hierarchical" | "parallel" | "sequential" | undefined;
1351
- }, {
1352
- agents: string[];
1353
- task: string;
1354
- strategy?: "hierarchical" | "parallel" | "sequential" | undefined;
1355
- }>;
1356
- handler: (params: any) => Promise<any>;
1357
- } | {
1358
- name: string;
1359
- description: string;
1360
- schema: z.ZodObject<{
1361
- verbose: z.ZodOptional<z.ZodBoolean>;
1362
- agentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1363
- }, "strip", z.ZodTypeAny, {
1364
- verbose?: boolean | undefined;
1365
- agentIds?: string[] | undefined;
1366
- }, {
1367
- verbose?: boolean | undefined;
1368
- agentIds?: string[] | undefined;
1369
- }>;
1370
- handler: (params: any) => Promise<any>;
1371
- })[];
1372
- /**
1373
- * Get deprecation info for a tool
1374
- */
1375
- export declare function getDeprecationInfo(toolName: string): {
1376
- isDeprecated: boolean;
1377
- newName?: string;
1378
- domain?: string;
1379
- removalVersion?: string;
1380
- };
1381
- /**
1382
- * List all deprecated tools
1383
- */
1384
- export declare function listDeprecatedTools(): Array<{
1385
- oldName: string;
1386
- newName: string;
1387
- domain: string;
1388
- removalVersion: string;
1389
- }>;
1390
- //# sourceMappingURL=deprecated.d.ts.map