-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
418 lines (418 loc) · 11.7 KB
/
package.json
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
{
"name": "aem-copilot",
"publisher": "neerajgrg93",
"displayName": "AEM Copilot",
"description": "Github Copilot for AEM Edge Delivery Services",
"icon": "resources/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/adobe/aem-github-copilot"
},
"version": "0.0.8",
"engines": {
"vscode": "^1.95.0"
},
"extensionDependencies": [
"github.copilot-chat"
],
"categories": [
"AI",
"Chat"
],
"keywords": [
"chat-participant",
"ai",
"openai",
"anthropic",
"gemini",
"claude",
"vision",
"accessibility",
"images",
"pilot",
"co-pilot"
],
"enabledApiProposals": [
"chatReferenceBinaryData",
"codeActionAI"
],
"activationEvents": [],
"contributes": {
"chatParticipants": [
{
"id": "aem",
"fullName": "AEM",
"name": "aem",
"description": "AEM Assistant to help with blocks developement",
"isSticky": true,
"commands": [
{
"name": "create",
"description": "Given a block name, create corresponding files",
"disambiguation": [
{
"category": "aem_createblock",
"description": "User wants to create block for AEM Edge Delivery Services",
"examples": [
"a table block with 3 columns and 4 rows",
"a carousel block with 5 images"
]
}
]
},
{
"name": "collection",
"description": "Pull a block from aem block collection repo",
"disambiguation": [
{
"category": "aem_collection",
"description": "User wants to pull a block from AEM Edge Delivery Services block collection",
"examples": [
"pull a table block",
"pull a carousel block"
]
}
]
},
{
"name": "issues",
"description": "Issues management for AEM Edge Delivery Services and Providing AI suggestions",
"disambiguation": [
{
"category": "aem_issues",
"description": "User wants to manage issues for AEM Edge Delivery Services",
"examples": [
"create a new issue",
"close an issue",
"fetch latest issue"
]
}
]
},
{
"name": "docs",
"description": "Information About AEM Edge Delivery Services",
"disambiguation": [
{
"category": "aem_docs",
"description": "User wants to know about AEM Edge Delivery Services",
"examples": [
"what is AEM Edge Delivery Services",
"how to use AEM Edge Delivery Services",
"how authentication works in AEM Edge Delivery Services"
]
}
]
},
{
"name": "vision",
"description": "create AEM Edge Delivery Services block using vision",
"disambiguation": [
{
"category": "aem_vision",
"description": "User wants to create AEM Edge Delivery Services block using vision with given image",
"examples": [
"create a block as shown in the image"
]
}
]
}
],
"disambiguation": [
{
"category": "aem",
"description": "User wants to interact with AEM Assistant",
"examples": [
"create a table block",
"pull a carousel block",
"create a new issue",
"fetch latest issue",
"what is AEM Edge Delivery Services",
"create a block as shown in the image"
]
}
]
}
],
"commands": [
{
"command": "aem.createFiles",
"title": "create files/folders for edge delivery services block"
},
{
"command": "aem_copilot.annotate",
"title": "AEM Copilot Annotations",
"icon": "/resources/logo.png"
}
],
"menus": {
"editor/title": [
{
"command": "aem_copilot.annotate",
"group": "navigation"
}
]
},
"languageModelTools": [
{
"name": "aem_copilot_github_fetchIssueDetails",
"tags": [
"github",
"get-github-issue",
"aem-copilot-tools"
],
"toolReferenceName": "aem_copilot_github_fetchIssueDetails",
"displayName": "Test Github Issues",
"modelDescription": "Test Github Issues",
"icon": "$(git-fetch)",
"inputSchema": {
"type": "object",
"properties": {
"issueNumber": {
"type": "number",
"description": "Github Issue Number"
}
},
"required": [
"issueNumber"
]
}
},
{
"name": "aem_copilot_github_createIssue",
"tags": [
"github",
"create-github-issue",
"aem-copilot-tools"
],
"toolReferenceName": "aem_copilot_github_createIssue",
"displayName": "Create Github Issue",
"modelDescription": "Create Github Issue",
"icon": "$(files)",
"inputSchema": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Issue Title",
"default": "New Issue"
},
"body": {
"type": "string",
"description": "Issue Body",
"default": "Issue Body"
}
},
"required": [
"title",
"body"
]
}
},
{
"name": "aem_copilot_github_closeIssue",
"tags": [
"github",
"aem-copilot-tools"
],
"toolReferenceName": "aem_copilot_github_closeIssue",
"displayName": "Close Github Issue",
"modelDescription": "Close Github Issue",
"icon": "$(files)",
"inputSchema": {
"type": "object",
"properties": {
"issueNumber": {
"type": "number",
"description": "Github Issue Number"
}
},
"required": [
"issueNumber"
]
}
},
{
"name": "aem_copilot_github_fetchLatestIssue",
"tags": [
"github",
"aem-copilot-tools"
],
"toolReferenceName": "aem_copilot_github_fetchLatestIssue",
"displayName": "Fetch Latest Github Issue",
"modelDescription": "Fetch Latest Github Issue",
"icon": "$(files)",
"inputSchema": {
"type": "object",
"properties": {
"repo": {
"type": "string",
"description": "Github Repository"
}
},
"required": [
"repo"
]
}
},
{
"name": "aem_copilot_github_fetchAssignedIssue",
"tags": [
"github",
"aem-copilot-tools"
],
"toolReferenceName": "aem_copilot_github_fetchAssignedIssue",
"displayName": "Fetch Assigned Github Issue",
"modelDescription": "Fetch Assigned Github Issue",
"icon": "$(files)",
"inputSchema": {
"type": "object",
"properties": {
"repo": {
"type": "string",
"description": "Github Repository"
},
"username": {
"type": "string",
"description": "Github Username"
}
},
"required": [
"repo"
]
}
},
{
"name": "aem_copilot_docsIdentifier",
"tags": [
"editors",
"chat-tools-sample"
],
"toolReferenceName": "aem_copilot_docsIdentifier",
"displayName": "AEM Edge Delivery Services Docs Identifier",
"modelDescription": "AEM Edge Delivery Services Docs Identifier",
"icon": "$(files)",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "User prompt to identify the docs"
}
},
"required": [
"query"
]
}
},
{
"name": "aem_copilot_runInTerminal",
"tags": [
"terminal",
"aem-copilot-tools"
],
"displayName": "Run in Terminal",
"modelDescription": "Run a command in a terminal and return the output",
"inputSchema": {
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "The command to run"
}
},
"required": [
"command"
]
}
},
{
"name": "aem_copilot_findFiles",
"tags": [
"files",
"search",
"aem-copilot-tools"
],
"displayName": "Find Files",
"toolReferenceName": "aem_copilot_findFiles",
"modelDescription": "Search for files in the current workspace",
"inputSchema": {
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "Search for files that match this glob pattern"
}
},
"required": [
"pattern"
]
}
}
],
"configuration": {
"title": "Azure OpenAI Configuration For Vision Command",
"properties": {
"extension.apiKey": {
"type": "string",
"default": "",
"description": "API Key for the extension"
},
"extension.endpoint": {
"type": "string",
"default": "",
"description": "Endpoint for the extension"
},
"extension.apiVersion": {
"type": "string",
"default": "",
"description": "API Version for the extension"
},
"extension.deploymentName": {
"type": "string",
"default": "",
"description": "Deployment Name for the extension"
}
}
}
},
"main": "./dist/extension.js",
"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 && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"build": "webpack --mode production"
},
"devDependencies": {
"@octokit/rest": "^20.1.1",
"@types/jsdom": "^21.1.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"eslint": "^8.57.0",
"run-script-os": "^1.1.6",
"simple-git": "^3.27.0",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3",
"typescript": "^5.5.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@vscode/chat-extension-utils": "^0.0.0-alpha.1",
"@vscode/prompt-tsx": "^0.3.0-alpha.12",
"applicationinsights": "^3.4.0",
"jsdom": "^24.1.0",
"openai": "^4.76.3"
}
}