-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
278 lines (278 loc) · 8.49 KB
/
Copy pathpackage.json
File metadata and controls
278 lines (278 loc) · 8.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
{
"name": "avs-migration-planner",
"displayName": "AVS Migration Planner",
"description": "Azure VMware Solution migration planner — VS Code extension + MCP server + AI tools. CSV/RVTools import, AVS node sizing (AV36-AV64), live Azure pricing, 5-year TCO, Defender costs, wave planning, HCX configs, Bicep IaC, 7-sheet Excel reports, node selection guide, @avs Copilot Chat, Language Model Tools, and 7-tool MCP server for any AI client.",
"version": "1.3.1",
"publisher": "KimVaddi",
"author": {
"name": "KimVaddi"
},
"license": "MIT",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/KimVaddi/avs-migration-planner"
},
"engines": {
"vscode": "^1.110.0"
},
"categories": [
"Azure",
"Other"
],
"keywords": [
"azure",
"vmware",
"avs",
"migration",
"hcx",
"bicep",
"cloud",
"excel",
"rvtools",
"vsan",
"pricing",
"sizing",
"tco"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "avsMigrationPlanner.importInventory",
"title": "AVS: Import VM Inventory (CSV/RVTools)",
"icon": "$(cloud-upload)"
},
{
"command": "avsMigrationPlanner.showDashboard",
"title": "AVS: Open Migration Dashboard",
"icon": "$(dashboard)"
},
{
"command": "avsMigrationPlanner.generateBicep",
"title": "AVS: Generate Bicep Templates"
},
{
"command": "avsMigrationPlanner.generateHcxConfig",
"title": "AVS: Generate HCX Configuration"
},
{
"command": "avsMigrationPlanner.generateWavePlan",
"title": "AVS: Generate Migration Wave Plan"
},
{
"command": "avsMigrationPlanner.exportReport",
"title": "AVS: Export Full Migration Report"
},
{
"command": "avsMigrationPlanner.exportExcel",
"title": "AVS: Export Excel Report (.xlsx)",
"icon": "$(file-symlink-file)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "avsMigrationPlanner",
"title": "AVS Migration Planner",
"icon": "media/avs-icon.svg"
}
]
},
"views": {
"avsMigrationPlanner": [
{
"id": "avsMigrationPlanner.vmInventory",
"name": "VM Inventory"
},
{
"id": "avsMigrationPlanner.recommendations",
"name": "Recommendations"
}
]
},
"menus": {
"view/title": [
{
"command": "avsMigrationPlanner.importInventory",
"when": "view == avsMigrationPlanner.vmInventory",
"group": "navigation"
}
]
},
"chatParticipants": [
{
"id": "avsMigrationPlanner.chat",
"fullName": "AVS Migration Planner",
"name": "avs",
"description": "Ask questions about your Azure VMware Solution migration plan — sizing, costs, risks, waves, and architecture.",
"isSticky": true,
"commands": [
{
"name": "analyze",
"description": "Deep analysis of the imported VM inventory with AI insights"
},
{
"name": "recommend",
"description": "Architecture recommendations based on workload mix"
},
{
"name": "risk",
"description": "Risk assessment for each migration wave"
},
{
"name": "optimize",
"description": "Cost optimization suggestions"
},
{
"name": "explain",
"description": "Explain any part of the migration plan in plain language"
}
]
}
]
},
"languageModelTools": [
{
"name": "avsMigrationPlanner_getSizing",
"displayName": "Get AVS Sizing",
"description": "Returns AVS node sizing recommendations for the imported VM inventory — node types, utilization, fit scores, driving dimension.",
"canBeReferencedInPrompt": true,
"icon": "$(server)",
"inputSchema": {
"type": "object",
"properties": {}
}
},
{
"name": "avsMigrationPlanner_getCosts",
"displayName": "Get AVS Cost Comparison",
"description": "Returns AVS cost comparison (PAYG, 1yr RI, 3yr RI) for all node types based on the imported VM inventory.",
"canBeReferencedInPrompt": true,
"icon": "$(credit-card)",
"inputSchema": {
"type": "object",
"properties": {}
}
},
{
"name": "avsMigrationPlanner_getNodeAdvice",
"displayName": "Get AVS Node Selection Advice",
"description": "Returns architect-level node selection rationale with cost efficiency, waste analysis, regional warnings, and workload archetypes.",
"canBeReferencedInPrompt": true,
"icon": "$(lightbulb)",
"inputSchema": {
"type": "object",
"properties": {
"region": {
"type": "string",
"description": "Azure region to check node availability (e.g., eastus, uksouth). Defaults to configured pricing region."
}
}
}
},
{
"name": "avsMigrationPlanner_getWavePlan",
"displayName": "Get AVS Migration Wave Plan",
"description": "Returns migration wave plan summary — waves, VMs per wave, risk levels, durations, scheduling.",
"canBeReferencedInPrompt": true,
"icon": "$(list-ordered)",
"inputSchema": {
"type": "object",
"properties": {}
}
},
{
"name": "avsMigrationPlanner_checkRegion",
"displayName": "Check AVS Region Availability",
"description": "Checks which AVS node types (AV36, AV36P, AV52, AV48, AV64) are available in a given Azure region, plus stretched cluster and Gen 2 support.",
"canBeReferencedInPrompt": true,
"icon": "$(globe)",
"inputSchema": {
"type": "object",
"properties": {
"region": {
"type": "string",
"description": "Azure region name (e.g., eastus, uksouth, westeurope)"
}
}
}
}
],
"configuration": {
"title": "AVS Migration Planner",
"properties": {
"avsMigrationPlanner.wave.maxVMsPerWave": {
"type": "number",
"default": 25,
"minimum": 1,
"maximum": 100,
"description": "Maximum number of VMs per migration wave."
},
"avsMigrationPlanner.wave.maxVCPUsPerWave": {
"type": "number",
"default": 200,
"minimum": 1,
"description": "Maximum vCPUs per migration wave."
},
"avsMigrationPlanner.wave.maxStoragePerWaveGB": {
"type": "number",
"default": 5000,
"minimum": 100,
"description": "Maximum storage (GB) per migration wave."
},
"avsMigrationPlanner.wave.daysBetweenWaves": {
"type": "number",
"default": 3,
"minimum": 0,
"description": "Days between migration wave start dates."
},
"avsMigrationPlanner.wave.throughputGBPerHour": {
"type": "number",
"default": 100,
"minimum": 10,
"description": "Aggregate HCX throughput in GB/hr (100 for 1Gbps ER, 500-800 for 10Gbps ER)."
},
"avsMigrationPlanner.pricing.region": {
"type": "string",
"default": "eastus",
"description": "Azure region for pricing lookup (e.g., eastus, westeurope)."
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests",
"test": "mocha --require ts-node/register 'src/test/unit/**/*.test.ts' --timeout 10000",
"test:unit": "mocha --require ts-node/register 'src/test/unit/**/*.test.ts' --timeout 10000",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.0",
"@types/vscode": "^1.110.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vscode/vsce": "^2.22.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"exceljs": "^4.4.0",
"zod": "^3.25.76"
}
}