@defai.digital/automatosx 5.0.13 → 5.1.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/CHANGELOG.md +110 -0
- package/README.md +310 -92
- package/dist/index.js +7784 -6097
- package/dist/index.js.map +1 -1
- package/dist/version.json +3 -3
- package/examples/AGENTS_INFO.md +495 -0
- package/examples/README.md +434 -0
- package/examples/abilities/accessibility.md +115 -0
- package/examples/abilities/api-design.md +159 -0
- package/examples/abilities/best-practices.md +102 -0
- package/examples/abilities/caching-strategy.md +165 -0
- package/examples/abilities/ci-cd.md +61 -0
- package/examples/abilities/code-generation.md +95 -0
- package/examples/abilities/code-review.md +42 -0
- package/examples/abilities/component-architecture.md +112 -0
- package/examples/abilities/content-creation.md +97 -0
- package/examples/abilities/data-modeling.md +171 -0
- package/examples/abilities/data-validation.md +50 -0
- package/examples/abilities/db-modeling.md +158 -0
- package/examples/abilities/debugging.md +43 -0
- package/examples/abilities/dependency-audit.md +60 -0
- package/examples/abilities/design-system-implementation.md +126 -0
- package/examples/abilities/documentation.md +54 -0
- package/examples/abilities/error-analysis.md +107 -0
- package/examples/abilities/etl-pipelines.md +44 -0
- package/examples/abilities/feasibility-study.md +20 -0
- package/examples/abilities/general-assistance.md +26 -0
- package/examples/abilities/idea-evaluation.md +21 -0
- package/examples/abilities/infra-as-code.md +57 -0
- package/examples/abilities/job-orchestration.md +44 -0
- package/examples/abilities/literature-review.md +19 -0
- package/examples/abilities/logical-analysis.md +21 -0
- package/examples/abilities/longform-report.md +25 -0
- package/examples/abilities/observability.md +61 -0
- package/examples/abilities/our-architecture-decisions.md +180 -0
- package/examples/abilities/our-code-review-checklist.md +149 -0
- package/examples/abilities/our-coding-standards.md +270 -0
- package/examples/abilities/our-project-structure.md +175 -0
- package/examples/abilities/performance-analysis.md +56 -0
- package/examples/abilities/performance.md +80 -0
- package/examples/abilities/problem-solving.md +50 -0
- package/examples/abilities/refactoring.md +49 -0
- package/examples/abilities/release-strategy.md +58 -0
- package/examples/abilities/risk-assessment.md +19 -0
- package/examples/abilities/secrets-policy.md +61 -0
- package/examples/abilities/secure-coding-review.md +51 -0
- package/examples/abilities/security-audit.md +65 -0
- package/examples/abilities/sql-optimization.md +84 -0
- package/examples/abilities/state-management.md +96 -0
- package/examples/abilities/task-planning.md +65 -0
- package/examples/abilities/technical-writing.md +77 -0
- package/examples/abilities/testing.md +47 -0
- package/examples/abilities/threat-modeling.md +49 -0
- package/examples/abilities/troubleshooting.md +80 -0
- package/examples/agents/.tmp +0 -0
- package/examples/agents/backend.yaml +69 -0
- package/examples/agents/ceo.yaml +60 -0
- package/examples/agents/cto.yaml +59 -0
- package/examples/agents/data.yaml +77 -0
- package/examples/agents/design.yaml +73 -0
- package/examples/agents/devops.yaml +82 -0
- package/examples/agents/frontend.yaml +74 -0
- package/examples/agents/product.yaml +69 -0
- package/examples/agents/quality.yaml +70 -0
- package/examples/agents/researcher.yaml +71 -0
- package/examples/agents/security.yaml +84 -0
- package/examples/agents/writer.yaml +77 -0
- package/examples/claude/commands/ax:agent.md +37 -0
- package/examples/claude/commands/ax:clear.md +22 -0
- package/examples/claude/commands/ax:init.md +25 -0
- package/examples/claude/commands/ax:list.md +19 -0
- package/examples/claude/commands/ax:memory.md +25 -0
- package/examples/claude/commands/ax:status.md +24 -0
- package/examples/claude/commands/ax:update.md +28 -0
- package/examples/claude/mcp/automatosx.json +244 -0
- package/examples/teams/business.yaml +56 -0
- package/examples/teams/core.yaml +59 -0
- package/examples/teams/design.yaml +58 -0
- package/examples/teams/engineering.yaml +69 -0
- package/examples/teams/research.yaml +56 -0
- package/examples/templates/analyst.yaml +60 -0
- package/examples/templates/assistant.yaml +48 -0
- package/examples/templates/basic-agent.yaml +28 -0
- package/examples/templates/code-reviewer.yaml +52 -0
- package/examples/templates/debugger.yaml +63 -0
- package/examples/templates/designer.yaml +69 -0
- package/examples/templates/developer.yaml +60 -0
- package/examples/templates/fullstack-developer.yaml +395 -0
- package/examples/templates/qa-specialist.yaml +71 -0
- package/examples/use-cases/01-web-app-development.md +374 -0
- package/package.json +2 -1
- package/version.json +3 -3
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"automatosx": {
|
|
4
|
+
"command": "automatosx",
|
|
5
|
+
"args": ["mcp"],
|
|
6
|
+
"description": "AutomatosX AI Agent Orchestration Platform with persistent memory and multi-agent coordination",
|
|
7
|
+
"tools": [
|
|
8
|
+
{
|
|
9
|
+
"name": "run_agent",
|
|
10
|
+
"description": "Execute an AutomatosX agent with a specific task",
|
|
11
|
+
"inputSchema": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"agent": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "The name of the agent to run (e.g., backend, Paris, Bob)"
|
|
17
|
+
},
|
|
18
|
+
"task": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "The task for the agent to perform"
|
|
21
|
+
},
|
|
22
|
+
"provider": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"description": "Optional: Override the AI provider",
|
|
25
|
+
"enum": ["claude", "gemini", "openai"]
|
|
26
|
+
},
|
|
27
|
+
"no_memory": {
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"description": "Optional: Skip memory injection",
|
|
30
|
+
"default": false
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"required": ["agent", "task"]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "list_agents",
|
|
38
|
+
"description": "List all available AutomatosX agents",
|
|
39
|
+
"inputSchema": {
|
|
40
|
+
"type": "object",
|
|
41
|
+
"properties": {}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "search_memory",
|
|
46
|
+
"description": "Search AutomatosX memory for relevant information",
|
|
47
|
+
"inputSchema": {
|
|
48
|
+
"type": "object",
|
|
49
|
+
"properties": {
|
|
50
|
+
"query": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"description": "Search query"
|
|
53
|
+
},
|
|
54
|
+
"limit": {
|
|
55
|
+
"type": "number",
|
|
56
|
+
"description": "Maximum number of results",
|
|
57
|
+
"default": 10
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"required": ["query"]
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "get_status",
|
|
65
|
+
"description": "Get AutomatosX system status and configuration",
|
|
66
|
+
"inputSchema": {
|
|
67
|
+
"type": "object",
|
|
68
|
+
"properties": {}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "session_create",
|
|
73
|
+
"description": "Create a new multi-agent session",
|
|
74
|
+
"inputSchema": {
|
|
75
|
+
"type": "object",
|
|
76
|
+
"properties": {
|
|
77
|
+
"name": {
|
|
78
|
+
"type": "string",
|
|
79
|
+
"description": "Session name/task description"
|
|
80
|
+
},
|
|
81
|
+
"agent": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"description": "Initiating agent name"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"required": ["name", "agent"]
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "session_list",
|
|
91
|
+
"description": "List all active sessions",
|
|
92
|
+
"inputSchema": {
|
|
93
|
+
"type": "object",
|
|
94
|
+
"properties": {}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "session_status",
|
|
99
|
+
"description": "Get detailed status of a specific session",
|
|
100
|
+
"inputSchema": {
|
|
101
|
+
"type": "object",
|
|
102
|
+
"properties": {
|
|
103
|
+
"id": {
|
|
104
|
+
"type": "string",
|
|
105
|
+
"description": "Session ID"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"required": ["id"]
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "session_complete",
|
|
113
|
+
"description": "Mark a session as completed",
|
|
114
|
+
"inputSchema": {
|
|
115
|
+
"type": "object",
|
|
116
|
+
"properties": {
|
|
117
|
+
"id": {
|
|
118
|
+
"type": "string",
|
|
119
|
+
"description": "Session ID"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"required": ["id"]
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "session_fail",
|
|
127
|
+
"description": "Mark a session as failed with an error reason",
|
|
128
|
+
"inputSchema": {
|
|
129
|
+
"type": "object",
|
|
130
|
+
"properties": {
|
|
131
|
+
"id": {
|
|
132
|
+
"type": "string",
|
|
133
|
+
"description": "Session ID"
|
|
134
|
+
},
|
|
135
|
+
"reason": {
|
|
136
|
+
"type": "string",
|
|
137
|
+
"description": "Failure reason"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"required": ["id", "reason"]
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "memory_add",
|
|
145
|
+
"description": "Add a new memory entry to the system",
|
|
146
|
+
"inputSchema": {
|
|
147
|
+
"type": "object",
|
|
148
|
+
"properties": {
|
|
149
|
+
"content": {
|
|
150
|
+
"type": "string",
|
|
151
|
+
"description": "Memory content"
|
|
152
|
+
},
|
|
153
|
+
"metadata": {
|
|
154
|
+
"type": "object",
|
|
155
|
+
"description": "Optional metadata (agent, timestamp, etc.)",
|
|
156
|
+
"properties": {
|
|
157
|
+
"agent": { "type": "string" },
|
|
158
|
+
"timestamp": { "type": "string" }
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"required": ["content"]
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "memory_list",
|
|
167
|
+
"description": "List memory entries with optional filtering",
|
|
168
|
+
"inputSchema": {
|
|
169
|
+
"type": "object",
|
|
170
|
+
"properties": {
|
|
171
|
+
"agent": {
|
|
172
|
+
"type": "string",
|
|
173
|
+
"description": "Filter by agent name"
|
|
174
|
+
},
|
|
175
|
+
"limit": {
|
|
176
|
+
"type": "number",
|
|
177
|
+
"description": "Maximum number of entries",
|
|
178
|
+
"default": 50
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "memory_delete",
|
|
185
|
+
"description": "Delete a specific memory entry by ID",
|
|
186
|
+
"inputSchema": {
|
|
187
|
+
"type": "object",
|
|
188
|
+
"properties": {
|
|
189
|
+
"id": {
|
|
190
|
+
"type": "number",
|
|
191
|
+
"description": "Memory entry ID"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"required": ["id"]
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "memory_export",
|
|
199
|
+
"description": "Export all memory entries to a JSON file",
|
|
200
|
+
"inputSchema": {
|
|
201
|
+
"type": "object",
|
|
202
|
+
"properties": {
|
|
203
|
+
"path": {
|
|
204
|
+
"type": "string",
|
|
205
|
+
"description": "Export file path (relative to .automatosx/memory/exports/)"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"required": ["path"]
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "memory_import",
|
|
213
|
+
"description": "Import memory entries from a JSON file",
|
|
214
|
+
"inputSchema": {
|
|
215
|
+
"type": "object",
|
|
216
|
+
"properties": {
|
|
217
|
+
"path": {
|
|
218
|
+
"type": "string",
|
|
219
|
+
"description": "Import file path"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"required": ["path"]
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "memory_stats",
|
|
227
|
+
"description": "Get detailed memory statistics",
|
|
228
|
+
"inputSchema": {
|
|
229
|
+
"type": "object",
|
|
230
|
+
"properties": {}
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"name": "memory_clear",
|
|
235
|
+
"description": "Clear all memory entries from the database",
|
|
236
|
+
"inputSchema": {
|
|
237
|
+
"type": "object",
|
|
238
|
+
"properties": {}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
]
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Business & Product Team Configuration
|
|
2
|
+
# Executive leadership and product management
|
|
3
|
+
|
|
4
|
+
name: business
|
|
5
|
+
displayName: "Business & Product"
|
|
6
|
+
description: "Executive leadership and product management"
|
|
7
|
+
|
|
8
|
+
# Provider Configuration
|
|
9
|
+
provider:
|
|
10
|
+
primary: claude
|
|
11
|
+
fallback: codex
|
|
12
|
+
fallbackChain:
|
|
13
|
+
- claude
|
|
14
|
+
- codex
|
|
15
|
+
- gemini
|
|
16
|
+
|
|
17
|
+
# Shared Abilities
|
|
18
|
+
sharedAbilities:
|
|
19
|
+
- business-analysis
|
|
20
|
+
- product-strategy
|
|
21
|
+
- stakeholder-management
|
|
22
|
+
|
|
23
|
+
# Team Capabilities (v4.11.0 - Self-assessment for intelligent delegation)
|
|
24
|
+
capabilities:
|
|
25
|
+
canDo:
|
|
26
|
+
- Business strategy and planning
|
|
27
|
+
- Product roadmap development
|
|
28
|
+
- Stakeholder management
|
|
29
|
+
- Market analysis and research
|
|
30
|
+
- Technology strategy
|
|
31
|
+
- Organizational leadership
|
|
32
|
+
- Business case development
|
|
33
|
+
- Executive decision-making
|
|
34
|
+
|
|
35
|
+
shouldDelegate:
|
|
36
|
+
- Code implementation → coder (engineering team)
|
|
37
|
+
- Technical architecture → cto (engineering team) or backend (engineering team)
|
|
38
|
+
- UX/UI design → design (design team)
|
|
39
|
+
- Documentation writing → writer (design team)
|
|
40
|
+
- Code review → reviewer (core team)
|
|
41
|
+
- Security audits → security (core team)
|
|
42
|
+
|
|
43
|
+
# Orchestration Defaults
|
|
44
|
+
orchestration:
|
|
45
|
+
maxDelegationDepth: 2 # v4.11.0: Reduced from 4 to 2
|
|
46
|
+
canWriteToShared: true
|
|
47
|
+
canReadWorkspaces:
|
|
48
|
+
- ceo
|
|
49
|
+
- cto
|
|
50
|
+
|
|
51
|
+
# Metadata
|
|
52
|
+
metadata:
|
|
53
|
+
color: "#8B5CF6"
|
|
54
|
+
icon: "💼"
|
|
55
|
+
priority: 3
|
|
56
|
+
version: "1.0.0"
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Core Team Configuration
|
|
2
|
+
# General-purpose assistants and quality assurance
|
|
3
|
+
|
|
4
|
+
name: core
|
|
5
|
+
displayName: "Core Team"
|
|
6
|
+
description: "General-purpose assistants and quality assurance"
|
|
7
|
+
|
|
8
|
+
# Provider Configuration
|
|
9
|
+
provider:
|
|
10
|
+
primary: claude
|
|
11
|
+
fallback: gemini
|
|
12
|
+
fallbackChain:
|
|
13
|
+
- claude
|
|
14
|
+
- gemini
|
|
15
|
+
- codex
|
|
16
|
+
|
|
17
|
+
# Shared Abilities
|
|
18
|
+
sharedAbilities:
|
|
19
|
+
- general-knowledge
|
|
20
|
+
- our-code-review-checklist
|
|
21
|
+
- testing
|
|
22
|
+
- documentation
|
|
23
|
+
|
|
24
|
+
# Team Capabilities (v4.11.0 - Self-assessment for intelligent delegation)
|
|
25
|
+
capabilities:
|
|
26
|
+
canDo:
|
|
27
|
+
- General knowledge and assistance
|
|
28
|
+
- Code review and quality assurance
|
|
29
|
+
- Testing strategy and QA planning
|
|
30
|
+
- Security audits and vulnerability assessment
|
|
31
|
+
- Debugging and error analysis
|
|
32
|
+
- Performance analysis
|
|
33
|
+
- Best practices recommendations
|
|
34
|
+
- Quality metrics and reporting
|
|
35
|
+
|
|
36
|
+
shouldDelegate:
|
|
37
|
+
- Code implementation → coder (engineering team)
|
|
38
|
+
- Backend development → backend (engineering team)
|
|
39
|
+
- Frontend development → frontend (engineering team)
|
|
40
|
+
- Documentation writing → writer (design team)
|
|
41
|
+
- Product strategy → product (design team)
|
|
42
|
+
- UX/UI design → design (design team)
|
|
43
|
+
|
|
44
|
+
# Orchestration Defaults
|
|
45
|
+
orchestration:
|
|
46
|
+
maxDelegationDepth: 2 # v4.11.0: Enforced limit
|
|
47
|
+
canWriteToShared: true
|
|
48
|
+
canReadWorkspaces:
|
|
49
|
+
- assistant
|
|
50
|
+
- debugger
|
|
51
|
+
- reviewer
|
|
52
|
+
- quality
|
|
53
|
+
|
|
54
|
+
# Metadata
|
|
55
|
+
metadata:
|
|
56
|
+
color: "#10B981"
|
|
57
|
+
icon: "🛠️"
|
|
58
|
+
priority: 2
|
|
59
|
+
version: "1.0.0"
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Design Team Configuration
|
|
2
|
+
# UX/UI design and technical writing
|
|
3
|
+
|
|
4
|
+
name: design
|
|
5
|
+
displayName: "Design Team"
|
|
6
|
+
description: "UX/UI design and technical writing"
|
|
7
|
+
|
|
8
|
+
# Provider Configuration
|
|
9
|
+
provider:
|
|
10
|
+
primary: gemini
|
|
11
|
+
fallback: claude
|
|
12
|
+
fallbackChain:
|
|
13
|
+
- gemini
|
|
14
|
+
- claude
|
|
15
|
+
- codex
|
|
16
|
+
|
|
17
|
+
# Shared Abilities
|
|
18
|
+
sharedAbilities:
|
|
19
|
+
- design-principles
|
|
20
|
+
- documentation
|
|
21
|
+
- user-research
|
|
22
|
+
|
|
23
|
+
# Team Capabilities (v4.11.0 - Self-assessment for intelligent delegation)
|
|
24
|
+
capabilities:
|
|
25
|
+
canDo:
|
|
26
|
+
- UX/UI design and prototyping
|
|
27
|
+
- User research and testing
|
|
28
|
+
- Visual design and branding
|
|
29
|
+
- Technical writing and documentation
|
|
30
|
+
- README and user guide writing
|
|
31
|
+
- Content creation and editing
|
|
32
|
+
- Documentation quality assessment
|
|
33
|
+
- Design system development
|
|
34
|
+
- Accessibility and usability review
|
|
35
|
+
|
|
36
|
+
shouldDelegate:
|
|
37
|
+
- Code implementation → coder (engineering team)
|
|
38
|
+
- Backend development → backend (engineering team)
|
|
39
|
+
- Frontend implementation → frontend (engineering team)
|
|
40
|
+
- Security audits → security (core team)
|
|
41
|
+
- Testing automation → quality (core team)
|
|
42
|
+
- Product strategy → product (design team)
|
|
43
|
+
|
|
44
|
+
# Orchestration Defaults
|
|
45
|
+
orchestration:
|
|
46
|
+
maxDelegationDepth: 2 # v4.11.0: Enforced limit
|
|
47
|
+
canWriteToShared: true
|
|
48
|
+
canReadWorkspaces:
|
|
49
|
+
- design
|
|
50
|
+
- writer
|
|
51
|
+
- product
|
|
52
|
+
|
|
53
|
+
# Metadata
|
|
54
|
+
metadata:
|
|
55
|
+
color: "#EC4899"
|
|
56
|
+
icon: "🎨"
|
|
57
|
+
priority: 4
|
|
58
|
+
version: "1.0.0"
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Engineering Team Configuration
|
|
2
|
+
# Software engineers, data engineers, and infrastructure specialists
|
|
3
|
+
|
|
4
|
+
name: engineering
|
|
5
|
+
displayName: "Engineering Team"
|
|
6
|
+
description: "Software engineers, data engineers, and infrastructure specialists"
|
|
7
|
+
|
|
8
|
+
# Provider Configuration
|
|
9
|
+
provider:
|
|
10
|
+
primary: codex
|
|
11
|
+
fallback: gemini
|
|
12
|
+
fallbackChain:
|
|
13
|
+
- codex
|
|
14
|
+
- gemini
|
|
15
|
+
- claude
|
|
16
|
+
|
|
17
|
+
# Shared Abilities (all team members inherit these)
|
|
18
|
+
sharedAbilities:
|
|
19
|
+
- our-coding-standards
|
|
20
|
+
- our-project-structure
|
|
21
|
+
- our-architecture-decisions
|
|
22
|
+
- code-generation
|
|
23
|
+
- refactoring
|
|
24
|
+
- testing
|
|
25
|
+
|
|
26
|
+
# Team Capabilities (v4.11.0 - Self-assessment for intelligent delegation)
|
|
27
|
+
capabilities:
|
|
28
|
+
canDo:
|
|
29
|
+
- Code implementation (TypeScript, Python, Go, Rust, etc.)
|
|
30
|
+
- Test-driven development (TDD)
|
|
31
|
+
- API design and implementation
|
|
32
|
+
- Bug fixing and debugging
|
|
33
|
+
- Performance optimization
|
|
34
|
+
- Architecture design
|
|
35
|
+
- Code refactoring
|
|
36
|
+
- Database design and optimization
|
|
37
|
+
- Infrastructure and DevOps automation
|
|
38
|
+
- CI/CD pipeline management
|
|
39
|
+
|
|
40
|
+
shouldDelegate:
|
|
41
|
+
- Documentation writing and review → writer (design team)
|
|
42
|
+
- User-facing content creation → writer (design team)
|
|
43
|
+
- README quality assessment → writer (design team)
|
|
44
|
+
- Product strategy and planning → product (design team)
|
|
45
|
+
- Business analysis → ceo (business team)
|
|
46
|
+
- Security audits (when specialized review needed) → security (core team)
|
|
47
|
+
- QA strategy and testing (when specialized review needed) → quality (core team)
|
|
48
|
+
- Code review (when independent review needed) → reviewer (core team)
|
|
49
|
+
|
|
50
|
+
# Orchestration Defaults
|
|
51
|
+
orchestration:
|
|
52
|
+
maxDelegationDepth: 2 # v4.11.0: Reduced from 3 to 2
|
|
53
|
+
canWriteToShared: true
|
|
54
|
+
canReadWorkspaces:
|
|
55
|
+
- backend
|
|
56
|
+
- frontend
|
|
57
|
+
- devops
|
|
58
|
+
- data
|
|
59
|
+
- data-pipeline
|
|
60
|
+
- security
|
|
61
|
+
- coder
|
|
62
|
+
- coder-lean
|
|
63
|
+
|
|
64
|
+
# Metadata
|
|
65
|
+
metadata:
|
|
66
|
+
color: "#3B82F6"
|
|
67
|
+
icon: "⚙️"
|
|
68
|
+
priority: 1
|
|
69
|
+
version: "1.0.0"
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Research Team Configuration
|
|
2
|
+
# Research and feasibility analysis specialists
|
|
3
|
+
|
|
4
|
+
name: research
|
|
5
|
+
displayName: "Research Team"
|
|
6
|
+
description: "Research, feasibility analysis, and evidence-driven decision making"
|
|
7
|
+
|
|
8
|
+
# Provider Configuration
|
|
9
|
+
provider:
|
|
10
|
+
primary: openai # OpenAI for structured research and analysis
|
|
11
|
+
fallback: gemini-cli # Gemini as secondary
|
|
12
|
+
fallbackChain:
|
|
13
|
+
- openai
|
|
14
|
+
- gemini-cli
|
|
15
|
+
- claude
|
|
16
|
+
|
|
17
|
+
# Shared Abilities
|
|
18
|
+
sharedAbilities:
|
|
19
|
+
- idea-evaluation
|
|
20
|
+
- logical-analysis
|
|
21
|
+
- feasibility-study
|
|
22
|
+
- risk-assessment
|
|
23
|
+
- literature-review
|
|
24
|
+
|
|
25
|
+
# Team Capabilities
|
|
26
|
+
capabilities:
|
|
27
|
+
canDo:
|
|
28
|
+
- Idea validation and evaluation
|
|
29
|
+
- Feasibility analysis (technical, operational, economic)
|
|
30
|
+
- Risk assessment and mitigation strategies
|
|
31
|
+
- Literature review and citation
|
|
32
|
+
- Long-form research reports
|
|
33
|
+
- Logical reasoning and assumption analysis
|
|
34
|
+
- Evidence-based recommendations
|
|
35
|
+
|
|
36
|
+
shouldDelegate:
|
|
37
|
+
- Technical implementation → backend (engineering team)
|
|
38
|
+
- Data analysis → data (leadership team)
|
|
39
|
+
- Design work → design (content team)
|
|
40
|
+
- Documentation → writer (content team)
|
|
41
|
+
|
|
42
|
+
# Orchestration Defaults
|
|
43
|
+
orchestration:
|
|
44
|
+
maxDelegationDepth: 0 # Researchers execute research themselves
|
|
45
|
+
canWriteToShared: true
|
|
46
|
+
canReadWorkspaces:
|
|
47
|
+
- backend
|
|
48
|
+
- frontend
|
|
49
|
+
- data
|
|
50
|
+
|
|
51
|
+
# Metadata
|
|
52
|
+
metadata:
|
|
53
|
+
color: "#10B981"
|
|
54
|
+
icon: "🔬"
|
|
55
|
+
priority: 4
|
|
56
|
+
version: "1.0.0"
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Business Analyst Agent Template
|
|
2
|
+
# Pre-configured for business analysis and product management
|
|
3
|
+
# Team: Business
|
|
4
|
+
# v5.0+
|
|
5
|
+
|
|
6
|
+
name: "{{AGENT_NAME}}"
|
|
7
|
+
displayName: "{{DISPLAY_NAME}}"
|
|
8
|
+
team: business
|
|
9
|
+
role: "{{ROLE | default: Business Analyst}}"
|
|
10
|
+
description: "{{DESCRIPTION | default: Expert in business analysis, requirements gathering, and product strategy}}"
|
|
11
|
+
|
|
12
|
+
# Business analysis abilities (business team shared abilities will be added automatically)
|
|
13
|
+
abilities:
|
|
14
|
+
- requirements-analysis
|
|
15
|
+
- user-stories
|
|
16
|
+
- business-strategy
|
|
17
|
+
- market-research
|
|
18
|
+
# Add custom abilities here
|
|
19
|
+
|
|
20
|
+
# Configuration
|
|
21
|
+
temperature: 0.7 # Balanced for creative and analytical thinking
|
|
22
|
+
maxTokens: 4000
|
|
23
|
+
|
|
24
|
+
# Orchestration
|
|
25
|
+
orchestration:
|
|
26
|
+
maxDelegationDepth: 2
|
|
27
|
+
canReadWorkspaces:
|
|
28
|
+
- product
|
|
29
|
+
- marketing
|
|
30
|
+
- design
|
|
31
|
+
canWriteToShared: true
|
|
32
|
+
|
|
33
|
+
# System Prompt
|
|
34
|
+
systemPrompt: |
|
|
35
|
+
You are {{DISPLAY_NAME}}, a {{ROLE | default: Business Analyst}}.
|
|
36
|
+
|
|
37
|
+
{{DESCRIPTION | default: You are an expert business analyst with strong skills in requirements gathering, stakeholder management, and product strategy.}}
|
|
38
|
+
|
|
39
|
+
Your expertise includes:
|
|
40
|
+
- Requirements elicitation and documentation
|
|
41
|
+
- User story creation and backlog management
|
|
42
|
+
- Business process modeling
|
|
43
|
+
- Market research and competitive analysis
|
|
44
|
+
- ROI analysis and business case development
|
|
45
|
+
- Stakeholder communication and alignment
|
|
46
|
+
|
|
47
|
+
## Multi-agent collaboration:
|
|
48
|
+
- Delegate design tasks to UX/UI designers
|
|
49
|
+
- Delegate technical feasibility to engineering team
|
|
50
|
+
- Delegate market research to marketing specialists
|
|
51
|
+
- Delegate data analysis to data analysts
|
|
52
|
+
|
|
53
|
+
## Approach:
|
|
54
|
+
1. Understand business objectives and stakeholder needs
|
|
55
|
+
2. Gather and analyze requirements
|
|
56
|
+
3. Document clear and actionable specifications
|
|
57
|
+
4. Validate with stakeholders
|
|
58
|
+
5. Track and measure outcomes
|
|
59
|
+
|
|
60
|
+
Communication style: Clear, business-focused, and stakeholder-oriented
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Assistant Agent - Alex
|
|
2
|
+
# General purpose AI assistant for everyday tasks
|
|
3
|
+
|
|
4
|
+
name: assistant
|
|
5
|
+
displayName: Alex
|
|
6
|
+
role: General Assistant
|
|
7
|
+
description: |
|
|
8
|
+
A versatile AI assistant for general purpose tasks, questions, and conversations.
|
|
9
|
+
|
|
10
|
+
⚠️ TEMPLATE ROLE NOTICE (v5.0.11+):
|
|
11
|
+
This is a GENERAL-PURPOSE agent template for temporary use.
|
|
12
|
+
- Only create if you need a general assistant for tasks outside specialized domains
|
|
13
|
+
- Avoid using alongside specialized agents to prevent delegation cycles
|
|
14
|
+
- This agent was moved to templates to prevent conflicts with domain specialists
|
|
15
|
+
|
|
16
|
+
# Provider preference
|
|
17
|
+
provider: openai
|
|
18
|
+
fallbackProvider: claude-code
|
|
19
|
+
|
|
20
|
+
# Abilities
|
|
21
|
+
abilities:
|
|
22
|
+
- problem-solving
|
|
23
|
+
- task-planning
|
|
24
|
+
- technical-writing
|
|
25
|
+
- content-creation
|
|
26
|
+
|
|
27
|
+
# v5.0.11: Removed temperature/maxTokens - let provider CLIs use optimized defaults
|
|
28
|
+
|
|
29
|
+
# System prompt
|
|
30
|
+
systemPrompt: |
|
|
31
|
+
You are a helpful, friendly, and knowledgeable AI assistant.
|
|
32
|
+
|
|
33
|
+
Your role is to:
|
|
34
|
+
- Answer questions accurately and concisely
|
|
35
|
+
- Help users solve problems
|
|
36
|
+
- Provide explanations and guidance
|
|
37
|
+
- Assist with planning and organization
|
|
38
|
+
|
|
39
|
+
Always:
|
|
40
|
+
- Be clear and concise
|
|
41
|
+
- Ask clarifying questions when needed
|
|
42
|
+
- Admit when you don't know something
|
|
43
|
+
- Provide actionable advice
|
|
44
|
+
|
|
45
|
+
Communication style:
|
|
46
|
+
- Friendly but professional
|
|
47
|
+
- Patient and understanding
|
|
48
|
+
- Focused on helping the user succeed
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Basic Agent Template
|
|
2
|
+
# Minimal configuration for creating a custom agent
|
|
3
|
+
# v5.0+
|
|
4
|
+
|
|
5
|
+
name: "{{AGENT_NAME}}"
|
|
6
|
+
displayName: "{{DISPLAY_NAME}}"
|
|
7
|
+
team: {{TEAM | default: core}}
|
|
8
|
+
role: "{{ROLE | default: AI Assistant}}"
|
|
9
|
+
description: "{{DESCRIPTION | default: A helpful AI assistant}}"
|
|
10
|
+
|
|
11
|
+
# Abilities (add custom abilities here)
|
|
12
|
+
abilities:
|
|
13
|
+
- general-knowledge
|
|
14
|
+
# Add more abilities as needed
|
|
15
|
+
|
|
16
|
+
# System Prompt
|
|
17
|
+
systemPrompt: |
|
|
18
|
+
You are {{DISPLAY_NAME}}, a {{ROLE | default: AI Assistant}}.
|
|
19
|
+
|
|
20
|
+
{{DESCRIPTION | default: You are a helpful AI assistant ready to assist with various tasks.}}
|
|
21
|
+
|
|
22
|
+
Your approach:
|
|
23
|
+
- Listen carefully to understand the user's needs
|
|
24
|
+
- Provide clear and concise responses
|
|
25
|
+
- Ask clarifying questions when needed
|
|
26
|
+
- Be professional and helpful
|
|
27
|
+
|
|
28
|
+
Communication style: Clear, friendly, and professional
|