@agentmanifest/cli 0.1.10 → 0.2.0
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/CHANGELOG.md +46 -0
- package/PROJECT_STRUCTURE.md +14 -18
- package/QUICK_START.md +15 -11
- package/README.md +51 -88
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +47 -423
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/publish.d.ts.map +1 -1
- package/dist/commands/publish.js +65 -7
- package/dist/commands/publish.js.map +1 -1
- package/dist/constants.d.ts +50 -6
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +42 -15
- package/dist/constants.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +36 -64
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,52 @@ All notable changes to the AMP CLI will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.0] - 2026-02-19
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- AMP v0.2 spec support (agentmanifest-0.2)
|
|
12
|
+
- New categories: food-science, materials, construction, music-gear, agriculture, computing, language, history, commerce, identity, logistics, other
|
|
13
|
+
- New primary categories: reference, live, computational, transactional, enrichment, personal, discovery
|
|
14
|
+
- New pricing models: per-query, pay-what-you-want, tiered
|
|
15
|
+
- Required reliability section with maintained_by
|
|
16
|
+
- Endpoint parameters as array format; response_description required
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- `amp init` now scaffolds a manifest (no wizard). Edit the file or use an AI agent to fill.
|
|
20
|
+
- Removed interactive wizard - scaffold-only approach for simpler UX
|
|
21
|
+
- Overwrite confirmation when agent-manifest.json already exists
|
|
22
|
+
- Type definitions updated for v0.2 schema
|
|
23
|
+
- Contact is now a single string (email or URL)
|
|
24
|
+
- Authentication uses required flag + instructions instead of config
|
|
25
|
+
|
|
26
|
+
### Removed
|
|
27
|
+
- Interactive wizard (20+ prompts)
|
|
28
|
+
- Rate limits (not in v0.2 spec)
|
|
29
|
+
- Homepage/documentation from required fields
|
|
30
|
+
- Old v0.1 category and pricing models
|
|
31
|
+
|
|
32
|
+
## [0.1.11] - 2026-02-16
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
- Fixed `amp publish` to recognize 'completed' status from registry
|
|
36
|
+
- Improved async polling to correctly handle registry response format
|
|
37
|
+
- All publish features now fully functional with live registry
|
|
38
|
+
|
|
39
|
+
## [0.1.10] - 2026-02-16
|
|
40
|
+
|
|
41
|
+
### Fixed
|
|
42
|
+
- Fixed `amp publish` to handle async registry submissions with status polling
|
|
43
|
+
- Fixed registry URL from `agent-manifest.com` to `api.agent-manifest.com`
|
|
44
|
+
- Added support for 'completed' status in addition to 'approved'
|
|
45
|
+
- Increased polling timeout to 60 seconds
|
|
46
|
+
- Improved error messages to show full response when details are missing
|
|
47
|
+
|
|
48
|
+
## [0.1.9] - 2026-02-16
|
|
49
|
+
|
|
50
|
+
### Fixed
|
|
51
|
+
- Fixed validator response field in publish command (changed from 'valid' to 'passed')
|
|
52
|
+
- Aligned publish command validation logic with validate command
|
|
53
|
+
|
|
8
54
|
## [0.1.8] - 2026-02-16
|
|
9
55
|
|
|
10
56
|
### Fixed
|
package/PROJECT_STRUCTURE.md
CHANGED
|
@@ -8,7 +8,7 @@ Complete Node.js CLI tool for the Agent Manifest Protocol, ready for npm publica
|
|
|
8
8
|
amp-cli/
|
|
9
9
|
├── src/ # TypeScript source files
|
|
10
10
|
│ ├── commands/ # Command implementations
|
|
11
|
-
│ │ ├── init.ts #
|
|
11
|
+
│ │ ├── init.ts # Manifest scaffolding
|
|
12
12
|
│ │ ├── validate.ts # Manifest validation
|
|
13
13
|
│ │ └── publish.ts # Registry submission
|
|
14
14
|
│ ├── constants.ts # Controlled vocabularies
|
|
@@ -38,12 +38,10 @@ amp-cli/
|
|
|
38
38
|
- Defines three main commands: init, validate, publish
|
|
39
39
|
- Includes version and help information
|
|
40
40
|
|
|
41
|
-
#### `commands/init.ts` (
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
- Supports multiple endpoints with parameters
|
|
46
|
-
- Generates compliant AMP v0.1 manifest
|
|
41
|
+
#### `commands/init.ts` (Scaffolding)
|
|
42
|
+
- Creates minimal valid agent-manifest.json per AMP v0.2 spec
|
|
43
|
+
- No prompts - edit the file or have an AI agent fill it in
|
|
44
|
+
- Prompts for overwrite confirmation if file already exists
|
|
47
45
|
|
|
48
46
|
#### `commands/validate.ts` (Validation)
|
|
49
47
|
- Reads manifest from filesystem
|
|
@@ -58,12 +56,14 @@ amp-cli/
|
|
|
58
56
|
- Returns listing ID and registry URL
|
|
59
57
|
|
|
60
58
|
#### `constants.ts` (Controlled Vocabularies)
|
|
61
|
-
- Standard categories (
|
|
62
|
-
-
|
|
59
|
+
- Standard categories (20 categories: food-science, materials, chemistry, etc.)
|
|
60
|
+
- Primary categories (reference, live, computational, transactional, enrichment, personal, discovery)
|
|
61
|
+
- Pricing models (free, per-query, subscription, pay-what-you-want, tiered)
|
|
63
62
|
- Authentication types (none, api_key, oauth2, bearer)
|
|
63
|
+
- Maintained-by options (individual, organization, community)
|
|
64
64
|
|
|
65
65
|
#### `types.ts` (TypeScript Definitions)
|
|
66
|
-
- Complete type definitions for AMP v0.
|
|
66
|
+
- Complete type definitions for AMP v0.2
|
|
67
67
|
- Interfaces for all manifest sections
|
|
68
68
|
- Type safety for parameters and responses
|
|
69
69
|
|
|
@@ -125,14 +125,10 @@ amp-cli/
|
|
|
125
125
|
|
|
126
126
|
## Key Features
|
|
127
127
|
|
|
128
|
-
###
|
|
129
|
-
-
|
|
130
|
-
-
|
|
131
|
-
-
|
|
132
|
-
- Parameter configuration
|
|
133
|
-
- Optional sections (rate limits, reliability)
|
|
134
|
-
- Contact information
|
|
135
|
-
- Agent guidance notes
|
|
128
|
+
### Scaffolding (`amp init`)
|
|
129
|
+
- Instant manifest creation
|
|
130
|
+
- Minimal valid template per spec
|
|
131
|
+
- Edit directly or use AI agent to fill in
|
|
136
132
|
|
|
137
133
|
### Validation (`amp validate`)
|
|
138
134
|
- API integration
|
package/QUICK_START.md
CHANGED
|
@@ -17,7 +17,7 @@ cd /path/to/your/api
|
|
|
17
17
|
amp init
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
Creates `agent-manifest.json`. Edit it to add your API details.
|
|
21
21
|
|
|
22
22
|
### 2. Validate Your Manifest
|
|
23
23
|
|
|
@@ -52,15 +52,14 @@ amp publish
|
|
|
52
52
|
|
|
53
53
|
## Minimal Manifest Example
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
`amp init` creates a scaffold like this. Edit to add your API details:
|
|
56
56
|
|
|
57
57
|
```json
|
|
58
58
|
{
|
|
59
|
-
"spec_version": "agentmanifest-0.
|
|
59
|
+
"spec_version": "agentmanifest-0.2",
|
|
60
60
|
"name": "Weather Data API",
|
|
61
61
|
"version": "1.0.0",
|
|
62
62
|
"description": "Provides real-time weather data and forecasts for locations worldwide with high accuracy and comprehensive coverage including current conditions, hourly forecasts, and historical data.",
|
|
63
|
-
"homepage": "https://api.weather-data.com",
|
|
64
63
|
"categories": ["weather"],
|
|
65
64
|
"primary_category": "live",
|
|
66
65
|
"endpoints": [
|
|
@@ -68,19 +67,24 @@ The wizard will help you create something like this:
|
|
|
68
67
|
"path": "/current",
|
|
69
68
|
"method": "GET",
|
|
70
69
|
"description": "Get current weather for a location",
|
|
71
|
-
"
|
|
72
|
-
|
|
73
|
-
"description": "Current weather conditions"
|
|
74
|
-
}
|
|
70
|
+
"parameters": [],
|
|
71
|
+
"response_description": "Current weather conditions including temperature and conditions"
|
|
75
72
|
}
|
|
76
73
|
],
|
|
77
74
|
"pricing": {
|
|
78
|
-
"model": "free"
|
|
75
|
+
"model": "free",
|
|
76
|
+
"free_tier": { "queries_per_day": null, "queries_per_month": null }
|
|
79
77
|
},
|
|
80
78
|
"authentication": {
|
|
79
|
+
"required": false,
|
|
81
80
|
"type": "none"
|
|
82
81
|
},
|
|
82
|
+
"reliability": {
|
|
83
|
+
"maintained_by": "organization"
|
|
84
|
+
},
|
|
83
85
|
"agent_notes": "Simple weather API. Use location parameter with city names or coordinates for precise results.",
|
|
86
|
+
"contact": "support@weather-data.com",
|
|
87
|
+
"listing_requested": true,
|
|
84
88
|
"last_updated": "2026-02-15T10:30:00Z"
|
|
85
89
|
}
|
|
86
90
|
```
|
|
@@ -122,8 +126,8 @@ amp publish
|
|
|
122
126
|
|
|
123
127
|
1. **Description Length**: Must be ≥100 characters. Be descriptive!
|
|
124
128
|
2. **Agent Notes**: Must be ≥50 characters. Tell agents how to use your API.
|
|
125
|
-
3. **Categories**: Choose the most relevant. Primary category
|
|
126
|
-
4. **Homepage**:
|
|
129
|
+
3. **Categories**: Choose the most relevant. Primary category (reference, live, computational, etc.) is separate from categories.
|
|
130
|
+
4. **Homepage**: Host your manifest at `https://your-api.com/.well-known/agent-manifest.json`
|
|
127
131
|
|
|
128
132
|
## Hosting Your Manifest
|
|
129
133
|
|
package/README.md
CHANGED
|
@@ -28,54 +28,20 @@ npx amp --help
|
|
|
28
28
|
|
|
29
29
|
### `amp init`
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
Scaffold a valid `agent-manifest.json` file in the current directory.
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
amp init
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
- **Basic Information**: Name, version, description, URLs
|
|
40
|
-
- **Categories**: Primary and secondary categories from controlled vocabulary
|
|
41
|
-
- **Endpoints**: API endpoints with methods, parameters, and responses
|
|
42
|
-
- **Pricing**: Free, usage-based, or subscription models
|
|
43
|
-
- **Authentication**: None, API key, OAuth2, or bearer token
|
|
44
|
-
- **Rate Limits**: Request limits per minute/day (optional)
|
|
45
|
-
- **Reliability**: Uptime and response time metrics (optional)
|
|
46
|
-
- **Contact**: Support email, URLs, GitHub (optional)
|
|
47
|
-
- **Agent Notes**: Implementation guidance for AI agents (min 50 chars)
|
|
48
|
-
|
|
49
|
-
The generated manifest will be saved as `agent-manifest.json` in your current directory.
|
|
50
|
-
|
|
51
|
-
#### Example Session
|
|
37
|
+
Creates a minimal valid manifest per the AMP v0.2 specification. Edit the file to add your API details, or have an AI agent fill it in. Then run `amp validate` to check compliance.
|
|
52
38
|
|
|
53
39
|
```bash
|
|
54
40
|
$ amp init
|
|
55
41
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
? API name: Chemistry Calculator API
|
|
60
|
-
? Version (semantic versioning): 1.0.0
|
|
61
|
-
? Description (min 100 characters): A comprehensive chemistry API providing molecular calculations, compound information, and reaction predictions for AI agents working with chemical data
|
|
62
|
-
? Homepage URL (optional): https://api.chemcalc.com
|
|
63
|
-
? Documentation URL (optional): https://docs.chemcalc.com
|
|
64
|
-
|
|
65
|
-
🏷️ Categories
|
|
66
|
-
? Select categories: chemistry, education
|
|
67
|
-
? Select primary category: chemistry
|
|
68
|
-
|
|
69
|
-
🔌 Endpoints
|
|
70
|
-
? Endpoint path: /calculate/molar-mass
|
|
71
|
-
? HTTP method: POST
|
|
72
|
-
? Endpoint description: Calculate molar mass of chemical compounds
|
|
73
|
-
? Response description: Returns molar mass in g/mol with compound details
|
|
74
|
-
? Add parameters to this endpoint? Yes
|
|
75
|
-
...
|
|
76
|
-
|
|
77
|
-
✅ Success!
|
|
78
|
-
Manifest created at: /path/to/agent-manifest.json
|
|
42
|
+
✅ Created agent-manifest.json
|
|
43
|
+
|
|
44
|
+
Edit the file, then run "amp validate".
|
|
79
45
|
```
|
|
80
46
|
|
|
81
47
|
---
|
|
@@ -119,7 +85,7 @@ File: /path/to/agent-manifest.json
|
|
|
119
85
|
Sending to validator API...
|
|
120
86
|
✅ Validation Passed
|
|
121
87
|
|
|
122
|
-
Your manifest is compliant with AMP specification v0.
|
|
88
|
+
Your manifest is compliant with AMP specification v0.2
|
|
123
89
|
|
|
124
90
|
Next step: Run "amp publish" to submit to registry
|
|
125
91
|
```
|
|
@@ -138,7 +104,7 @@ Sending to validator API...
|
|
|
138
104
|
|
|
139
105
|
Errors:
|
|
140
106
|
1. description: Must be at least 100 characters (currently 45)
|
|
141
|
-
2. primary_category: Must be one of
|
|
107
|
+
2. primary_category: Must be one of: reference, live, computational, transactional, enrichment, personal, discovery
|
|
142
108
|
3. agent_notes: Must be at least 50 characters (currently 20)
|
|
143
109
|
|
|
144
110
|
Please fix the errors and try again.
|
|
@@ -223,7 +189,7 @@ Run "amp validate" for detailed validation output.
|
|
|
223
189
|
### Complete Setup Flow
|
|
224
190
|
|
|
225
191
|
```bash
|
|
226
|
-
# 1. Create a new manifest
|
|
192
|
+
# 1. Create a new manifest
|
|
227
193
|
amp init
|
|
228
194
|
|
|
229
195
|
# 2. Review the generated file
|
|
@@ -240,20 +206,23 @@ amp publish
|
|
|
240
206
|
|
|
241
207
|
---
|
|
242
208
|
|
|
243
|
-
## Manifest Schema (v0.
|
|
209
|
+
## Manifest Schema (v0.2)
|
|
244
210
|
|
|
245
211
|
### Required Fields
|
|
246
212
|
|
|
247
|
-
- `spec_version`: Always `"agentmanifest-0.
|
|
248
|
-
- `name`: API name (
|
|
213
|
+
- `spec_version`: Always `"agentmanifest-0.2"`
|
|
214
|
+
- `name`: API name (3-100 characters)
|
|
249
215
|
- `version`: Semantic version (e.g., "1.0.0")
|
|
250
216
|
- `description`: Min 100 characters
|
|
251
217
|
- `categories`: Array of domain categories (from controlled vocabulary below)
|
|
252
218
|
- `primary_category`: API type - one of: "reference", "live", "computational", "transactional", "enrichment", "personal", "discovery"
|
|
253
219
|
- `endpoints`: At least one endpoint required
|
|
254
|
-
- `pricing.model`: "free", "
|
|
255
|
-
- `authentication.type`: "
|
|
220
|
+
- `pricing.model`: "free", "per-query", "subscription", "pay-what-you-want", or "tiered"
|
|
221
|
+
- `authentication.required`: Boolean; `type`: "api_key", "oauth2", "bearer", or "none"
|
|
222
|
+
- `reliability.maintained_by`: "individual", "organization", or "community"
|
|
256
223
|
- `agent_notes`: Min 50 characters - guidance for AI agents
|
|
224
|
+
- `contact`: Contact email or URL (string)
|
|
225
|
+
- `listing_requested`: Boolean
|
|
257
226
|
|
|
258
227
|
### Primary Category Types
|
|
259
228
|
|
|
@@ -268,21 +237,19 @@ amp publish
|
|
|
268
237
|
### Standard Domain Categories
|
|
269
238
|
|
|
270
239
|
```
|
|
271
|
-
|
|
272
|
-
geography,
|
|
273
|
-
|
|
240
|
+
food-science, materials, construction, music-gear, chemistry, biology,
|
|
241
|
+
geography, finance, legal, medical, engineering, agriculture, computing,
|
|
242
|
+
language, history, commerce, identity, weather, logistics, other
|
|
274
243
|
```
|
|
275
244
|
|
|
276
245
|
### Example Manifest
|
|
277
246
|
|
|
278
247
|
```json
|
|
279
248
|
{
|
|
280
|
-
"spec_version": "agentmanifest-0.
|
|
249
|
+
"spec_version": "agentmanifest-0.2",
|
|
281
250
|
"name": "Weather Data API",
|
|
282
251
|
"version": "2.1.0",
|
|
283
252
|
"description": "Real-time weather data and forecasts for locations worldwide. Provides current conditions, hourly forecasts, and historical weather data with high accuracy and global coverage.",
|
|
284
|
-
"homepage": "https://api.weather-data.com",
|
|
285
|
-
"documentation": "https://docs.weather-data.com",
|
|
286
253
|
"categories": ["weather", "geography"],
|
|
287
254
|
"primary_category": "live",
|
|
288
255
|
"endpoints": [
|
|
@@ -290,45 +257,41 @@ education, translation, media, general
|
|
|
290
257
|
"path": "/current",
|
|
291
258
|
"method": "GET",
|
|
292
259
|
"description": "Get current weather conditions for a location",
|
|
293
|
-
"parameters":
|
|
294
|
-
|
|
295
|
-
"
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
}
|
|
260
|
+
"parameters": [
|
|
261
|
+
{
|
|
262
|
+
"name": "location",
|
|
263
|
+
"type": "string",
|
|
264
|
+
"required": true,
|
|
265
|
+
"description": "City name or coordinates (lat,lon)"
|
|
300
266
|
}
|
|
301
|
-
|
|
302
|
-
"
|
|
303
|
-
"type": "object",
|
|
304
|
-
"description": "Current weather data including temperature, conditions, and metadata"
|
|
305
|
-
}
|
|
267
|
+
],
|
|
268
|
+
"response_description": "Current weather data including temperature, conditions, and metadata"
|
|
306
269
|
}
|
|
307
270
|
],
|
|
308
271
|
"pricing": {
|
|
309
|
-
"model": "
|
|
310
|
-
"
|
|
272
|
+
"model": "per-query",
|
|
273
|
+
"free_tier": {
|
|
274
|
+
"queries_per_day": 1000,
|
|
275
|
+
"queries_per_month": 10000
|
|
276
|
+
},
|
|
277
|
+
"paid_tier": {
|
|
278
|
+
"amount_usd": 0.001,
|
|
279
|
+
"unit": "per request",
|
|
280
|
+
"description": "$0.001 per request after free tier"
|
|
281
|
+
}
|
|
311
282
|
},
|
|
312
283
|
"authentication": {
|
|
284
|
+
"required": true,
|
|
313
285
|
"type": "api_key",
|
|
314
|
-
"
|
|
315
|
-
"header": "X-API-Key",
|
|
316
|
-
"signup_url": "https://api.weather-data.com/signup"
|
|
317
|
-
}
|
|
318
|
-
},
|
|
319
|
-
"rate_limits": {
|
|
320
|
-
"requests_per_minute": 60,
|
|
321
|
-
"requests_per_day": 10000
|
|
322
|
-
},
|
|
323
|
-
"reliability_metrics": {
|
|
324
|
-
"uptime_percentage": 99.9,
|
|
325
|
-
"avg_response_time_ms": 150
|
|
286
|
+
"instructions": "Obtain API key at https://api.weather-data.com/signup"
|
|
326
287
|
},
|
|
327
|
-
"
|
|
328
|
-
"
|
|
329
|
-
"
|
|
288
|
+
"reliability": {
|
|
289
|
+
"maintained_by": "organization",
|
|
290
|
+
"status_url": "https://status.weather-data.com",
|
|
291
|
+
"expected_uptime_pct": 99.9
|
|
330
292
|
},
|
|
331
293
|
"agent_notes": "Use the 'location' parameter with city names for simplicity. Coordinates provide more precise results. Response includes semantic metadata to help interpret weather conditions.",
|
|
294
|
+
"contact": "support@weather-data.com",
|
|
332
295
|
"listing_requested": true,
|
|
333
296
|
"last_updated": "2026-02-15T10:30:00Z"
|
|
334
297
|
}
|
|
@@ -340,14 +303,14 @@ education, translation, media, general
|
|
|
340
303
|
|
|
341
304
|
The validator checks for:
|
|
342
305
|
|
|
343
|
-
1. **Spec Version**: Must be `"agentmanifest-0.
|
|
344
|
-
2. **Semantic Versioning**: Version must follow `x.y.z` format
|
|
306
|
+
1. **Spec Version**: Must be `"agentmanifest-0.2"`
|
|
307
|
+
2. **Semantic Versioning**: Version must follow `x.y.z` format (with optional pre-release/build)
|
|
345
308
|
3. **Description Length**: Minimum 100 characters
|
|
346
309
|
4. **Agent Notes Length**: Minimum 50 characters
|
|
347
|
-
5. **Category
|
|
348
|
-
6. **Endpoints**: At least one endpoint
|
|
310
|
+
5. **Primary Category**: Must be one of reference, live, computational, transactional, enrichment, personal, discovery
|
|
311
|
+
6. **Endpoints**: At least one endpoint; description and response_description min 20 characters
|
|
349
312
|
7. **Valid URLs**: All URLs must be HTTPS
|
|
350
|
-
8. **Required Fields**: All mandatory fields present
|
|
313
|
+
8. **Required Fields**: All mandatory fields present including reliability
|
|
351
314
|
9. **Type Validation**: Fields match expected types
|
|
352
315
|
|
|
353
316
|
---
|
|
@@ -439,7 +402,7 @@ If you get validation errors, review the error messages carefully. Common issues
|
|
|
439
402
|
- **Description too short**: Must be at least 100 characters
|
|
440
403
|
- **Agent notes too short**: Must be at least 50 characters
|
|
441
404
|
- **Invalid version**: Must follow semantic versioning (e.g., "1.0.0")
|
|
442
|
-
- **
|
|
405
|
+
- **Invalid primary category**: Must be one of reference, live, computational, transactional, enrichment, personal, discovery
|
|
443
406
|
- **Missing endpoints**: At least one endpoint required
|
|
444
407
|
|
|
445
408
|
---
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"AAuCA,wBAAsB,WAAW,kBAkChC"}
|