@defai.digital/ax-cli 0.0.34
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/.automatosx/agents/aerospace-scientist.yaml +159 -0
- package/.automatosx/agents/architecture.yaml +244 -0
- package/.automatosx/agents/backend.yaml +172 -0
- package/.automatosx/agents/ceo.yaml +105 -0
- package/.automatosx/agents/creative-marketer.yaml +173 -0
- package/.automatosx/agents/cto.yaml +118 -0
- package/.automatosx/agents/data-scientist.yaml +200 -0
- package/.automatosx/agents/data.yaml +106 -0
- package/.automatosx/agents/design.yaml +115 -0
- package/.automatosx/agents/devops.yaml +124 -0
- package/.automatosx/agents/frontend.yaml +171 -0
- package/.automatosx/agents/fullstack.yaml +172 -0
- package/.automatosx/agents/mobile.yaml +185 -0
- package/.automatosx/agents/product.yaml +103 -0
- package/.automatosx/agents/quality.yaml +93 -0
- package/.automatosx/agents/quantum-engineer.yaml +167 -0
- package/.automatosx/agents/researcher.yaml +122 -0
- package/.automatosx/agents/security.yaml +115 -0
- package/.automatosx/agents/standard.yaml +214 -0
- package/.automatosx/agents/writer.yaml +122 -0
- package/.automatosx/feature-flags.json +13 -0
- package/.automatosx/memory/memory.db +0 -0
- package/.automatosx/providers/README.md +117 -0
- package/.automatosx/providers/grok-zai.yaml.template +61 -0
- package/.automatosx/providers/grok.yaml.template +71 -0
- package/.automatosx/status/backend-1763517593334-85037.json +9 -0
- package/.automatosx/status/quality-1763516867087-82043.json +9 -0
- package/.automatosx/status/quality-1763516976722-84817.json +9 -0
- package/.automatosx/status/security-1763517871950-87357.json +9 -0
- package/.automatosx/teams/business.yaml +56 -0
- package/.automatosx/teams/core.yaml +60 -0
- package/.automatosx/teams/design.yaml +58 -0
- package/.automatosx/teams/engineering.yaml +69 -0
- package/.automatosx/teams/research.yaml +56 -0
- package/.automatosx/templates/analyst.yaml +60 -0
- package/.automatosx/templates/assistant.yaml +48 -0
- package/.automatosx/templates/basic-agent.yaml +28 -0
- package/.automatosx/templates/code-reviewer.yaml +52 -0
- package/.automatosx/templates/debugger.yaml +63 -0
- package/.automatosx/templates/designer.yaml +69 -0
- package/.automatosx/templates/developer.yaml +60 -0
- package/.automatosx/templates/fullstack-developer.yaml +395 -0
- package/.automatosx/templates/qa-specialist.yaml +71 -0
- package/.claude/mcp/automatosx.json +244 -0
- package/.claude/settings.local.json +34 -0
- package/.grok/settings.json +37 -0
- package/LICENSE +26 -0
- package/README.md +518 -0
- package/automatosx/PRD/README.md +9 -0
- package/automatosx/tmp/README.md +10 -0
- package/automatosx.config.json +333 -0
- package/dist/agent/grok-agent.d.ts +52 -0
- package/dist/agent/grok-agent.js +627 -0
- package/dist/agent/grok-agent.js.map +1 -0
- package/dist/agent/index.d.ts +14 -0
- package/dist/agent/index.js +136 -0
- package/dist/agent/index.js.map +1 -0
- package/dist/commands/mcp.d.ts +2 -0
- package/dist/commands/mcp.js +239 -0
- package/dist/commands/mcp.js.map +1 -0
- package/dist/grok/client.d.ts +49 -0
- package/dist/grok/client.js +80 -0
- package/dist/grok/client.js.map +1 -0
- package/dist/grok/tools.d.ts +8 -0
- package/dist/grok/tools.js +349 -0
- package/dist/grok/tools.js.map +1 -0
- package/dist/hooks/use-enhanced-input.d.ts +37 -0
- package/dist/hooks/use-enhanced-input.js +214 -0
- package/dist/hooks/use-enhanced-input.js.map +1 -0
- package/dist/hooks/use-input-handler.d.ts +34 -0
- package/dist/hooks/use-input-handler.js +608 -0
- package/dist/hooks/use-input-handler.js.map +1 -0
- package/dist/hooks/use-input-history.d.ts +9 -0
- package/dist/hooks/use-input-history.js +69 -0
- package/dist/hooks/use-input-history.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +339 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp/client.d.ts +31 -0
- package/dist/mcp/client.js +152 -0
- package/dist/mcp/client.js.map +1 -0
- package/dist/mcp/config.d.ts +13 -0
- package/dist/mcp/config.js +43 -0
- package/dist/mcp/config.js.map +1 -0
- package/dist/mcp/transports.d.ts +48 -0
- package/dist/mcp/transports.js +217 -0
- package/dist/mcp/transports.js.map +1 -0
- package/dist/schemas/index.d.ts +102 -0
- package/dist/schemas/index.js +105 -0
- package/dist/schemas/index.js.map +1 -0
- package/dist/tools/bash.d.ts +10 -0
- package/dist/tools/bash.js +82 -0
- package/dist/tools/bash.js.map +1 -0
- package/dist/tools/confirmation-tool.d.ts +16 -0
- package/dist/tools/confirmation-tool.js +72 -0
- package/dist/tools/confirmation-tool.js.map +1 -0
- package/dist/tools/index.d.ts +6 -0
- package/dist/tools/index.js +7 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/morph-editor.d.ts +36 -0
- package/dist/tools/morph-editor.js +308 -0
- package/dist/tools/morph-editor.js.map +1 -0
- package/dist/tools/search.d.ts +68 -0
- package/dist/tools/search.js +300 -0
- package/dist/tools/search.js.map +1 -0
- package/dist/tools/text-editor.d.ts +16 -0
- package/dist/tools/text-editor.js +526 -0
- package/dist/tools/text-editor.js.map +1 -0
- package/dist/tools/todo-tool.d.ts +20 -0
- package/dist/tools/todo-tool.js +129 -0
- package/dist/tools/todo-tool.js.map +1 -0
- package/dist/types/index.d.ts +30 -0
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -0
- package/dist/ui/app.d.ts +7 -0
- package/dist/ui/app.js +99 -0
- package/dist/ui/app.js.map +1 -0
- package/dist/ui/components/api-key-input.d.ts +7 -0
- package/dist/ui/components/api-key-input.js +80 -0
- package/dist/ui/components/api-key-input.js.map +1 -0
- package/dist/ui/components/chat-history.d.ts +8 -0
- package/dist/ui/components/chat-history.js +157 -0
- package/dist/ui/components/chat-history.js.map +1 -0
- package/dist/ui/components/chat-input.d.ts +9 -0
- package/dist/ui/components/chat-input.js +67 -0
- package/dist/ui/components/chat-input.js.map +1 -0
- package/dist/ui/components/chat-interface.d.ts +8 -0
- package/dist/ui/components/chat-interface.js +272 -0
- package/dist/ui/components/chat-interface.js.map +1 -0
- package/dist/ui/components/command-suggestions.d.ts +17 -0
- package/dist/ui/components/command-suggestions.js +22 -0
- package/dist/ui/components/command-suggestions.js.map +1 -0
- package/dist/ui/components/confirmation-dialog.d.ts +11 -0
- package/dist/ui/components/confirmation-dialog.js +105 -0
- package/dist/ui/components/confirmation-dialog.js.map +1 -0
- package/dist/ui/components/diff-renderer.d.ts +13 -0
- package/dist/ui/components/diff-renderer.js +186 -0
- package/dist/ui/components/diff-renderer.js.map +1 -0
- package/dist/ui/components/loading-spinner.d.ts +8 -0
- package/dist/ui/components/loading-spinner.js +59 -0
- package/dist/ui/components/loading-spinner.js.map +1 -0
- package/dist/ui/components/mcp-status.d.ts +5 -0
- package/dist/ui/components/mcp-status.js +36 -0
- package/dist/ui/components/mcp-status.js.map +1 -0
- package/dist/ui/components/model-selection.d.ts +12 -0
- package/dist/ui/components/model-selection.js +17 -0
- package/dist/ui/components/model-selection.js.map +1 -0
- package/dist/ui/shared/max-sized-box.d.ts +8 -0
- package/dist/ui/shared/max-sized-box.js +6 -0
- package/dist/ui/shared/max-sized-box.js.map +1 -0
- package/dist/ui/utils/code-colorizer.d.ts +2 -0
- package/dist/ui/utils/code-colorizer.js +7 -0
- package/dist/ui/utils/code-colorizer.js.map +1 -0
- package/dist/ui/utils/colors.d.ts +14 -0
- package/dist/ui/utils/colors.js +15 -0
- package/dist/ui/utils/colors.js.map +1 -0
- package/dist/ui/utils/markdown-renderer.d.ts +4 -0
- package/dist/ui/utils/markdown-renderer.js +23 -0
- package/dist/ui/utils/markdown-renderer.js.map +1 -0
- package/dist/utils/confirmation-service.d.ts +32 -0
- package/dist/utils/confirmation-service.js +109 -0
- package/dist/utils/confirmation-service.js.map +1 -0
- package/dist/utils/custom-instructions.d.ts +1 -0
- package/dist/utils/custom-instructions.js +17 -0
- package/dist/utils/custom-instructions.js.map +1 -0
- package/dist/utils/model-config.d.ts +28 -0
- package/dist/utils/model-config.js +42 -0
- package/dist/utils/model-config.js.map +1 -0
- package/dist/utils/settings-manager.d.ts +94 -0
- package/dist/utils/settings-manager.js +240 -0
- package/dist/utils/settings-manager.js.map +1 -0
- package/dist/utils/settings.d.ts +1 -0
- package/dist/utils/settings.js +4 -0
- package/dist/utils/settings.js.map +1 -0
- package/dist/utils/text-utils.d.ts +80 -0
- package/dist/utils/text-utils.js +182 -0
- package/dist/utils/text-utils.js.map +1 -0
- package/dist/utils/token-counter.d.ts +33 -0
- package/dist/utils/token-counter.js +78 -0
- package/dist/utils/token-counter.js.map +1 -0
- package/package.json +70 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Grok Provider Configuration (X.AI Official)
|
|
2
|
+
#
|
|
3
|
+
# This is the default configuration for X.AI's official Grok model.
|
|
4
|
+
# Copy this file to .automatosx/providers/grok.yaml and add your API key.
|
|
5
|
+
#
|
|
6
|
+
# Quick Start:
|
|
7
|
+
# 1. Copy: cp templates/providers/grok.yaml.template .automatosx/providers/grok.yaml
|
|
8
|
+
# 2. Get API key from https://x.ai/api
|
|
9
|
+
# 3. Add your key to the file (replace YOUR_X_AI_API_KEY_HERE)
|
|
10
|
+
# 4. Test: ax doctor grok
|
|
11
|
+
|
|
12
|
+
provider:
|
|
13
|
+
# Provider identification
|
|
14
|
+
name: grok
|
|
15
|
+
enabled: true
|
|
16
|
+
priority: 4 # Default: lowest priority (fallback after claude, gemini, openai)
|
|
17
|
+
|
|
18
|
+
# X.AI Official Grok API
|
|
19
|
+
baseUrl: https://api.x.ai/v1
|
|
20
|
+
model: grok-3-fast
|
|
21
|
+
apiKey: YOUR_X_AI_API_KEY_HERE # Replace with your X.AI API key
|
|
22
|
+
|
|
23
|
+
# Performance settings
|
|
24
|
+
timeout: 180000 # 3 minutes
|
|
25
|
+
maxRetries: 3
|
|
26
|
+
|
|
27
|
+
# Rate limiting
|
|
28
|
+
rateLimits:
|
|
29
|
+
maxRequestsPerMinute: 60
|
|
30
|
+
maxTokensPerMinute: 200000
|
|
31
|
+
maxConcurrentRequests: 5
|
|
32
|
+
|
|
33
|
+
# Circuit breaker (prevent cascading failures)
|
|
34
|
+
circuitBreaker:
|
|
35
|
+
failureThreshold: 3
|
|
36
|
+
resetTimeout: 60000
|
|
37
|
+
halfOpenTimeout: 30000
|
|
38
|
+
|
|
39
|
+
# Metadata
|
|
40
|
+
metadata:
|
|
41
|
+
version: "1.0.0"
|
|
42
|
+
description: "X.AI Official Grok configuration"
|
|
43
|
+
tags:
|
|
44
|
+
- grok
|
|
45
|
+
- x-ai
|
|
46
|
+
- grok-3-fast
|
|
47
|
+
lastUpdated: "2025-11-17T00:00:00Z"
|
|
48
|
+
|
|
49
|
+
# Alternative Configuration: Z.AI GLM 4.6 (Chinese Free Tier)
|
|
50
|
+
#
|
|
51
|
+
# Uncomment the section below to use Z.AI's GLM 4.6 instead of X.AI Grok:
|
|
52
|
+
#
|
|
53
|
+
# provider:
|
|
54
|
+
# name: grok
|
|
55
|
+
# enabled: true
|
|
56
|
+
# priority: 2 # Higher priority for free tier
|
|
57
|
+
# baseUrl: https://api.z.ai/api/coding/paas/v4
|
|
58
|
+
# model: glm-4.6
|
|
59
|
+
# apiKey: YOUR_Z_AI_API_KEY_HERE
|
|
60
|
+
# timeout: 120000
|
|
61
|
+
# maxRetries: 3
|
|
62
|
+
#
|
|
63
|
+
# To use Z.AI:
|
|
64
|
+
# 1. Get API key from https://z.ai
|
|
65
|
+
# 2. Set environment variable: export GROK_BASE_URL="https://api.z.ai/api/coding/paas/v4"
|
|
66
|
+
# 3. Set model in provider section above: model: glm-4.6
|
|
67
|
+
#
|
|
68
|
+
# Z.AI is optimized for:
|
|
69
|
+
# - Code generation
|
|
70
|
+
# - Free tier usage
|
|
71
|
+
# - Chinese language support
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent": "backend",
|
|
3
|
+
"status": "failed",
|
|
4
|
+
"timestamp": "2025-11-19T01:59:53.334Z",
|
|
5
|
+
"pid": 85037,
|
|
6
|
+
"duration": 606231,
|
|
7
|
+
"error": "gemini-cli failed: gemini CLI exited with code 1. stderr: Loaded cached credentials.\n[ERROR] [IDEClient] Failed to connect to IDE companion extension. Please ensure the extension is running. To install the extension, run /ide install.\n[ERROR] Error during discovery for server 'automatosx': Connection failed for 'automatosx': MCP error -32001: Request timed out\nError when talking to Gemini API Full report available at: /var/folders/rz/dnw2slw53cs2qfy6tvrpk3p00000gn/T/gemini-client-error-Turn.run-sendMessageStream-2025-11-19T01-59-53-309Z.json\n",
|
|
8
|
+
"task": "Fix all remaining TypeScript errors in the ax-cli project. Check npm run typecheck and fix: unused variables in mcp/transports.ts, tools/search.ts, ui components, and any type mismatches. Make the code compile without errors."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent": "quality",
|
|
3
|
+
"status": "failed",
|
|
4
|
+
"timestamp": "2025-11-19T01:47:47.087Z",
|
|
5
|
+
"pid": 82043,
|
|
6
|
+
"duration": 607080,
|
|
7
|
+
"error": "gemini-cli failed: gemini CLI exited with code 1. stderr: Loaded cached credentials.\n[ERROR] [IDEClient] Failed to connect to IDE companion extension. Please ensure the extension is running. To install the extension, run /ide install.\n[ERROR] Error during discovery for server 'automatosx': Connection failed for 'automatosx': MCP error -32001: Request timed out\nError when talking to Gemini API Full report available at: /var/folders/rz/dnw2slw53cs2qfy6tvrpk3p00000gn/T/gemini-client-error-Turn.run-sendMessageStream-2025-11-19T01-47-47-063Z.json\n",
|
|
8
|
+
"task": "Analyze the ax-cli codebase for bugs, errors, type issues, and potential runtime problems. Focus on TypeScript errors, unused variables, potential null/undefined issues, and any logic bugs. Provide a comprehensive report of all issues found."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent": "quality",
|
|
3
|
+
"status": "completed",
|
|
4
|
+
"timestamp": "2025-11-19T01:49:36.722Z",
|
|
5
|
+
"pid": 84817,
|
|
6
|
+
"duration": 2825,
|
|
7
|
+
"task": "Analyze the ax-cli codebase for bugs, errors, type issues, and potential runtime problems. Focus on TypeScript errors, unused variables, potential null/undefined issues, and any logic bugs. Provide a comprehensive report of all issues found.",
|
|
8
|
+
"provider": "grok"
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent": "security",
|
|
3
|
+
"status": "failed",
|
|
4
|
+
"timestamp": "2025-11-19T02:04:31.950Z",
|
|
5
|
+
"pid": 87357,
|
|
6
|
+
"duration": 606528,
|
|
7
|
+
"error": "gemini-cli failed: gemini CLI exited with code 1. stderr: Loaded cached credentials.\n[ERROR] [IDEClient] Failed to connect to IDE companion extension. Please ensure the extension is running. To install the extension, run /ide install.\n[ERROR] Error during discovery for server 'automatosx': Connection failed for 'automatosx': MCP error -32001: Request timed out\nError when talking to Gemini API Full report available at: /var/folders/rz/dnw2slw53cs2qfy6tvrpk3p00000gn/T/gemini-client-error-Turn.run-sendMessageStream-2025-11-19T02-04-31-932Z.json\n",
|
|
8
|
+
"task": "Audit the ax-cli codebase for security vulnerabilities. Check for: hardcoded secrets, insecure dependencies, injection vulnerabilities, insecure file operations, and authentication issues. Provide a security report."
|
|
9
|
+
}
|
|
@@ -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,60 @@
|
|
|
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
|
+
# v5.6.22: Updated to match documentation and individual agent overrides
|
|
10
|
+
provider:
|
|
11
|
+
primary: openai # Codex (OpenAI)
|
|
12
|
+
fallback: gemini
|
|
13
|
+
fallbackChain:
|
|
14
|
+
- openai # Codex
|
|
15
|
+
- gemini
|
|
16
|
+
- claude
|
|
17
|
+
|
|
18
|
+
# Shared Abilities
|
|
19
|
+
sharedAbilities:
|
|
20
|
+
- general-knowledge
|
|
21
|
+
- our-code-review-checklist
|
|
22
|
+
- testing
|
|
23
|
+
- documentation
|
|
24
|
+
|
|
25
|
+
# Team Capabilities (v4.11.0 - Self-assessment for intelligent delegation)
|
|
26
|
+
capabilities:
|
|
27
|
+
canDo:
|
|
28
|
+
- General knowledge and assistance
|
|
29
|
+
- Code review and quality assurance
|
|
30
|
+
- Testing strategy and QA planning
|
|
31
|
+
- Security audits and vulnerability assessment
|
|
32
|
+
- Debugging and error analysis
|
|
33
|
+
- Performance analysis
|
|
34
|
+
- Best practices recommendations
|
|
35
|
+
- Quality metrics and reporting
|
|
36
|
+
|
|
37
|
+
shouldDelegate:
|
|
38
|
+
- Code implementation → coder (engineering team)
|
|
39
|
+
- Backend development → backend (engineering team)
|
|
40
|
+
- Frontend development → frontend (engineering team)
|
|
41
|
+
- Documentation writing → writer (design team)
|
|
42
|
+
- Product strategy → product (design team)
|
|
43
|
+
- UX/UI design → design (design team)
|
|
44
|
+
|
|
45
|
+
# Orchestration Defaults
|
|
46
|
+
orchestration:
|
|
47
|
+
maxDelegationDepth: 2 # v4.11.0: Enforced limit
|
|
48
|
+
canWriteToShared: true
|
|
49
|
+
canReadWorkspaces:
|
|
50
|
+
- assistant
|
|
51
|
+
- debugger
|
|
52
|
+
- reviewer
|
|
53
|
+
- quality
|
|
54
|
+
|
|
55
|
+
# Metadata
|
|
56
|
+
metadata:
|
|
57
|
+
color: "#10B981"
|
|
58
|
+
icon: "🛠️"
|
|
59
|
+
priority: 2
|
|
60
|
+
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
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Reviewer Agent - Ryan
|
|
2
|
+
# Code review specialist focusing on quality and best practices
|
|
3
|
+
|
|
4
|
+
name: reviewer
|
|
5
|
+
displayName: Ryan
|
|
6
|
+
role: Code Reviewer
|
|
7
|
+
description: |
|
|
8
|
+
Expert code reviewer focusing on quality, security, performance, and maintainability.
|
|
9
|
+
|
|
10
|
+
⚠️ TEMPLATE ROLE NOTICE (v5.0.11+):
|
|
11
|
+
This is a SPECIALIZED agent template for code review tasks.
|
|
12
|
+
- Only create if you need dedicated code review separate from QA (quality agent)
|
|
13
|
+
- Quality agent already includes code-review ability - avoid duplication
|
|
14
|
+
- This agent was moved to templates to prevent overlap with quality agent
|
|
15
|
+
|
|
16
|
+
# Provider preference
|
|
17
|
+
provider: openai
|
|
18
|
+
fallbackProvider: claude-code
|
|
19
|
+
|
|
20
|
+
# Abilities
|
|
21
|
+
abilities:
|
|
22
|
+
- code-review
|
|
23
|
+
- security-audit
|
|
24
|
+
- performance-analysis
|
|
25
|
+
- best-practices
|
|
26
|
+
- troubleshooting
|
|
27
|
+
|
|
28
|
+
# v5.0.11: Removed temperature/maxTokens - let provider CLIs use optimized defaults
|
|
29
|
+
|
|
30
|
+
# System prompt
|
|
31
|
+
systemPrompt: |
|
|
32
|
+
You are an experienced code reviewer with expertise in software quality, security, and best practices.
|
|
33
|
+
|
|
34
|
+
Your role is to:
|
|
35
|
+
- Review code for bugs, security issues, and performance problems
|
|
36
|
+
- Check adherence to coding standards and best practices
|
|
37
|
+
- Suggest improvements and refactoring opportunities
|
|
38
|
+
- Provide constructive, actionable feedback
|
|
39
|
+
|
|
40
|
+
Review focus areas:
|
|
41
|
+
1. **Correctness**: Logic errors, edge cases, error handling
|
|
42
|
+
2. **Security**: Input validation, SQL injection, XSS, secrets exposure
|
|
43
|
+
3. **Performance**: Algorithm complexity, resource usage, bottlenecks
|
|
44
|
+
4. **Maintainability**: Code clarity, documentation, modularity
|
|
45
|
+
5. **Testing**: Test coverage, test quality, missing test cases
|
|
46
|
+
|
|
47
|
+
Feedback style:
|
|
48
|
+
- Be specific with line references
|
|
49
|
+
- Explain why (not just what) is wrong
|
|
50
|
+
- Suggest concrete improvements
|
|
51
|
+
- Acknowledge good code
|
|
52
|
+
- Prioritize issues (critical, major, minor)
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Debugger Agent - Danny
|
|
2
|
+
# Specialized in debugging and troubleshooting
|
|
3
|
+
|
|
4
|
+
name: debugger
|
|
5
|
+
displayName: Danny
|
|
6
|
+
role: Debug Expert
|
|
7
|
+
description: |
|
|
8
|
+
Expert at debugging code, analyzing errors, and solving technical problems.
|
|
9
|
+
|
|
10
|
+
⚠️ TEMPLATE ROLE NOTICE (v5.0.11+):
|
|
11
|
+
This is a SPECIALIZED agent template for debugging tasks.
|
|
12
|
+
- Only create if you need dedicated debugging separate from specialized agents
|
|
13
|
+
- Most agents (backend, frontend, quality) include debugging ability
|
|
14
|
+
- Consider if specialized domain agents can handle the debugging task
|
|
15
|
+
- This agent was moved to templates to prevent overlap with default agents
|
|
16
|
+
|
|
17
|
+
# Provider preference
|
|
18
|
+
provider: openai
|
|
19
|
+
fallbackProvider: claude-code
|
|
20
|
+
|
|
21
|
+
# Abilities
|
|
22
|
+
abilities:
|
|
23
|
+
- debugging
|
|
24
|
+
- error-analysis
|
|
25
|
+
- troubleshooting
|
|
26
|
+
- problem-solving
|
|
27
|
+
- performance-analysis
|
|
28
|
+
|
|
29
|
+
# v5.0.11: Removed temperature/maxTokens - let provider CLIs use optimized defaults
|
|
30
|
+
|
|
31
|
+
# System prompt
|
|
32
|
+
systemPrompt: |
|
|
33
|
+
You are a debugging expert skilled at analyzing errors, tracing problems, and finding solutions.
|
|
34
|
+
|
|
35
|
+
Your role is to:
|
|
36
|
+
- Analyze error messages and stack traces
|
|
37
|
+
- Identify root causes of bugs
|
|
38
|
+
- Suggest debugging strategies
|
|
39
|
+
- Provide step-by-step solutions
|
|
40
|
+
|
|
41
|
+
Debugging approach:
|
|
42
|
+
1. **Understand the problem**
|
|
43
|
+
- Read error messages carefully
|
|
44
|
+
- Identify affected components
|
|
45
|
+
- Reproduce the issue
|
|
46
|
+
|
|
47
|
+
2. **Investigate systematically**
|
|
48
|
+
- Check recent changes
|
|
49
|
+
- Verify assumptions
|
|
50
|
+
- Isolate the problem
|
|
51
|
+
- Use logging and debugging tools
|
|
52
|
+
|
|
53
|
+
3. **Fix and verify**
|
|
54
|
+
- Implement targeted fixes
|
|
55
|
+
- Test thoroughly
|
|
56
|
+
- Prevent regression
|
|
57
|
+
- Document the solution
|
|
58
|
+
|
|
59
|
+
Communication:
|
|
60
|
+
- Ask clarifying questions
|
|
61
|
+
- Explain reasoning clearly
|
|
62
|
+
- Provide alternative solutions
|
|
63
|
+
- Teach debugging techniques
|