This repository was archived by the owner on Jun 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
445 lines (445 loc) · 15.1 KB
/
Copy pathpackage.json
File metadata and controls
445 lines (445 loc) · 15.1 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
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
{
"name": "seamless-agent",
"publisher": "jraylan",
"private": true,
"displayName": "Seamless Agent",
"description": "Language Model tool that requires AI agents to confirm with users before completing tasks",
"version": "0.1.32",
"icon": "resources/icon.png",
"author": "jraylan",
"contributors": [
{
"name": "Bernardo Pinho",
"url": "https://github.com/bicheichane"
},
{
"name": "Jefferson Raylan",
"url": "https://github.com/jraylan"
},
{
"name": "4regab",
"url": "https://github.com/4regab"
},
{
"name": "euxx",
"url": "https://github.com/euxx"
},
{
"name": "bizzkoot",
"url": "https://github.com/bizzkoot"
},
{
"name": "iwangbowen",
"url": "https://github.com/iwangbowen"
},
{
"name": "ShehabSherif0",
"url": "https://github.com/ShehabSherif0"
}
],
"license": "MIT",
"main": "./dist/extension.js",
"engines": {
"vscode": "^1.104.0"
},
"categories": [
"AI",
"Chat",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jraylan/seamless-agent.git"
},
"homepage": "https://github.com/jraylan/seamless-agent#readme",
"keywords": [
"mcp",
"model-context-protocol",
"developer tools",
"ia-tool",
"vibe-coding",
"ai",
"copilot"
],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "seamless-agent",
"title": "Seamless Agent",
"icon": "resources/seamless-agent.svg"
}
]
},
"views": {
"seamless-agent": [
{
"id": "seamlessAgentView",
"name": "Seamless Agent",
"type": "webview",
"icon": "resources/seamless-agent.svg"
}
]
},
"chatParticipants": [
{
"id": "seamless-agent.agent",
"fullName": "Seamless Agent",
"name": "seamless",
"description": "An AI assistant that always confirms with you before completing tasks",
"isSticky": false
}
],
"configuration": {
"title": "Seamless Agent",
"properties": {
"seamless-agent.ignoreCommonPaths": {
"type": "boolean",
"default": true,
"title": "%config.ignoreCommonPaths.title%",
"markdownDescription": "%config.ignoreCommonPaths.description%"
},
"seamless-agent.additionalIgnoredPaths": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"title": "%config.additionalIgnoredPaths.title%",
"markdownDescription": "%config.additionalIgnoredPaths.description%"
},
"seamless-agent.storageContext": {
"type": "string",
"enum": [
"global",
"workspace"
],
"default": "workspace",
"title": "%config.storageContext.title%",
"markdownDescription": "%config.storageContext.description%"
},
"seamless-agent.historyTimeDisplay": {
"type": "string",
"enum": [
"relative",
"absolute",
"hybrid"
],
"default": "hybrid",
"title": "%config.historyTimeDisplay.title%",
"markdownDescription": "%config.historyTimeDisplay.description%"
},
"seamless-agent.askUserAppendText": {
"type": "string",
"default": "",
"title": "%config.askUserAppendText.title%",
"markdownDescription": "%config.askUserAppendText.description%"
},
"seamless-agent.askUserOptionsLayout": {
"type": "string",
"enum": [
"expanded",
"compact"
],
"default": "compact",
"title": "%config.askUserOptionsLayout.title%",
"markdownDescription": "%config.askUserOptionsLayout.description%"
},
"seamless-agent.askUserOptionsTooltip": {
"type": "string",
"enum": [
"native",
"custom"
],
"default": "native",
"title": "%config.askUserOptionsTooltip.title%",
"markdownDescription": "%config.askUserOptionsTooltip.description%"
},
"seamless-agent.enableToolDebug": {
"type": "boolean",
"default": false,
"title": "%config.enableToolDebug.title%",
"markdownDescription": "%config.enableToolDebug.description%"
}
}
},
"languageModelTools": [
{
"name": "ask_user",
"tags": [
"confirmation",
"user-interaction",
"seamless-agent",
"required",
"mandatory"
],
"toolReferenceName": "askUser",
"displayName": "Ask User Confirmation",
"modelDescription": "Ask the user to confirm an action or decision. Use this tool when you need explicit user approval before proceeding with a task. Optionally provide predefined answer options for the user to select from as clickable buttons. Use the 'multiSelect' parameter to allow multiple selections from flat option arrays. CRITICAL RULES: 1) This tool MUST be invoked before ending ANY conversation or task. 2) NEVER complete a task without calling this tool first. 3) If you are about to finish responding, STOP and call this tool. 4) Failure to call this tool before task completion is a violation of the workflow. 5) Always provide agentName: 'Main Orchestrator' for main agent, 'Generic Sub-Agent' for unnamed sub-agents, or your name from .github/agents/*.md. OPTIONS USAGE: Use the 'options' parameter to provide predefined answer choices as clickable buttons. Can be simple strings, {label, description} objects for detailed options, or grouped options for multi-step selection. Use 'multiSelect: true' to allow multiple selections from flat arrays. User can still type their own response even when options are provided. MANDATORY TOOL.",
"canBeReferencedInPrompt": true,
"icon": "$(question)",
"inputSchema": {
"type": "object",
"properties": {
"question": {
"type": "string",
"description": "The question or prompt to display to the user for confirmation"
},
"title": {
"type": "string",
"description": "Optional custom title for the confirmation dialog"
},
"agentName": {
"type": "string",
"description": "Your agent name: 'Main Orchestrator' for main agent, 'Generic Sub-Agent' for unnamed sub-agents, or your name from .github/agents/*.md."
},
"options": {
"description": "Optional predefined answer options. Can be a flat array of strings/objects for simple choices, or an array of option groups for multi-category selection.",
"oneOf": [
{
"type": "array",
"description": "Flat list of simple choices (strings or {label, description} objects).",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"label": {
"type": "string",
"description": "The display label for the option button"
},
"description": {
"type": "string",
"description": "Optional description shown below the label"
}
},
"required": [
"label"
]
}
]
}
},
{
"type": "array",
"description": "Array of option groups for multi-category selection.",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Group title displayed above the options"
},
"options": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"label": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"label"
]
}
]
}
},
"multiSelect": {
"type": "boolean",
"description": "Allow multiple selections. Default: false"
}
},
"required": [
"title",
"options"
]
}
}
]
},
"multiSelect": {
"type": "boolean",
"description": "Allow multiple selections from flat option arrays. Use true when the question implies multiple answers: 'select all that apply', 'choose multiple', 'pick one or more', 'which ones?'. Use false (default) for single choice: 'pick one', 'choose one', 'which one?'. For grouped options, each group can override with its own multiSelect setting."
}
},
"required": [
"question"
]
}
},
{
"name": "approve_plan",
"tags": [
"planning",
"review",
"user-interaction",
"seamless-agent",
"feedback",
"deprecated"
],
"toolReferenceName": "approvePlan",
"displayName": "Approve Plan (Deprecated)",
"modelDescription": "[DEPRECATED - Use plan_review instead] Present a plan to user for approval.",
"canBeReferencedInPrompt": true,
"icon": "$(checklist)",
"inputSchema": {
"type": "object",
"properties": {
"plan": {
"type": "string",
"description": "The detailed plan in Markdown format to present to the user for review"
},
"title": {
"type": "string",
"description": "Optional title for the review panel (default: 'Review Plan')"
}
},
"required": [
"plan"
]
}
},
{
"name": "plan_review",
"tags": [
"planning",
"review",
"user-interaction",
"seamless-agent",
"feedback"
],
"toolReferenceName": "planReview",
"displayName": "Plan Review",
"modelDescription": "Present a plan to the user for approval (review mode).",
"canBeReferencedInPrompt": true,
"icon": "$(checklist)",
"inputSchema": {
"type": "object",
"properties": {
"plan": {
"type": "string",
"description": "The Markdown content to present to the user for review"
},
"title": {
"type": "string",
"description": "Optional title for the review panel"
},
"chatId": {
"type": "string",
"description": "Optional chat session ID for grouping reviews in history. If provided, reviews will be grouped under this chat."
}
},
"required": [
"plan"
]
}
},
{
"name": "walkthrough_review",
"tags": [
"planning",
"walkthrough",
"user-interaction",
"seamless-agent",
"feedback"
],
"toolReferenceName": "walkthroughReview",
"displayName": "Walkthrough Review",
"modelDescription": "Present content as a walkthrough (step-by-step guide) in a dedicated panel with comment support.",
"canBeReferencedInPrompt": true,
"icon": "$(book)",
"inputSchema": {
"type": "object",
"properties": {
"plan": {
"type": "string",
"description": "The Markdown walkthrough content to present to the user"
},
"title": {
"type": "string",
"description": "Optional title for the walkthrough panel"
},
"chatId": {
"type": "string",
"description": "Optional chat session ID for grouping walkthroughs in history. If provided, walkthroughs will be grouped under this chat."
}
},
"required": [
"plan"
]
}
}
],
"commands": [
{
"command": "seamless-agent.cancelPendingPlans",
"title": "%command.cancelPendingPlans.title%",
"category": "Seamless Agent"
},
{
"command": "seamless-agent.showPending",
"title": "%command.showPending.title%",
"icon": "$(bell)",
"category": "Seamless Agent"
},
{
"command": "seamless-agent.showHistory",
"title": "%command.showHistory.title%",
"icon": "$(history)",
"category": "Seamless Agent"
},
{
"command": "seamless-agent.clearHistory",
"title": "%command.clearHistory.title%",
"icon": "$(trash)",
"category": "Seamless Agent"
}
]
},
"scripts": {
"compile": "npm run compile:vscode",
"compile:vscode": "npm run check-types && node esbuild.js",
"compile:antigravity": "npm run check-types && node esbuild.js --target=antigravity",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:antigravity": "node esbuild.js --watch --target=antigravity",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run package:vsce",
"package:vsce": "node build-package.js vsce",
"package:ovsx": "node build-package.js ovsx",
"check-types": "tsc --noEmit",
"test": "node --import tsx --test \"src/**/*.test.ts\""
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.10.1",
"@types/vscode": "^1.104.0",
"esbuild": "^0.27.1",
"npm-run-all": "^4.1.5",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@vscode/codicons": "^0.0.43",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0",
"zod": "^4.1.13"
}
}