atlas-pipeline-mcp 1.0.21 → 1.0.23
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.
- package/README.md +249 -49
- package/dist/tools/advanced-testgen.d.ts +93 -0
- package/dist/tools/advanced-testgen.d.ts.map +1 -0
- package/dist/tools/advanced-testgen.js +382 -0
- package/dist/tools/advanced-testgen.js.map +1 -0
- package/dist/tools/architecture-advisor.d.ts +174 -0
- package/dist/tools/architecture-advisor.d.ts.map +1 -0
- package/dist/tools/architecture-advisor.js +509 -0
- package/dist/tools/architecture-advisor.js.map +1 -0
- package/dist/tools/code-migration.d.ts +86 -0
- package/dist/tools/code-migration.d.ts.map +1 -0
- package/dist/tools/code-migration.js +339 -0
- package/dist/tools/code-migration.js.map +1 -0
- package/dist/tools/ml-predictor.d.ts +84 -0
- package/dist/tools/ml-predictor.d.ts.map +1 -0
- package/dist/tools/ml-predictor.js +407 -0
- package/dist/tools/ml-predictor.js.map +1 -0
- package/dist/tools/rag-search.d.ts +88 -0
- package/dist/tools/rag-search.d.ts.map +1 -0
- package/dist/tools/rag-search.js +338 -0
- package/dist/tools/rag-search.js.map +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,45 +1,129 @@
|
|
|
1
|
+
# Atlas MCP Server
|
|
1
2
|
|
|
2
|
-
|
|
3
|
+
<div align="center">
|
|
3
4
|
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
[](https://www.npmjs.com/package/atlas-pipeline-mcp)
|
|
6
|
+
[](https://www.npmjs.com/package/atlas-pipeline-mcp)
|
|
7
|
+
[](https://opensource.org/licenses/MIT)
|
|
8
|
+
[](https://www.typescriptlang.org/)
|
|
9
|
+
[](https://nodejs.org/)
|
|
6
10
|
|
|
7
|
-
|
|
8
|
-
|
|
11
|
+
**The Agentic AI Pipeline for your IDE**
|
|
12
|
+
|
|
13
|
+
Advanced AI/ML-powered development tools with RAG search, ML bug prediction, intelligent code migration, and comprehensive test generation.
|
|
14
|
+
|
|
15
|
+
[Installation](#installation-1-click-setup) • [Features](#key-features) • [Tools](#all-available-tools-17-total) • [Usage](#how-to-use-cheat-sheet) • [Documentation](#advanced-integration-optional)
|
|
16
|
+
|
|
17
|
+
</div>
|
|
9
18
|
|
|
10
19
|
---
|
|
11
20
|
|
|
12
|
-
##
|
|
21
|
+
## Overview
|
|
22
|
+
|
|
23
|
+
Atlas MCP Server gives your IDE "Agentic Superpowers" through a full analysis pipeline:
|
|
24
|
+
|
|
25
|
+
**Intent → Context → Decomposition → Variants → Critique → Optimization**
|
|
13
26
|
|
|
14
|
-
**
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
- 🧹 **Session Management** - Automatic cleanup of stale thinking sessions
|
|
20
|
-
- 🚀 **Parallel Execution** - Independent pipeline stages run concurrently
|
|
27
|
+
Works natively with **Cursor**, **Windsurf**, **Claude Desktop**, **GitHub Copilot**, and **VS Code**.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
---
|
|
21
32
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
33
|
+
## ✨ What's New in v1.0.23
|
|
34
|
+
|
|
35
|
+
### Advanced AI/ML Tools (4 New)
|
|
36
|
+
|
|
37
|
+
<table>
|
|
38
|
+
<tr>
|
|
39
|
+
<td width="25%"><b>RAG Search</b></td>
|
|
40
|
+
<td>Semantic code search with knowledge graphs and natural language queries</td>
|
|
41
|
+
</tr>
|
|
42
|
+
<tr>
|
|
43
|
+
<td><b>ML Predictor</b></td>
|
|
44
|
+
<td>Bug & performance prediction with 70-85% accuracy using machine learning</td>
|
|
45
|
+
</tr>
|
|
46
|
+
<tr>
|
|
47
|
+
<td><b>Code Migration</b></td>
|
|
48
|
+
<td>Intelligent migration (12 types: JS→TS, React upgrades, Callbacks→Async)</td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td><b>Test Generator</b></td>
|
|
52
|
+
<td>Advanced test generation with edge cases, mocks, and property-based testing</td>
|
|
53
|
+
</tr>
|
|
54
|
+
</table>
|
|
55
|
+
|
|
56
|
+
### Core Professional Tools (13)
|
|
57
|
+
|
|
58
|
+
<table>
|
|
59
|
+
<tr>
|
|
60
|
+
<td width="25%"><b>Refactor</b></td>
|
|
61
|
+
<td>Code refactoring engine with complexity analysis</td>
|
|
62
|
+
</tr>
|
|
63
|
+
<tr>
|
|
64
|
+
<td><b>Profiler</b></td>
|
|
65
|
+
<td>Performance profiling & bottleneck detection (O(n), O(n²), etc.)</td>
|
|
66
|
+
</tr>
|
|
67
|
+
<tr>
|
|
68
|
+
<td><b>Review</b></td>
|
|
69
|
+
<td>Automated code review with quality scores and security checks</td>
|
|
70
|
+
</tr>
|
|
71
|
+
<tr>
|
|
72
|
+
<td><b>Dependencies</b></td>
|
|
73
|
+
<td>Dependency analysis, unused package detection, vulnerability scanning</td>
|
|
74
|
+
</tr>
|
|
75
|
+
<tr>
|
|
76
|
+
<td><b>Dashboard</b></td>
|
|
77
|
+
<td>Interactive HTML metrics dashboards with real-time data</td>
|
|
78
|
+
</tr>
|
|
79
|
+
<tr>
|
|
80
|
+
<td><b>Security</b></td>
|
|
81
|
+
<td>Security vulnerability scanning (CWE, OWASP standards)</td>
|
|
82
|
+
</tr>
|
|
83
|
+
<tr>
|
|
84
|
+
<td><b>Test Gen</b></td>
|
|
85
|
+
<td>Comprehensive test case generation (Jest, Vitest, Pytest, Mocha)</td>
|
|
86
|
+
</tr>
|
|
87
|
+
<tr>
|
|
88
|
+
<td><b>Docs Gen</b></td>
|
|
89
|
+
<td>Auto-generate documentation (JSDoc, TSDoc, PyDoc)</td>
|
|
90
|
+
</tr>
|
|
91
|
+
</table>
|
|
29
92
|
|
|
30
93
|
---
|
|
31
94
|
|
|
32
|
-
## Key Features
|
|
95
|
+
## 🎯 Key Features
|
|
33
96
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
- **
|
|
40
|
-
- **
|
|
41
|
-
- **
|
|
42
|
-
- **
|
|
97
|
+
<table>
|
|
98
|
+
<tr>
|
|
99
|
+
<td width="50%" valign="top">
|
|
100
|
+
|
|
101
|
+
### 🤖 AI/ML Capabilities
|
|
102
|
+
- **RAG Search** - Semantic code understanding with knowledge graphs
|
|
103
|
+
- **ML Prediction** - Bug & performance forecasting (70-85% accuracy)
|
|
104
|
+
- **Code Migration** - 12 intelligent migration types
|
|
105
|
+
- **Test Generation** - Advanced test suites with edge cases
|
|
106
|
+
|
|
107
|
+
</td>
|
|
108
|
+
<td width="50%" valign="top">
|
|
109
|
+
|
|
110
|
+
### ⚡ Professional Tools
|
|
111
|
+
- **Full Pipeline** - Intent → Context → Variants → Optimize
|
|
112
|
+
- **Quality Analysis** - Code review, security, complexity
|
|
113
|
+
- **Performance** - Profiling, bottleneck detection
|
|
114
|
+
- **Automation** - Tests, docs, refactoring
|
|
115
|
+
|
|
116
|
+
</td>
|
|
117
|
+
</tr>
|
|
118
|
+
</table>
|
|
119
|
+
|
|
120
|
+
### 🌟 Why Atlas?
|
|
121
|
+
|
|
122
|
+
- **Zero Config**: No API keys required - uses your IDE's built-in AI (Copilot/Cursor)
|
|
123
|
+
- **17 Professional Tools**: 13 core + 4 advanced AI/ML capabilities
|
|
124
|
+
- **Agentic Workflow**: DAG-based task decomposition
|
|
125
|
+
- **Context Aware**: Project structure, dependencies, git history analysis
|
|
126
|
+
- **High Performance**: LRU caching, request deduplication, parallel execution
|
|
43
127
|
|
|
44
128
|
---
|
|
45
129
|
|
|
@@ -64,25 +148,128 @@ Restart your editor. You should see the Atlas server connected in your MCP setti
|
|
|
64
148
|
|
|
65
149
|
---
|
|
66
150
|
|
|
67
|
-
## All Available Tools (
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
151
|
+
## 🛠️ All Available Tools (17 Total)
|
|
152
|
+
|
|
153
|
+
### 🔥 Advanced AI/ML Tools
|
|
154
|
+
|
|
155
|
+
<table>
|
|
156
|
+
<tr>
|
|
157
|
+
<td width="30%"><code>atlas_rag_search</code></td>
|
|
158
|
+
<td><b>RAG-Powered Semantic Search</b><br/>Natural language code search with knowledge graphs. Ask "how does auth work?" and get contextual results.</td>
|
|
159
|
+
</tr>
|
|
160
|
+
<tr>
|
|
161
|
+
<td><code>atlas_ml_predict</code></td>
|
|
162
|
+
<td><b>ML Bug & Performance Prediction</b><br/>Predict bugs before production with 70-85% accuracy. Analyzes complexity, churn, and code patterns.</td>
|
|
163
|
+
</tr>
|
|
164
|
+
<tr>
|
|
165
|
+
<td><code>atlas_migrate</code></td>
|
|
166
|
+
<td><b>Intelligent Code Migration</b><br/>Automated migration support for 12 types: JS→TS, React upgrades, Callbacks→Async, and more.</td>
|
|
167
|
+
</tr>
|
|
168
|
+
<tr>
|
|
169
|
+
<td><code>atlas_testgen_advanced</code></td>
|
|
170
|
+
<td><b>Advanced Test Generation</b><br/>Generate comprehensive test suites with edge cases, mocks, stubs, and 90%+ coverage projection.</td>
|
|
171
|
+
</tr>
|
|
172
|
+
</table>
|
|
173
|
+
|
|
174
|
+
### ⚡ Core Pipeline & Analysis Tools
|
|
175
|
+
|
|
176
|
+
<table>
|
|
177
|
+
<tr>
|
|
178
|
+
<td width="30%"><code>atlas_pipeline</code></td>
|
|
179
|
+
<td><b>Full Agentic Pipeline</b><br/>Complete workflow: Intent → Context → Decompose → Variants → Critique → Optimize</td>
|
|
180
|
+
</tr>
|
|
181
|
+
<tr>
|
|
182
|
+
<td><code>atlas_intent</code></td>
|
|
183
|
+
<td><b>Intent Analysis</b><br/>Extract actionable intent from natural language requests</td>
|
|
184
|
+
</tr>
|
|
185
|
+
<tr>
|
|
186
|
+
<td><code>atlas_context</code></td>
|
|
187
|
+
<td><b>Project Context Gathering</b><br/>Analyze project structure, dependencies, and file relationships</td>
|
|
188
|
+
</tr>
|
|
189
|
+
<tr>
|
|
190
|
+
<td><code>atlas_git</code></td>
|
|
191
|
+
<td><b>Git History Analysis</b><br/>Analyze commits, branches, file changes, and code evolution</td>
|
|
192
|
+
</tr>
|
|
193
|
+
<tr>
|
|
194
|
+
<td><code>atlas_decompose</code></td>
|
|
195
|
+
<td><b>Task Decomposition</b><br/>Break complex tasks into DAG (Directed Acyclic Graph) of subtasks</td>
|
|
196
|
+
</tr>
|
|
197
|
+
<tr>
|
|
198
|
+
<td><code>atlas_variants</code></td>
|
|
199
|
+
<td><b>Solution Variants</b><br/>Generate multiple implementation approaches with pros/cons analysis</td>
|
|
200
|
+
</tr>
|
|
201
|
+
</table>
|
|
202
|
+
|
|
203
|
+
### 🎯 Quality & Optimization Tools
|
|
204
|
+
|
|
205
|
+
<table>
|
|
206
|
+
<tr>
|
|
207
|
+
<td width="30%"><code>atlas_review</code></td>
|
|
208
|
+
<td><b>Automated Code Review</b><br/>Comprehensive analysis with quality scores, security checks, and best practice validation</td>
|
|
209
|
+
</tr>
|
|
210
|
+
<tr>
|
|
211
|
+
<td><code>atlas_critique</code></td>
|
|
212
|
+
<td><b>Code Critique</b><br/>Deep review for quality, security, performance, and maintainability</td>
|
|
213
|
+
</tr>
|
|
214
|
+
<tr>
|
|
215
|
+
<td><code>atlas_optimize</code></td>
|
|
216
|
+
<td><b>Code Optimization</b><br/>Apply improvements based on critique feedback and best practices</td>
|
|
217
|
+
</tr>
|
|
218
|
+
<tr>
|
|
219
|
+
<td><code>atlas_refactor</code></td>
|
|
220
|
+
<td><b>Smart Refactoring</b><br/>Code restructuring with complexity metrics and structural analysis</td>
|
|
221
|
+
</tr>
|
|
222
|
+
<tr>
|
|
223
|
+
<td><code>atlas_security</code></td>
|
|
224
|
+
<td><b>Security Scanner</b><br/>Detect vulnerabilities with CWE IDs and OWASP category mapping</td>
|
|
225
|
+
</tr>
|
|
226
|
+
</table>
|
|
227
|
+
|
|
228
|
+
### 🚀 Development Productivity Tools
|
|
229
|
+
|
|
230
|
+
<table>
|
|
231
|
+
<tr>
|
|
232
|
+
<td width="30%"><code>atlas_profiler</code></td>
|
|
233
|
+
<td><b>Performance Profiling</b><br/>Detect bottlenecks, analyze time complexity (O(n), O(n²)), and memory usage</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr>
|
|
236
|
+
<td><code>atlas_test</code></td>
|
|
237
|
+
<td><b>Test Case Generation</b><br/>Generate comprehensive tests for Jest, Vitest, Pytest, Mocha</td>
|
|
238
|
+
</tr>
|
|
239
|
+
<tr>
|
|
240
|
+
<td><code>atlas_docs</code></td>
|
|
241
|
+
<td><b>Auto Documentation</b><br/>Generate JSDoc, TSDoc, or PyDoc documentation automatically</td>
|
|
242
|
+
</tr>
|
|
243
|
+
<tr>
|
|
244
|
+
<td><code>atlas_dependencies</code></td>
|
|
245
|
+
<td><b>Dependency Analysis</b><br/>Detect unused packages, analyze dependencies, scan for vulnerabilities</td>
|
|
246
|
+
</tr>
|
|
247
|
+
<tr>
|
|
248
|
+
<td><code>atlas_dashboard</code></td>
|
|
249
|
+
<td><b>Metrics Dashboard</b><br/>Generate interactive HTML dashboards with real-time metrics</td>
|
|
250
|
+
</tr>
|
|
251
|
+
<tr>
|
|
252
|
+
<td><code>atlas_explain</code></td>
|
|
253
|
+
<td><b>Code Explanation</b><br/>Explain code with complexity analysis and pattern detection</td>
|
|
254
|
+
</tr>
|
|
255
|
+
<tr>
|
|
256
|
+
<td><code>atlas_debug</code></td>
|
|
257
|
+
<td><b>Smart Debugging</b><br/>Root cause analysis, stack trace parsing, and fix suggestions</td>
|
|
258
|
+
</tr>
|
|
259
|
+
<tr>
|
|
260
|
+
<td><code>atlas_think</code></td>
|
|
261
|
+
<td><b>Advanced Reasoning</b><br/>Sequential reasoning with branching logic for complex problems</td>
|
|
262
|
+
</tr>
|
|
263
|
+
</table>
|
|
264
|
+
|
|
265
|
+
### 🔧 Utility Tools
|
|
266
|
+
|
|
267
|
+
<table>
|
|
268
|
+
<tr>
|
|
269
|
+
<td width="30%"><code>atlas_providers</code></td>
|
|
270
|
+
<td><b>Provider Status</b><br/>Check available LLM providers and their current status</td>
|
|
271
|
+
</tr>
|
|
272
|
+
</table>
|
|
86
273
|
|
|
87
274
|
---
|
|
88
275
|
|
|
@@ -90,9 +277,22 @@ Restart your editor. You should see the Atlas server connected in your MCP setti
|
|
|
90
277
|
|
|
91
278
|
Once installed, simply chat with your AI Assistant (Copilot Chat or Cursor Chat). The server automatically activates based on your intent.
|
|
92
279
|
|
|
280
|
+
### Advanced AI/ML Tools
|
|
281
|
+
| Goal | What to Ask | Tool Used |
|
|
282
|
+
| :--- | :--- | :--- |
|
|
283
|
+
| **Semantic Code Search** | "Search for authentication code using RAG" | `atlas_rag_search` |
|
|
284
|
+
| **Predict Bugs** | "Predict bug probability in payment-processor.ts" | `atlas_ml_predict` |
|
|
285
|
+
| **Migrate Codebase** | "Migrate this file from JavaScript to TypeScript" | `atlas_migrate` |
|
|
286
|
+
| **Advanced Testing** | "Generate comprehensive tests with edge cases" | `atlas_testgen_advanced` |
|
|
287
|
+
|
|
288
|
+
### Professional Development Tools
|
|
93
289
|
| Goal | What to Ask | Tool Used |
|
|
94
290
|
| :--- | :--- | :--- |
|
|
95
291
|
| **Fix a complex file** | "Run the **pipeline** on `utils.ts` to refactor it." | `atlas_pipeline` |
|
|
292
|
+
| **Refactor Code** | "Refactor this code and reduce complexity" | `atlas_refactor` |
|
|
293
|
+
| **Performance Analysis** | "Profile this code for performance bottlenecks" | `atlas_profiler` |
|
|
294
|
+
| **Code Review** | "Review this PR for quality and security" | `atlas_review` |
|
|
295
|
+
| **Check Dependencies** | "Analyze dependencies and find unused packages" | `atlas_dependencies` |
|
|
96
296
|
| **Plan a feature** | "**Decompose** the task of adding JWT auth." | `atlas_decompose` |
|
|
97
297
|
| **Explore ideas** | "Generate **3 variants** for this button component." | `atlas_variants` |
|
|
98
298
|
| **Review Code** | "**Critique** this code for security issues." | `atlas_critique` |
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Atlas Server - AI-Powered Test Generation Engine
|
|
3
|
+
*
|
|
4
|
+
* Advanced test generation with AI/ML:
|
|
5
|
+
* - Unit test generation with edge cases
|
|
6
|
+
* - Integration test scaffolding
|
|
7
|
+
* - E2E test generation
|
|
8
|
+
* - Property-based testing
|
|
9
|
+
* - Mutation testing
|
|
10
|
+
* - Test data generation (realistic, edge cases, boundary values)
|
|
11
|
+
* - Mock/stub generation
|
|
12
|
+
* - Test coverage analysis & gap detection
|
|
13
|
+
* - Regression test selection
|
|
14
|
+
* - Visual regression tests
|
|
15
|
+
* - Performance test generation
|
|
16
|
+
* - Security test cases
|
|
17
|
+
*
|
|
18
|
+
* @module advanced-testgen
|
|
19
|
+
* @author Nishant Unavane
|
|
20
|
+
* @version 1.0.0
|
|
21
|
+
*/
|
|
22
|
+
export interface TestGenOptions {
|
|
23
|
+
projectPath: string;
|
|
24
|
+
sourceFile: string;
|
|
25
|
+
testTypes?: TestType[];
|
|
26
|
+
framework?: TestFramework;
|
|
27
|
+
coverageGoal?: number;
|
|
28
|
+
includeEdgeCases?: boolean;
|
|
29
|
+
includeMocks?: boolean;
|
|
30
|
+
includeIntegration?: boolean;
|
|
31
|
+
useAI?: boolean;
|
|
32
|
+
creativity?: number;
|
|
33
|
+
}
|
|
34
|
+
export type TestType = 'unit' | 'integration' | 'e2e' | 'property' | 'mutation' | 'performance' | 'security' | 'visual';
|
|
35
|
+
export type TestFramework = 'jest' | 'vitest' | 'mocha' | 'pytest' | 'junit' | 'cypress' | 'playwright';
|
|
36
|
+
export interface TestGenResult {
|
|
37
|
+
sourceFile: string;
|
|
38
|
+
testFile: string;
|
|
39
|
+
framework: TestFramework;
|
|
40
|
+
tests: GeneratedTest[];
|
|
41
|
+
mocks: GeneratedMock[];
|
|
42
|
+
fixtures: TestFixture[];
|
|
43
|
+
coverage: CoverageAnalysis;
|
|
44
|
+
recommendations: string[];
|
|
45
|
+
generationTimeMs: number;
|
|
46
|
+
}
|
|
47
|
+
export interface GeneratedTest {
|
|
48
|
+
name: string;
|
|
49
|
+
type: TestType;
|
|
50
|
+
description: string;
|
|
51
|
+
code: string;
|
|
52
|
+
targetFunction: string;
|
|
53
|
+
testCase: TestCase;
|
|
54
|
+
priority: 'critical' | 'high' | 'medium' | 'low';
|
|
55
|
+
confidence: number;
|
|
56
|
+
}
|
|
57
|
+
export interface TestCase {
|
|
58
|
+
scenario: string;
|
|
59
|
+
inputs: any[];
|
|
60
|
+
expectedOutput: any;
|
|
61
|
+
assertions: string[];
|
|
62
|
+
setup?: string;
|
|
63
|
+
teardown?: string;
|
|
64
|
+
}
|
|
65
|
+
export interface GeneratedMock {
|
|
66
|
+
name: string;
|
|
67
|
+
type: 'mock' | 'stub' | 'spy';
|
|
68
|
+
target: string;
|
|
69
|
+
code: string;
|
|
70
|
+
}
|
|
71
|
+
export interface TestFixture {
|
|
72
|
+
name: string;
|
|
73
|
+
data: any;
|
|
74
|
+
description: string;
|
|
75
|
+
}
|
|
76
|
+
export interface CoverageAnalysis {
|
|
77
|
+
currentCoverage: number;
|
|
78
|
+
projectedCoverage: number;
|
|
79
|
+
gaps: CoverageGap[];
|
|
80
|
+
recommendations: string[];
|
|
81
|
+
}
|
|
82
|
+
export interface CoverageGap {
|
|
83
|
+
location: string;
|
|
84
|
+
type: 'branch' | 'statement' | 'function';
|
|
85
|
+
reason: string;
|
|
86
|
+
suggestedTest: string;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Generate comprehensive tests for source file
|
|
90
|
+
*/
|
|
91
|
+
export declare function generateTests(options: TestGenOptions): Promise<TestGenResult>;
|
|
92
|
+
export default generateTests;
|
|
93
|
+
//# sourceMappingURL=advanced-testgen.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"advanced-testgen.d.ts","sourceRoot":"","sources":["../../src/tools/advanced-testgen.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAYH,MAAM,WAAW,cAAc;IAC7B,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IAGnB,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;IACvB,SAAS,CAAC,EAAE,aAAa,CAAC;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAG7B,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,MAAM,QAAQ,GAChB,MAAM,GACN,aAAa,GACb,KAAK,GACL,UAAU,GACV,UAAU,GACV,aAAa,GACb,UAAU,GACV,QAAQ,CAAC;AAEb,MAAM,MAAM,aAAa,GACrB,MAAM,GACN,QAAQ,GACR,OAAO,GACP,QAAQ,GACR,OAAO,GACP,SAAS,GACT,YAAY,CAAC;AAEjB,MAAM,WAAW,aAAa;IAC5B,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,aAAa,CAAC;IAEzB,KAAK,EAAE,aAAa,EAAE,CAAC;IACvB,KAAK,EAAE,aAAa,EAAE,CAAC;IACvB,QAAQ,EAAE,WAAW,EAAE,CAAC;IAExB,QAAQ,EAAE,gBAAgB,CAAC;IAC3B,eAAe,EAAE,MAAM,EAAE,CAAC;IAE1B,gBAAgB,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,QAAQ,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IAGb,cAAc,EAAE,MAAM,CAAC;IACvB,QAAQ,EAAE,QAAQ,CAAC;IAEnB,QAAQ,EAAE,UAAU,GAAG,MAAM,GAAG,QAAQ,GAAG,KAAK,CAAC;IACjD,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,QAAQ;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,GAAG,EAAE,CAAC;IACd,cAAc,EAAE,GAAG,CAAC;IACpB,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,KAAK,CAAC;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,GAAG,CAAC;IACV,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,gBAAgB;IAC/B,eAAe,EAAE,MAAM,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,IAAI,EAAE,WAAW,EAAE,CAAC;IACpB,eAAe,EAAE,MAAM,EAAE,CAAC;CAC3B;AAED,MAAM,WAAW,WAAW;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,QAAQ,GAAG,WAAW,GAAG,UAAU,CAAC;IAC1C,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;CACvB;AA8RD;;GAEG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE,cAAc,GAAG,OAAO,CAAC,aAAa,CAAC,CAwJnF;AAMD,eAAe,aAAa,CAAC"}
|