@mark-gozner/aigile-method 1.0.0 β 1.0.2
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/core/agents/aigile-orchestrator.agent.md +9 -8
- package/core/agents/code-tour.agent.md +2 -2
- package/core/agents/dev.agent.md +5 -6
- package/core/agents/expert-react-frontend-engineer.agent.md +2 -2
- package/dist/agents/aigile-orchestrator.agent.txt +9 -8
- package/dist/agents/code-tour.agent.txt +2 -2
- package/dist/agents/dev.agent.txt +5 -6
- package/dist/agents/expert-react-frontend-engineer.agent.txt +2 -2
- package/dist/teams/team-company.txt +18 -18
- package/package.json +1 -1
- package/tools/cli.js +39 -75
- package/tools/installer/lib/ide-setup.js +64 -85
|
@@ -3,28 +3,29 @@ name: AIgile Orchestrator
|
|
|
3
3
|
description: "Intelligent coordinator with full tool access - orchestrates specialist agents and can perform direct actions when needed."
|
|
4
4
|
argument-hint: "Describe your goal and I'll coordinate the specialist agents"
|
|
5
5
|
tools:
|
|
6
|
-
['
|
|
7
|
-
model: Claude Opus 4.
|
|
8
|
-
|
|
6
|
+
['readFile', 'agent', 'codebase', 'fileSearch', 'textSearch', 'listDirectory', 'sequentialthinking/*']
|
|
7
|
+
model: Claude Opus 4.6
|
|
8
|
+
user-invokable: true
|
|
9
|
+
disable-model-invocation: true
|
|
9
10
|
handoffs:
|
|
10
11
|
- label: "ποΈ Architecture Review"
|
|
11
|
-
agent:
|
|
12
|
+
agent: Architect
|
|
12
13
|
prompt: "Analyze the architecture and provide recommendations based on the context above."
|
|
13
14
|
send: false
|
|
14
15
|
- label: "π» Start Implementation"
|
|
15
|
-
agent:
|
|
16
|
+
agent: Full Stack Developer
|
|
16
17
|
prompt: "Implement the plan outlined above using test-driven development."
|
|
17
18
|
send: false
|
|
18
19
|
- label: "π§ͺ Run QA Gate"
|
|
19
|
-
agent:
|
|
20
|
+
agent: Test Architect & Quality Advisor
|
|
20
21
|
prompt: "Review and test the implementation above for quality and completeness."
|
|
21
22
|
send: false
|
|
22
23
|
- label: "π Refine Backlog"
|
|
23
|
-
agent:
|
|
24
|
+
agent: Product Owner
|
|
24
25
|
prompt: "Refine the backlog items based on the discussion above."
|
|
25
26
|
send: false
|
|
26
27
|
- label: "π§ Analyze Requirements"
|
|
27
|
-
agent:
|
|
28
|
+
agent: Business Analyst
|
|
28
29
|
prompt: "Analyze the requirements and provide detailed breakdown."
|
|
29
30
|
send: false
|
|
30
31
|
---
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
description: 'Expert agent for creating and maintaining VSCode CodeTour files with comprehensive schema support and best practices'
|
|
3
3
|
name: 'VSCode Tour Expert'
|
|
4
4
|
tools:
|
|
5
|
-
['
|
|
6
|
-
model: Claude Opus 4.
|
|
5
|
+
['edit', 'search', 'runCommands', 'runTasks', 'runNotebooks', 'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace', 'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI', 'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure', 'fetch', 'githubRepo', 'selection', 'todos', 'atlassian/*', 'context7/*', 'sequentialthinking/*', 'github.com/*', 'github.vscode-pull-request-github/*']
|
|
6
|
+
model: Claude Opus 4.6
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
# VSCode Tour Expert πΊοΈ
|
package/core/agents/dev.agent.md
CHANGED
|
@@ -3,20 +3,19 @@ name: Full Stack Developer
|
|
|
3
3
|
description: "Expert developer for code implementation, debugging, refactoring, and test-driven development."
|
|
4
4
|
argument-hint: "Describe what you want to implement or fix"
|
|
5
5
|
tools:
|
|
6
|
-
['
|
|
7
|
-
model: Claude Opus 4.
|
|
8
|
-
infer: true
|
|
6
|
+
['edit', 'search', 'runCommands', 'runTasks', 'runNotebooks', 'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace', 'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI', 'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure', 'fetch', 'githubRepo', 'selection', 'todos', 'atlassian/*', 'context7/*', 'sequentialthinking/*', 'github.com/*', 'github.vscode-pull-request-github/*']
|
|
7
|
+
model: Claude Opus 4.6
|
|
9
8
|
handoffs:
|
|
10
9
|
- label: "π§ͺ Request QA Review"
|
|
11
|
-
agent:
|
|
10
|
+
agent: Test Architect & Quality Advisor
|
|
12
11
|
prompt: "Review the implementation above for quality and completeness."
|
|
13
12
|
send: false
|
|
14
13
|
- label: "ποΈ Architecture Check"
|
|
15
|
-
agent:
|
|
14
|
+
agent: Architect
|
|
16
15
|
prompt: "Verify the implementation follows architecture guidelines."
|
|
17
16
|
send: false
|
|
18
17
|
- label: "π Update Story"
|
|
19
|
-
agent:
|
|
18
|
+
agent: Product Owner
|
|
20
19
|
prompt: "Update the story with implementation details."
|
|
21
20
|
send: false
|
|
22
21
|
---
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
description: "Expert React 19.2 frontend engineer specializing in modern hooks, Server Components, Actions, TypeScript, and performance optimization"
|
|
3
3
|
name: "Expert React Frontend Engineer"
|
|
4
4
|
tools:
|
|
5
|
-
['
|
|
6
|
-
model: Claude Opus 4.
|
|
5
|
+
['edit', 'search', 'runCommands', 'runTasks', 'runNotebooks', 'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace', 'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI', 'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure', 'fetch', 'githubRepo', 'selection', 'todos', 'atlassian/*', 'context7/*', 'sequentialthinking/*', 'github.com/*', 'github.vscode-pull-request-github/*']
|
|
6
|
+
model: Claude Opus 4.6
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
# Expert React Frontend Engineer
|
|
@@ -26,28 +26,29 @@ name: AIgile Orchestrator
|
|
|
26
26
|
description: "Intelligent coordinator with full tool access - orchestrates specialist agents and can perform direct actions when needed."
|
|
27
27
|
argument-hint: "Describe your goal and I'll coordinate the specialist agents"
|
|
28
28
|
tools:
|
|
29
|
-
['
|
|
30
|
-
model: Claude Opus 4.
|
|
31
|
-
|
|
29
|
+
['readFile', 'agent', 'codebase', 'fileSearch', 'textSearch', 'listDirectory', 'sequentialthinking/*']
|
|
30
|
+
model: Claude Opus 4.6
|
|
31
|
+
user-invokable: true
|
|
32
|
+
disable-model-invocation: true
|
|
32
33
|
handoffs:
|
|
33
34
|
- label: "ποΈ Architecture Review"
|
|
34
|
-
agent:
|
|
35
|
+
agent: Architect
|
|
35
36
|
prompt: "Analyze the architecture and provide recommendations based on the context above."
|
|
36
37
|
send: false
|
|
37
38
|
- label: "π» Start Implementation"
|
|
38
|
-
agent:
|
|
39
|
+
agent: Full Stack Developer
|
|
39
40
|
prompt: "Implement the plan outlined above using test-driven development."
|
|
40
41
|
send: false
|
|
41
42
|
- label: "π§ͺ Run QA Gate"
|
|
42
|
-
agent:
|
|
43
|
+
agent: Test Architect & Quality Advisor
|
|
43
44
|
prompt: "Review and test the implementation above for quality and completeness."
|
|
44
45
|
send: false
|
|
45
46
|
- label: "π Refine Backlog"
|
|
46
|
-
agent:
|
|
47
|
+
agent: Product Owner
|
|
47
48
|
prompt: "Refine the backlog items based on the discussion above."
|
|
48
49
|
send: false
|
|
49
50
|
- label: "π§ Analyze Requirements"
|
|
50
|
-
agent:
|
|
51
|
+
agent: Business Analyst
|
|
51
52
|
prompt: "Analyze the requirements and provide detailed breakdown."
|
|
52
53
|
send: false
|
|
53
54
|
---
|
|
@@ -25,8 +25,8 @@ Notes:
|
|
|
25
25
|
description: 'Expert agent for creating and maintaining VSCode CodeTour files with comprehensive schema support and best practices'
|
|
26
26
|
name: 'VSCode Tour Expert'
|
|
27
27
|
tools:
|
|
28
|
-
['
|
|
29
|
-
model: Claude Opus 4.
|
|
28
|
+
['edit', 'search', 'runCommands', 'runTasks', 'runNotebooks', 'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace', 'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI', 'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure', 'fetch', 'githubRepo', 'selection', 'todos', 'atlassian/*', 'context7/*', 'sequentialthinking/*', 'github.com/*', 'github.vscode-pull-request-github/*']
|
|
29
|
+
model: Claude Opus 4.6
|
|
30
30
|
---
|
|
31
31
|
|
|
32
32
|
# VSCode Tour Expert πΊοΈ
|
|
@@ -26,20 +26,19 @@ name: Full Stack Developer
|
|
|
26
26
|
description: "Expert developer for code implementation, debugging, refactoring, and test-driven development."
|
|
27
27
|
argument-hint: "Describe what you want to implement or fix"
|
|
28
28
|
tools:
|
|
29
|
-
['
|
|
30
|
-
model: Claude Opus 4.
|
|
31
|
-
infer: true
|
|
29
|
+
['edit', 'search', 'runCommands', 'runTasks', 'runNotebooks', 'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace', 'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI', 'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure', 'fetch', 'githubRepo', 'selection', 'todos', 'atlassian/*', 'context7/*', 'sequentialthinking/*', 'github.com/*', 'github.vscode-pull-request-github/*']
|
|
30
|
+
model: Claude Opus 4.6
|
|
32
31
|
handoffs:
|
|
33
32
|
- label: "π§ͺ Request QA Review"
|
|
34
|
-
agent:
|
|
33
|
+
agent: Test Architect & Quality Advisor
|
|
35
34
|
prompt: "Review the implementation above for quality and completeness."
|
|
36
35
|
send: false
|
|
37
36
|
- label: "ποΈ Architecture Check"
|
|
38
|
-
agent:
|
|
37
|
+
agent: Architect
|
|
39
38
|
prompt: "Verify the implementation follows architecture guidelines."
|
|
40
39
|
send: false
|
|
41
40
|
- label: "π Update Story"
|
|
42
|
-
agent:
|
|
41
|
+
agent: Product Owner
|
|
43
42
|
prompt: "Update the story with implementation details."
|
|
44
43
|
send: false
|
|
45
44
|
---
|
|
@@ -25,8 +25,8 @@ Notes:
|
|
|
25
25
|
description: "Expert React 19.2 frontend engineer specializing in modern hooks, Server Components, Actions, TypeScript, and performance optimization"
|
|
26
26
|
name: "Expert React Frontend Engineer"
|
|
27
27
|
tools:
|
|
28
|
-
['
|
|
29
|
-
model: Claude Opus 4.
|
|
28
|
+
['edit', 'search', 'runCommands', 'runTasks', 'runNotebooks', 'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace', 'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI', 'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure', 'fetch', 'githubRepo', 'selection', 'todos', 'atlassian/*', 'context7/*', 'sequentialthinking/*', 'github.com/*', 'github.vscode-pull-request-github/*']
|
|
29
|
+
model: Claude Opus 4.6
|
|
30
30
|
---
|
|
31
31
|
|
|
32
32
|
# Expert React Frontend Engineer
|
|
@@ -525,28 +525,29 @@ name: AIgile Orchestrator
|
|
|
525
525
|
description: "Intelligent coordinator with full tool access - orchestrates specialist agents and can perform direct actions when needed."
|
|
526
526
|
argument-hint: "Describe your goal and I'll coordinate the specialist agents"
|
|
527
527
|
tools:
|
|
528
|
-
['
|
|
529
|
-
model: Claude Opus 4.
|
|
530
|
-
|
|
528
|
+
['readFile', 'agent', 'codebase', 'fileSearch', 'textSearch', 'listDirectory', 'sequentialthinking/*']
|
|
529
|
+
model: Claude Opus 4.6
|
|
530
|
+
user-invokable: true
|
|
531
|
+
disable-model-invocation: true
|
|
531
532
|
handoffs:
|
|
532
533
|
- label: "ποΈ Architecture Review"
|
|
533
|
-
agent:
|
|
534
|
+
agent: Architect
|
|
534
535
|
prompt: "Analyze the architecture and provide recommendations based on the context above."
|
|
535
536
|
send: false
|
|
536
537
|
- label: "π» Start Implementation"
|
|
537
|
-
agent:
|
|
538
|
+
agent: Full Stack Developer
|
|
538
539
|
prompt: "Implement the plan outlined above using test-driven development."
|
|
539
540
|
send: false
|
|
540
541
|
- label: "π§ͺ Run QA Gate"
|
|
541
|
-
agent:
|
|
542
|
+
agent: Test Architect & Quality Advisor
|
|
542
543
|
prompt: "Review and test the implementation above for quality and completeness."
|
|
543
544
|
send: false
|
|
544
545
|
- label: "π Refine Backlog"
|
|
545
|
-
agent:
|
|
546
|
+
agent: Product Owner
|
|
546
547
|
prompt: "Refine the backlog items based on the discussion above."
|
|
547
548
|
send: false
|
|
548
549
|
- label: "π§ Analyze Requirements"
|
|
549
|
-
agent:
|
|
550
|
+
agent: Business Analyst
|
|
550
551
|
prompt: "Analyze the requirements and provide detailed breakdown."
|
|
551
552
|
send: false
|
|
552
553
|
---
|
|
@@ -821,8 +822,8 @@ dependencies:
|
|
|
821
822
|
description: 'Expert agent for creating and maintaining VSCode CodeTour files with comprehensive schema support and best practices'
|
|
822
823
|
name: 'VSCode Tour Expert'
|
|
823
824
|
tools:
|
|
824
|
-
['
|
|
825
|
-
model: Claude Opus 4.
|
|
825
|
+
['edit', 'search', 'runCommands', 'runTasks', 'runNotebooks', 'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace', 'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI', 'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure', 'fetch', 'githubRepo', 'selection', 'todos', 'atlassian/*', 'context7/*', 'sequentialthinking/*', 'github.com/*', 'github.vscode-pull-request-github/*']
|
|
826
|
+
model: Claude Opus 4.6
|
|
826
827
|
---
|
|
827
828
|
|
|
828
829
|
# VSCode Tour Expert πΊοΈ
|
|
@@ -1033,20 +1034,19 @@ name: Full Stack Developer
|
|
|
1033
1034
|
description: "Expert developer for code implementation, debugging, refactoring, and test-driven development."
|
|
1034
1035
|
argument-hint: "Describe what you want to implement or fix"
|
|
1035
1036
|
tools:
|
|
1036
|
-
['
|
|
1037
|
-
model: Claude Opus 4.
|
|
1038
|
-
infer: true
|
|
1037
|
+
['edit', 'search', 'runCommands', 'runTasks', 'runNotebooks', 'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace', 'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI', 'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure', 'fetch', 'githubRepo', 'selection', 'todos', 'atlassian/*', 'context7/*', 'sequentialthinking/*', 'github.com/*', 'github.vscode-pull-request-github/*']
|
|
1038
|
+
model: Claude Opus 4.6
|
|
1039
1039
|
handoffs:
|
|
1040
1040
|
- label: "π§ͺ Request QA Review"
|
|
1041
|
-
agent:
|
|
1041
|
+
agent: Test Architect & Quality Advisor
|
|
1042
1042
|
prompt: "Review the implementation above for quality and completeness."
|
|
1043
1043
|
send: false
|
|
1044
1044
|
- label: "ποΈ Architecture Check"
|
|
1045
|
-
agent:
|
|
1045
|
+
agent: Architect
|
|
1046
1046
|
prompt: "Verify the implementation follows architecture guidelines."
|
|
1047
1047
|
send: false
|
|
1048
1048
|
- label: "π Update Story"
|
|
1049
|
-
agent:
|
|
1049
|
+
agent: Product Owner
|
|
1050
1050
|
prompt: "Update the story with implementation details."
|
|
1051
1051
|
send: false
|
|
1052
1052
|
---
|
|
@@ -1313,8 +1313,8 @@ notes:
|
|
|
1313
1313
|
description: "Expert React 19.2 frontend engineer specializing in modern hooks, Server Components, Actions, TypeScript, and performance optimization"
|
|
1314
1314
|
name: "Expert React Frontend Engineer"
|
|
1315
1315
|
tools:
|
|
1316
|
-
['
|
|
1317
|
-
model: Claude Opus 4.
|
|
1316
|
+
['edit', 'search', 'runCommands', 'runTasks', 'runNotebooks', 'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace', 'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI', 'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure', 'fetch', 'githubRepo', 'selection', 'todos', 'atlassian/*', 'context7/*', 'sequentialthinking/*', 'github.com/*', 'github.vscode-pull-request-github/*']
|
|
1317
|
+
model: Claude Opus 4.6
|
|
1318
1318
|
---
|
|
1319
1319
|
|
|
1320
1320
|
# Expert React Frontend Engineer
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mark-gozner/aigile-method",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "AIgile Development Method by Mark Gozner - AI-powered development with custom agents, handoffs, and subagent delegation",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "SEE LICENSE",
|
package/tools/cli.js
CHANGED
|
@@ -1212,66 +1212,30 @@ function generateCustomAgent({ agentId, agentMeta, agentMd, tools, tasks, checkl
|
|
|
1212
1212
|
const metaName = agentMeta.name || title;
|
|
1213
1213
|
|
|
1214
1214
|
// Full tool list for all agents (except orchestrator)
|
|
1215
|
+
// Uses new VS Code tool naming: simple names, tool sets, and MCP wildcards
|
|
1215
1216
|
const FULL_AGENT_TOOLS = [
|
|
1216
|
-
//
|
|
1217
|
-
'
|
|
1218
|
-
'
|
|
1219
|
-
'
|
|
1220
|
-
//
|
|
1221
|
-
'
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
'
|
|
1225
|
-
'
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
'
|
|
1230
|
-
'
|
|
1231
|
-
'
|
|
1232
|
-
'
|
|
1233
|
-
'atlassian/jira_get_link_types', 'atlassian/jira_get_project_issues', 'atlassian/jira_get_project_versions',
|
|
1234
|
-
'atlassian/jira_get_sprint_issues', 'atlassian/jira_get_sprints_from_board', 'atlassian/jira_get_transitions',
|
|
1235
|
-
'atlassian/jira_get_user_profile', 'atlassian/jira_get_worklog', 'atlassian/jira_search', 'atlassian/jira_search_fields',
|
|
1236
|
-
// Context7 MCP
|
|
1237
|
-
'context7/get-library-docs', 'context7/resolve-library-id',
|
|
1238
|
-
// Sequential Thinking MCP
|
|
1239
|
-
'sequentialthinking/sequentialthinking',
|
|
1240
|
-
// Edit tools
|
|
1241
|
-
'edit/createDirectory', 'edit/createFile', 'edit/createJupyterNotebook',
|
|
1242
|
-
'edit/editFiles', 'edit/editNotebook',
|
|
1243
|
-
// Search tools
|
|
1244
|
-
'search/changes', 'search/codebase', 'search/fileSearch', 'search/listDirectory',
|
|
1245
|
-
'search/searchResults', 'search/textSearch', 'search/usages', 'search/searchSubagent',
|
|
1246
|
-
// Web tools
|
|
1247
|
-
'web/fetch', 'web/githubRepo',
|
|
1248
|
-
// GitHub MCP
|
|
1249
|
-
'github/add_comment_to_pending_review', 'github/add_issue_comment', 'github/assign_copilot_to_issue',
|
|
1250
|
-
'github/create_branch', 'github/create_or_update_file', 'github/create_pull_request',
|
|
1251
|
-
'github/create_repository', 'github/delete_file', 'github/fork_repository', 'github/get_commit',
|
|
1252
|
-
'github/get_file_contents', 'github/get_label', 'github/get_latest_release', 'github/get_me',
|
|
1253
|
-
'github/get_release_by_tag', 'github/get_tag', 'github/get_team_members', 'github/get_teams',
|
|
1254
|
-
'github/issue_read', 'github/issue_write', 'github/list_branches', 'github/list_commits',
|
|
1255
|
-
'github/list_issue_types', 'github/list_issues', 'github/list_pull_requests', 'github/list_releases',
|
|
1256
|
-
'github/list_tags', 'github/merge_pull_request', 'github/pull_request_read',
|
|
1257
|
-
'github/pull_request_review_write', 'github/push_files', 'github/request_copilot_review',
|
|
1258
|
-
'github/search_code', 'github/search_issues', 'github/search_pull_requests',
|
|
1259
|
-
'github/search_repositories', 'github/search_users', 'github/sub_issue_write',
|
|
1260
|
-
'github/update_pull_request', 'github/update_pull_request_branch',
|
|
1261
|
-
// Upstash Context7 MCP
|
|
1262
|
-
'upstash/context7/query-docs', 'upstash/context7/resolve-library-id',
|
|
1263
|
-
// GitHub PR extension tools
|
|
1264
|
-
'github.vscode-pull-request-github/issue_fetch', 'github.vscode-pull-request-github/suggest-fix',
|
|
1265
|
-
'github.vscode-pull-request-github/searchSyntax', 'github.vscode-pull-request-github/doSearch',
|
|
1266
|
-
'github.vscode-pull-request-github/renderIssues', 'github.vscode-pull-request-github/activePullRequest',
|
|
1267
|
-
'github.vscode-pull-request-github/openPullRequest',
|
|
1268
|
-
// Other tools
|
|
1269
|
-
'todo'
|
|
1217
|
+
// Tool sets (groups of related tools)
|
|
1218
|
+
'edit', // createDirectory, createFile, editFiles, editNotebook, newJupyterNotebook
|
|
1219
|
+
'search', // changes, codebase, fileSearch, listDirectory, searchResults, textSearch, usages
|
|
1220
|
+
'runCommands', // getTerminalOutput, runInTerminal, terminalLastCommand, terminalSelection
|
|
1221
|
+
'runTasks', // createAndRunTask, getTaskOutput, runTask
|
|
1222
|
+
'runNotebooks', // getNotebookSummary, readNotebookCellOutput, runCell, editNotebook
|
|
1223
|
+
// Individual built-in tools
|
|
1224
|
+
'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace',
|
|
1225
|
+
'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI',
|
|
1226
|
+
'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure',
|
|
1227
|
+
'fetch', 'githubRepo', 'selection', 'todos',
|
|
1228
|
+
// MCP servers (wildcard includes all tools from each server)
|
|
1229
|
+
'atlassian/*',
|
|
1230
|
+
'context7/*',
|
|
1231
|
+
'sequentialthinking/*',
|
|
1232
|
+
'github.com/*',
|
|
1233
|
+
'github.vscode-pull-request-github/*'
|
|
1270
1234
|
];
|
|
1271
1235
|
|
|
1272
1236
|
// Use full tool list for all agents except orchestrator
|
|
1273
1237
|
const toolList = agentId === 'aigile-orchestrator'
|
|
1274
|
-
? ['agent
|
|
1238
|
+
? ['readFile', 'agent', 'codebase', 'fileSearch', 'textSearch', 'listDirectory', 'sequentialthinking/*']
|
|
1275
1239
|
: [...new Set([...FULL_AGENT_TOOLS, ...tools])].sort();
|
|
1276
1240
|
|
|
1277
1241
|
// Generate handoffs based on agent role
|
|
@@ -1288,8 +1252,8 @@ function generateCustomAgent({ agentId, agentMeta, agentMd, tools, tasks, checkl
|
|
|
1288
1252
|
for (const t of toolList) {
|
|
1289
1253
|
fmLines.push(` - ${t}`);
|
|
1290
1254
|
}
|
|
1291
|
-
fmLines.push('model: Claude Opus 4.
|
|
1292
|
-
fmLines.push('
|
|
1255
|
+
fmLines.push('model: Claude Opus 4.6');
|
|
1256
|
+
fmLines.push('user-invokable: true');
|
|
1293
1257
|
|
|
1294
1258
|
if (handoffs.length > 0) {
|
|
1295
1259
|
fmLines.push('handoffs:');
|
|
@@ -1379,41 +1343,41 @@ function generateCustomAgent({ agentId, agentMeta, agentMd, tools, tasks, checkl
|
|
|
1379
1343
|
function generateHandoffsFor(agentId) {
|
|
1380
1344
|
const handoffMappings = {
|
|
1381
1345
|
'aigile-orchestrator': [
|
|
1382
|
-
{ label: 'ποΈ Architecture Review', agent: '
|
|
1383
|
-
{ label: 'π» Start Implementation', agent: '
|
|
1384
|
-
{ label: 'π§ͺ Run QA Gate', agent: '
|
|
1385
|
-
{ label: 'π Refine Backlog', agent: '
|
|
1346
|
+
{ label: 'ποΈ Architecture Review', agent: 'Architect', prompt: 'Analyze the architecture and provide recommendations.', send: false },
|
|
1347
|
+
{ label: 'π» Start Implementation', agent: 'Full Stack Developer', prompt: 'Implement the plan using test-driven development.', send: false },
|
|
1348
|
+
{ label: 'π§ͺ Run QA Gate', agent: 'Test Architect & Quality Advisor', prompt: 'Review and test the implementation for quality.', send: false },
|
|
1349
|
+
{ label: 'π Refine Backlog', agent: 'Product Owner', prompt: 'Refine the backlog items based on discussion.', send: false },
|
|
1386
1350
|
],
|
|
1387
1351
|
dev: [
|
|
1388
|
-
{ label: 'π§ͺ Request QA Review', agent: '
|
|
1389
|
-
{ label: 'ποΈ Architecture Check', agent: '
|
|
1352
|
+
{ label: 'π§ͺ Request QA Review', agent: 'Test Architect & Quality Advisor', prompt: 'Review the implementation above for quality.', send: false },
|
|
1353
|
+
{ label: 'ποΈ Architecture Check', agent: 'Architect', prompt: 'Verify architecture compliance.', send: false },
|
|
1390
1354
|
],
|
|
1391
1355
|
architect: [
|
|
1392
|
-
{ label: 'π» Start Implementation', agent: '
|
|
1393
|
-
{ label: 'π Create Stories', agent: '
|
|
1356
|
+
{ label: 'π» Start Implementation', agent: 'Full Stack Developer', prompt: 'Implement the architecture recommendations.', send: false },
|
|
1357
|
+
{ label: 'π Create Stories', agent: 'Product Owner', prompt: 'Create backlog items for architecture changes.', send: false },
|
|
1394
1358
|
],
|
|
1395
1359
|
po: [
|
|
1396
|
-
{ label: 'π» Implement Story', agent: '
|
|
1397
|
-
{ label: 'π§ Analyze Further', agent: '
|
|
1360
|
+
{ label: 'π» Implement Story', agent: 'Full Stack Developer', prompt: 'Implement the story defined above.', send: false },
|
|
1361
|
+
{ label: 'π§ Analyze Further', agent: 'Business Analyst', prompt: 'Provide deeper analysis of requirements.', send: false },
|
|
1398
1362
|
],
|
|
1399
1363
|
qa: [
|
|
1400
|
-
{ label: 'π» Fix Issues', agent: '
|
|
1401
|
-
{ label: 'π Update Stories', agent: '
|
|
1364
|
+
{ label: 'π» Fix Issues', agent: 'Full Stack Developer', prompt: 'Fix the issues identified in QA review.', send: false },
|
|
1365
|
+
{ label: 'π Update Stories', agent: 'Product Owner', prompt: 'Update stories based on QA findings.', send: false },
|
|
1402
1366
|
],
|
|
1403
1367
|
analyst: [
|
|
1404
|
-
{ label: 'π Create Stories', agent: '
|
|
1405
|
-
{ label: 'ποΈ Architecture Review', agent: '
|
|
1368
|
+
{ label: 'π Create Stories', agent: 'Product Owner', prompt: 'Create stories from analysis findings.', send: false },
|
|
1369
|
+
{ label: 'ποΈ Architecture Review', agent: 'Architect', prompt: 'Review architecture implications.', send: false },
|
|
1406
1370
|
],
|
|
1407
1371
|
pm: [
|
|
1408
|
-
{ label: 'π Refine Stories', agent: '
|
|
1372
|
+
{ label: 'π Refine Stories', agent: 'Product Owner', prompt: 'Refine the stories in the plan.', send: false },
|
|
1409
1373
|
],
|
|
1410
1374
|
sm: [],
|
|
1411
1375
|
'ui-expert': [
|
|
1412
|
-
{ label: 'π» Implement UI', agent: '
|
|
1376
|
+
{ label: 'π» Implement UI', agent: 'Full Stack Developer', prompt: 'Implement the UI specifications.', send: false },
|
|
1413
1377
|
],
|
|
1414
1378
|
'ux-expert': [
|
|
1415
|
-
{ label: 'ποΈ Design System', agent: '
|
|
1416
|
-
{ label: 'π» Implement UX', agent: '
|
|
1379
|
+
{ label: 'ποΈ Design System', agent: 'UI Expert', prompt: 'Create design system components.', send: false },
|
|
1380
|
+
{ label: 'π» Implement UX', agent: 'Full Stack Developer', prompt: 'Implement the UX recommendations.', send: false },
|
|
1417
1381
|
],
|
|
1418
1382
|
};
|
|
1419
1383
|
|
|
@@ -3,49 +3,26 @@ import fs from 'fs-extra';
|
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Full tool list for all agents (except orchestrator)
|
|
6
|
+
* Uses new VS Code tool naming: simple names, tool sets, and MCP wildcards
|
|
6
7
|
*/
|
|
7
8
|
const FULL_AGENT_TOOLS = [
|
|
8
|
-
//
|
|
9
|
-
'
|
|
10
|
-
'
|
|
11
|
-
//
|
|
12
|
-
'
|
|
13
|
-
'
|
|
14
|
-
//
|
|
15
|
-
'
|
|
16
|
-
'
|
|
17
|
-
|
|
18
|
-
'
|
|
19
|
-
//
|
|
20
|
-
'
|
|
21
|
-
'
|
|
22
|
-
|
|
23
|
-
'
|
|
24
|
-
'
|
|
25
|
-
// Web tools
|
|
26
|
-
'web/fetch', 'web/githubRepo',
|
|
27
|
-
// Context7 MCP
|
|
28
|
-
'upstash/context7/query-docs', 'upstash/context7/resolve-library-id',
|
|
29
|
-
// GitHub MCP
|
|
30
|
-
'github/add_comment_to_pending_review', 'github/add_issue_comment', 'github/assign_copilot_to_issue',
|
|
31
|
-
'github/create_branch', 'github/create_or_update_file', 'github/create_pull_request',
|
|
32
|
-
'github/create_repository', 'github/delete_file', 'github/fork_repository', 'github/get_commit',
|
|
33
|
-
'github/get_file_contents', 'github/get_label', 'github/get_latest_release', 'github/get_me',
|
|
34
|
-
'github/get_release_by_tag', 'github/get_tag', 'github/get_team_members', 'github/get_teams',
|
|
35
|
-
'github/issue_read', 'github/issue_write', 'github/list_branches', 'github/list_commits',
|
|
36
|
-
'github/list_issue_types', 'github/list_issues', 'github/list_pull_requests', 'github/list_releases',
|
|
37
|
-
'github/list_tags', 'github/merge_pull_request', 'github/pull_request_read',
|
|
38
|
-
'github/pull_request_review_write', 'github/push_files', 'github/request_copilot_review',
|
|
39
|
-
'github/search_code', 'github/search_issues', 'github/search_pull_requests',
|
|
40
|
-
'github/search_repositories', 'github/search_users', 'github/sub_issue_write',
|
|
41
|
-
'github/update_pull_request', 'github/update_pull_request_branch',
|
|
42
|
-
// Other tools
|
|
43
|
-
'askQuestions', 'todo',
|
|
44
|
-
// GitHub PR extension tools
|
|
45
|
-
'github.vscode-pull-request-github/issue_fetch', 'github.vscode-pull-request-github/suggest-fix',
|
|
46
|
-
'github.vscode-pull-request-github/searchSyntax', 'github.vscode-pull-request-github/doSearch',
|
|
47
|
-
'github.vscode-pull-request-github/renderIssues', 'github.vscode-pull-request-github/activePullRequest',
|
|
48
|
-
'github.vscode-pull-request-github/openPullRequest'
|
|
9
|
+
// Tool sets (groups of related tools)
|
|
10
|
+
'edit', // createDirectory, createFile, editFiles, editNotebook, newJupyterNotebook
|
|
11
|
+
'search', // changes, codebase, fileSearch, listDirectory, searchResults, textSearch, usages
|
|
12
|
+
'runCommands', // getTerminalOutput, runInTerminal, terminalLastCommand, terminalSelection
|
|
13
|
+
'runTasks', // createAndRunTask, getTaskOutput, runTask
|
|
14
|
+
'runNotebooks', // getNotebookSummary, readNotebookCellOutput, runCell, editNotebook
|
|
15
|
+
// Individual built-in tools
|
|
16
|
+
'extensions', 'getProjectSetupInfo', 'installExtension', 'newWorkspace',
|
|
17
|
+
'openSimpleBrowser', 'runVscodeCommand', 'VSCodeAPI',
|
|
18
|
+
'problems', 'readFile', 'runSubagent', 'runTests', 'testFailure',
|
|
19
|
+
'fetch', 'githubRepo', 'selection', 'todos',
|
|
20
|
+
// MCP servers (wildcard includes all tools from each server)
|
|
21
|
+
'atlassian/*',
|
|
22
|
+
'context7/*',
|
|
23
|
+
'sequentialthinking/*',
|
|
24
|
+
'github.com/*',
|
|
25
|
+
'github.vscode-pull-request-github/*'
|
|
49
26
|
];
|
|
50
27
|
|
|
51
28
|
/**
|
|
@@ -54,101 +31,102 @@ const FULL_AGENT_TOOLS = [
|
|
|
54
31
|
const AGENT_METADATA = {
|
|
55
32
|
'aigile-orchestrator': {
|
|
56
33
|
description: 'PURE COORDINATOR - I have NO implementation tools. I can ONLY delegate via runSubagent.',
|
|
57
|
-
tools: ['agent
|
|
58
|
-
model: 'Claude Opus 4.
|
|
34
|
+
tools: ['readFile', 'agent', 'codebase', 'fileSearch', 'textSearch', 'listDirectory', 'sequentialthinking/*'],
|
|
35
|
+
model: 'Claude Opus 4.6',
|
|
59
36
|
handoffs: [
|
|
60
|
-
{ label: 'ποΈ Architecture Review', agent: '
|
|
61
|
-
{ label: 'π» Start Implementation', agent: '
|
|
62
|
-
{ label: 'π§ͺ Run QA Gate', agent: '
|
|
63
|
-
{ label: 'π Refine Backlog', agent: '
|
|
64
|
-
{ label: 'π§ Analyze Requirements', agent: '
|
|
37
|
+
{ label: 'ποΈ Architecture Review', agent: 'Architect', prompt: 'Analyze the architecture and provide recommendations.', send: false },
|
|
38
|
+
{ label: 'π» Start Implementation', agent: 'Full Stack Developer', prompt: 'Implement the plan using test-driven development.', send: false },
|
|
39
|
+
{ label: 'π§ͺ Run QA Gate', agent: 'Test Architect & Quality Advisor', prompt: 'Review and test the implementation for quality.', send: false },
|
|
40
|
+
{ label: 'π Refine Backlog', agent: 'Product Owner', prompt: 'Refine the backlog items based on discussion.', send: false },
|
|
41
|
+
{ label: 'π§ Analyze Requirements', agent: 'Business Analyst', prompt: 'Analyze requirements and provide breakdown.', send: false },
|
|
65
42
|
],
|
|
66
|
-
|
|
43
|
+
'user-invokable': true,
|
|
44
|
+
'disable-model-invocation': true
|
|
67
45
|
},
|
|
68
46
|
'dev': {
|
|
69
47
|
description: 'Full Stack Developer - code implementation, debugging, refactoring, and test-driven development.',
|
|
70
48
|
tools: FULL_AGENT_TOOLS,
|
|
71
|
-
model: 'Claude Opus 4.
|
|
49
|
+
model: 'Claude Opus 4.6',
|
|
72
50
|
handoffs: [
|
|
73
|
-
{ label: 'π§ͺ Request QA Review', agent: '
|
|
74
|
-
{ label: 'ποΈ Architecture Check', agent: '
|
|
51
|
+
{ label: 'π§ͺ Request QA Review', agent: 'Test Architect & Quality Advisor', prompt: 'Review the implementation above for quality.', send: false },
|
|
52
|
+
{ label: 'ποΈ Architecture Check', agent: 'Architect', prompt: 'Verify architecture compliance.', send: false },
|
|
75
53
|
],
|
|
76
|
-
|
|
54
|
+
'user-invokable': true
|
|
77
55
|
},
|
|
78
56
|
'architect': {
|
|
79
57
|
description: 'Software Architect - architecture analysis, code review, documentation, and system design.',
|
|
80
58
|
tools: FULL_AGENT_TOOLS,
|
|
81
|
-
model: 'Claude Opus 4.
|
|
59
|
+
model: 'Claude Opus 4.6',
|
|
82
60
|
handoffs: [
|
|
83
|
-
{ label: 'π» Start Implementation', agent: '
|
|
84
|
-
{ label: 'π Create Stories', agent: '
|
|
61
|
+
{ label: 'π» Start Implementation', agent: 'Full Stack Developer', prompt: 'Implement the architecture recommendations.', send: false },
|
|
62
|
+
{ label: 'π Create Stories', agent: 'Product Owner', prompt: 'Create backlog items for architecture changes.', send: false },
|
|
85
63
|
],
|
|
86
|
-
|
|
64
|
+
'user-invokable': true
|
|
87
65
|
},
|
|
88
66
|
'po': {
|
|
89
67
|
description: 'Product Owner - story creation, backlog management, and Jira integration.',
|
|
90
68
|
tools: FULL_AGENT_TOOLS,
|
|
91
|
-
model: 'Claude Opus 4.
|
|
69
|
+
model: 'Claude Opus 4.6',
|
|
92
70
|
handoffs: [
|
|
93
|
-
{ label: 'π» Implement Story', agent: '
|
|
94
|
-
{ label: 'π§ Analyze Further', agent: '
|
|
71
|
+
{ label: 'π» Implement Story', agent: 'Full Stack Developer', prompt: 'Implement the story defined above.', send: false },
|
|
72
|
+
{ label: 'π§ Analyze Further', agent: 'Business Analyst', prompt: 'Provide deeper analysis of requirements.', send: false },
|
|
95
73
|
],
|
|
96
|
-
|
|
74
|
+
'user-invokable': true
|
|
97
75
|
},
|
|
98
76
|
'qa': {
|
|
99
77
|
description: 'QA Engineer - testing, quality gates, E2E verification, and test automation.',
|
|
100
78
|
tools: FULL_AGENT_TOOLS,
|
|
101
|
-
model: 'Claude Opus 4.
|
|
79
|
+
model: 'Claude Opus 4.6',
|
|
102
80
|
handoffs: [
|
|
103
|
-
{ label: 'π» Fix Issues', agent: '
|
|
104
|
-
{ label: 'π Update Stories', agent: '
|
|
81
|
+
{ label: 'π» Fix Issues', agent: 'Full Stack Developer', prompt: 'Fix the issues identified in QA review.', send: false },
|
|
82
|
+
{ label: 'π Update Stories', agent: 'Product Owner', prompt: 'Update stories based on QA findings.', send: false },
|
|
105
83
|
],
|
|
106
|
-
|
|
84
|
+
'user-invokable': true
|
|
107
85
|
},
|
|
108
86
|
'analyst': {
|
|
109
87
|
description: 'Business Analyst - requirements analysis, brainstorming, research, and elicitation.',
|
|
110
88
|
tools: FULL_AGENT_TOOLS,
|
|
111
|
-
model: 'Claude Opus 4.
|
|
89
|
+
model: 'Claude Opus 4.6',
|
|
112
90
|
handoffs: [
|
|
113
|
-
{ label: 'π Create Stories', agent: '
|
|
114
|
-
{ label: 'ποΈ Architecture Review', agent: '
|
|
91
|
+
{ label: 'π Create Stories', agent: 'Product Owner', prompt: 'Create stories from analysis findings.', send: false },
|
|
92
|
+
{ label: 'ποΈ Architecture Review', agent: 'Architect', prompt: 'Review architecture implications.', send: false },
|
|
115
93
|
],
|
|
116
|
-
|
|
94
|
+
'user-invokable': true
|
|
117
95
|
},
|
|
118
96
|
'pm': {
|
|
119
97
|
description: 'Project Manager - project planning, backlog sync, PRDs, and roadmap management.',
|
|
120
98
|
tools: FULL_AGENT_TOOLS,
|
|
121
|
-
model: 'Claude Opus 4.
|
|
99
|
+
model: 'Claude Opus 4.6',
|
|
122
100
|
handoffs: [
|
|
123
|
-
{ label: 'π Refine Stories', agent: '
|
|
101
|
+
{ label: 'π Refine Stories', agent: 'Product Owner', prompt: 'Refine the stories in the plan.', send: false },
|
|
124
102
|
],
|
|
125
|
-
|
|
103
|
+
'user-invokable': true
|
|
126
104
|
},
|
|
127
105
|
'sm': {
|
|
128
106
|
description: 'Scrum Master - sprint ceremonies, standup facilitation, and team coordination.',
|
|
129
107
|
tools: FULL_AGENT_TOOLS,
|
|
130
|
-
model: 'Claude Opus 4.
|
|
108
|
+
model: 'Claude Opus 4.6',
|
|
131
109
|
handoffs: [],
|
|
132
|
-
|
|
110
|
+
'user-invokable': true
|
|
133
111
|
},
|
|
134
112
|
'ui-expert': {
|
|
135
113
|
description: 'UI Expert - design system audit, Figma integration, and component specifications.',
|
|
136
114
|
tools: FULL_AGENT_TOOLS,
|
|
137
|
-
model: 'Claude Opus 4.
|
|
115
|
+
model: 'Claude Opus 4.6',
|
|
138
116
|
handoffs: [
|
|
139
|
-
{ label: 'π» Implement UI', agent: '
|
|
117
|
+
{ label: 'π» Implement UI', agent: 'Full Stack Developer', prompt: 'Implement the UI specifications.', send: false },
|
|
140
118
|
],
|
|
141
|
-
|
|
119
|
+
'user-invokable': true
|
|
142
120
|
},
|
|
143
121
|
'ux-expert': {
|
|
144
122
|
description: 'UX Expert - user experience design, frontend specs, and user journey mapping.',
|
|
145
123
|
tools: FULL_AGENT_TOOLS,
|
|
146
|
-
model: 'Claude Opus 4.
|
|
124
|
+
model: 'Claude Opus 4.6',
|
|
147
125
|
handoffs: [
|
|
148
|
-
{ label: 'ποΈ Design System', agent: '
|
|
149
|
-
{ label: 'π» Implement UX', agent: '
|
|
126
|
+
{ label: 'ποΈ Design System', agent: 'UI Expert', prompt: 'Create design system components.', send: false },
|
|
127
|
+
{ label: 'π» Implement UX', agent: 'Full Stack Developer', prompt: 'Implement the UX recommendations.', send: false },
|
|
150
128
|
],
|
|
151
|
-
|
|
129
|
+
'user-invokable': true
|
|
152
130
|
},
|
|
153
131
|
};
|
|
154
132
|
|
|
@@ -185,9 +163,10 @@ function generateFrontmatter(id, metadata) {
|
|
|
185
163
|
}
|
|
186
164
|
}
|
|
187
165
|
|
|
188
|
-
// Always add model - default to Claude Opus 4.
|
|
189
|
-
lines.push(`model: ${metadata.model || 'Claude Opus 4.
|
|
190
|
-
if (metadata
|
|
166
|
+
// Always add model - default to Claude Opus 4.6
|
|
167
|
+
lines.push(`model: ${metadata.model || 'Claude Opus 4.6'}`);
|
|
168
|
+
if (metadata['user-invokable'] !== undefined) lines.push(`user-invokable: ${metadata['user-invokable']}`);
|
|
169
|
+
if (metadata['disable-model-invocation'] !== undefined) lines.push(`disable-model-invocation: ${metadata['disable-model-invocation']}`);
|
|
191
170
|
|
|
192
171
|
if (metadata.handoffs && metadata.handoffs.length > 0) {
|
|
193
172
|
lines.push('handoffs:');
|
|
@@ -237,7 +216,7 @@ export function setupGithubCopilot({ srcAgentsDir, destChatmodesDir, destAgentsD
|
|
|
237
216
|
description: `Activates the ${id} agent persona (AIgile).`,
|
|
238
217
|
tools: ['search', 'fetch', 'codebase', 'problems'],
|
|
239
218
|
handoffs: [],
|
|
240
|
-
|
|
219
|
+
'user-invokable': true
|
|
241
220
|
};
|
|
242
221
|
|
|
243
222
|
const frontmatter = generateFrontmatter(id, metadata);
|