@defai.digital/automatosx 5.2.2 → 5.3.3
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 +280 -0
- package/README.md +185 -35
- package/dist/index.js +5171 -2087
- package/dist/index.js.map +1 -1
- package/dist/version.json +2 -2
- package/examples/AGENTS_INFO.md +35 -1
- package/examples/agents/backend.yaml +4 -3
- package/examples/agents/ceo.yaml +4 -3
- package/examples/agents/creative-marketer.yaml +121 -0
- package/examples/agents/cto.yaml +4 -1
- package/examples/agents/data-scientist.yaml +4 -3
- package/examples/agents/data.yaml +4 -3
- package/examples/agents/design.yaml +4 -3
- package/examples/agents/devops.yaml +4 -3
- package/examples/agents/frontend.yaml +4 -3
- package/examples/agents/fullstack.yaml +4 -3
- package/examples/agents/mobile.yaml +4 -3
- package/examples/agents/product.yaml +4 -3
- package/examples/agents/quality.yaml +3 -1
- package/examples/agents/security.yaml +3 -1
- package/examples/agents/writer.yaml +4 -3
- package/package.json +1 -1
- package/version.json +2 -2
- /package/examples/claude/commands/{ax:agent.md → ax-agent.md} +0 -0
- /package/examples/claude/commands/{ax:clear.md → ax-clear.md} +0 -0
- /package/examples/claude/commands/{ax:init.md → ax-init.md} +0 -0
- /package/examples/claude/commands/{ax:list.md → ax-list.md} +0 -0
- /package/examples/claude/commands/{ax:memory.md → ax-memory.md} +0 -0
- /package/examples/claude/commands/{ax:status.md → ax-status.md} +0 -0
- /package/examples/claude/commands/{ax:update.md → ax-update.md} +0 -0
package/dist/version.json
CHANGED
package/examples/AGENTS_INFO.md
CHANGED
|
@@ -1,9 +1,43 @@
|
|
|
1
1
|
# AutomatosX Agent Directory
|
|
2
2
|
|
|
3
|
-
**v5.
|
|
3
|
+
**v5.3.4 Update**: Team-based configuration complete. Best practices guide added.
|
|
4
4
|
|
|
5
5
|
AutomatosX agents have **human-friendly names** to make them easier to remember and use. Each agent has both a technical role name and a memorable display name.
|
|
6
6
|
|
|
7
|
+
## 💡 How to Use These Agents (Best Practices)
|
|
8
|
+
|
|
9
|
+
### Recommended: Natural Language Collaboration
|
|
10
|
+
|
|
11
|
+
Instead of directly commanding agents with slash commands, **let Claude Code coordinate**:
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
✅ BEST: "please work with backend agent to implement user authentication"
|
|
15
|
+
✅ BEST: "please discuss with backend and security agents to design our API"
|
|
16
|
+
✅ BEST: "please plan with the engineering team to refactor this module"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
**Why this is better**:
|
|
20
|
+
- 🧠 Claude Code analyzes your project first
|
|
21
|
+
- 🎯 Provides full context to agents
|
|
22
|
+
- ✅ Validates results
|
|
23
|
+
- 🔄 Easy to iterate
|
|
24
|
+
|
|
25
|
+
### Express Method: Slash Commands (for simple tasks only)
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
⚡ EXPRESS: /ax:agent backend, write an email validation function
|
|
29
|
+
⚡ EXPRESS: /ax:agent quality, review this code snippet
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**Use slash commands only when**:
|
|
33
|
+
- Task is simple and well-defined
|
|
34
|
+
- You know exactly which agent to use
|
|
35
|
+
- Speed matters more than planning
|
|
36
|
+
|
|
37
|
+
📖 **[Complete Best Practices Guide](../docs/BEST-PRACTICES.md)**
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
7
41
|
## 🎯 v5.0.12: Agent Governance & Delegation Controls
|
|
8
42
|
|
|
9
43
|
**Key Changes**:
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: backend
|
|
5
5
|
displayName: Bob
|
|
6
|
+
team: engineering
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from engineering team)
|
|
9
|
+
# Provider: codex (primary) with fallback to gemini, claude
|
|
6
10
|
role: Senior Backend Engineer
|
|
7
11
|
description: "Expert in server-side architecture, API design, database optimization, and microservices"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: claude-code
|
|
11
|
-
fallbackProvider: openai
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Specialized backend abilities only)
|
|
14
15
|
abilities:
|
package/examples/agents/ceo.yaml
CHANGED
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: ceo
|
|
5
5
|
displayName: Eric
|
|
6
|
+
team: business
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from business team)
|
|
9
|
+
# Provider: claude (primary) with fallback to codex, gemini
|
|
6
10
|
role: Chief Executive Officer
|
|
7
11
|
description: "Expert in business strategy, organizational leadership, and product vision"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: gemini-cli
|
|
11
|
-
fallbackProvider: claude-code
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Business strategy and leadership abilities)
|
|
14
15
|
abilities:
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# Creative Marketing & GenAI Content Specialist
|
|
2
|
+
# Expert in GenAI prompting (Gemini/Imagen/Veo), digital marketing, SEO, and scriptwriting
|
|
3
|
+
# Team: Business
|
|
4
|
+
# v5.2+
|
|
5
|
+
|
|
6
|
+
name: "creative-marketer"
|
|
7
|
+
displayName: "Cynthia"
|
|
8
|
+
team: business
|
|
9
|
+
role: "Creative Marketing Strategist & GenAI Content Specialist"
|
|
10
|
+
description: "Expert in GenAI prompting, digital marketing, SEO, and video scriptwriting for media generation with Gemini/Imagen/Veo"
|
|
11
|
+
|
|
12
|
+
# v5.3.3: Team-based configuration with Gemini optimization
|
|
13
|
+
# Team: business (claude primary), but overridden with gemini-cli for GenAI content generation
|
|
14
|
+
provider: gemini-cli
|
|
15
|
+
fallbackProvider: claude-code
|
|
16
|
+
|
|
17
|
+
# Core marketing and content creation abilities
|
|
18
|
+
abilities:
|
|
19
|
+
- genai-prompting
|
|
20
|
+
- digital-marketing
|
|
21
|
+
- scriptwriting
|
|
22
|
+
- content-creation
|
|
23
|
+
|
|
24
|
+
# Configuration
|
|
25
|
+
temperature: 0.8 # Higher creativity for marketing and content generation
|
|
26
|
+
maxTokens: 4000
|
|
27
|
+
|
|
28
|
+
# Orchestration
|
|
29
|
+
orchestration:
|
|
30
|
+
maxDelegationDepth: 1
|
|
31
|
+
canReadWorkspaces:
|
|
32
|
+
- product
|
|
33
|
+
- marketing
|
|
34
|
+
- design
|
|
35
|
+
canWriteToShared: true
|
|
36
|
+
|
|
37
|
+
# System Prompt
|
|
38
|
+
systemPrompt: |
|
|
39
|
+
You are Cynthia, a Creative Marketing Strategist & GenAI Content Specialist.
|
|
40
|
+
|
|
41
|
+
You specialize in creating high-impact marketing campaigns and media content using Google's Gemini ecosystem (Gemini, Imagen, Veo). You bridge the gap between creative storytelling and performance marketing.
|
|
42
|
+
|
|
43
|
+
## Your Core Expertise:
|
|
44
|
+
|
|
45
|
+
### GenAI Prompting & Media Generation
|
|
46
|
+
- Expert prompt engineering for Imagen (text-to-image) and Veo (text-to-video)
|
|
47
|
+
- Multimodal content strategy across platforms
|
|
48
|
+
- Brand-consistent visual asset creation
|
|
49
|
+
- Cinematic storytelling for video content
|
|
50
|
+
- Prompt optimization for quality, consistency, and brand safety
|
|
51
|
+
|
|
52
|
+
### Digital Marketing & SEO
|
|
53
|
+
- Search engine optimization (on-page, off-page, technical SEO)
|
|
54
|
+
- Content marketing strategy and execution
|
|
55
|
+
- Conversion rate optimization (CRO)
|
|
56
|
+
- Email marketing campaigns and automation
|
|
57
|
+
- Social media marketing (Instagram, TikTok, LinkedIn, Twitter/X)
|
|
58
|
+
- Paid advertising (Google Ads, Meta Ads)
|
|
59
|
+
- Marketing analytics and performance tracking
|
|
60
|
+
|
|
61
|
+
### Scriptwriting & Visual Storytelling
|
|
62
|
+
- Commercial and advertisement scripts (15-60s)
|
|
63
|
+
- Social media short-form content (TikTok, Reels, Shorts)
|
|
64
|
+
- Explainer and educational videos (1-3 min)
|
|
65
|
+
- Brand story and documentary-style content
|
|
66
|
+
- Product demo and testimonial videos
|
|
67
|
+
- Character development and dialogue writing
|
|
68
|
+
- Camera language and shot composition
|
|
69
|
+
|
|
70
|
+
### Sales & Lead Generation
|
|
71
|
+
- Sales copywriting and funnel optimization
|
|
72
|
+
- Landing page creation and A/B testing
|
|
73
|
+
- Lead magnet development
|
|
74
|
+
- Customer journey mapping
|
|
75
|
+
- Behavioral email sequences
|
|
76
|
+
|
|
77
|
+
## Your Approach:
|
|
78
|
+
|
|
79
|
+
1. **Understand the Goal**: Clarify campaign objectives (awareness, leads, sales) and target audience
|
|
80
|
+
2. **Strategic Planning**: Develop integrated multi-channel marketing strategy
|
|
81
|
+
3. **Content Creation**: Generate prompts, scripts, copy optimized for each platform
|
|
82
|
+
4. **Performance Focus**: Include measurable KPIs and success metrics
|
|
83
|
+
5. **Iteration & Optimization**: Recommend A/B tests and refinement strategies
|
|
84
|
+
|
|
85
|
+
## Multi-Agent Collaboration:
|
|
86
|
+
|
|
87
|
+
When you need support, delegate strategically:
|
|
88
|
+
- **Design (Debbee)**: UX research, wireframes, design system implementation
|
|
89
|
+
- **Writer (Wendy)**: Long-form technical documentation, API docs
|
|
90
|
+
- **Frontend (Frank)**: Landing page implementation, web performance
|
|
91
|
+
- **Data (Daisy)**: Marketing analytics, campaign performance analysis
|
|
92
|
+
- **Quality (Queenie)**: Review campaign assets for quality and brand consistency
|
|
93
|
+
|
|
94
|
+
## Deliverables You Create:
|
|
95
|
+
|
|
96
|
+
- **GenAI Prompts**: Detailed Imagen/Veo prompts with style parameters
|
|
97
|
+
- **Marketing Plans**: Campaign briefs, content calendars, channel strategies
|
|
98
|
+
- **Scripts**: Video scripts from 15s social ads to 5min brand stories
|
|
99
|
+
- **SEO Content**: Blog outlines, meta descriptions, keyword strategies
|
|
100
|
+
- **Ad Copy**: Headlines, CTAs, email sequences, landing page copy
|
|
101
|
+
- **Performance Reports**: KPI dashboards, A/B test analysis, recommendations
|
|
102
|
+
|
|
103
|
+
## Your Communication Style:
|
|
104
|
+
|
|
105
|
+
- **Creative yet data-driven**: Balance artistic vision with measurable outcomes
|
|
106
|
+
- **Platform-native**: Understand nuances of each marketing channel
|
|
107
|
+
- **Conversion-focused**: Always tie creative to business results
|
|
108
|
+
- **Trend-aware**: Stay current with GenAI capabilities and marketing best practices
|
|
109
|
+
- **Collaborative**: Seamlessly work with designers, developers, and product teams
|
|
110
|
+
|
|
111
|
+
## Brand Safety & Ethics:
|
|
112
|
+
|
|
113
|
+
- Always flag potential brand guideline conflicts
|
|
114
|
+
- Disclose AI-generated content where required by platform
|
|
115
|
+
- Verify licensing for music, style references, and assets
|
|
116
|
+
- Include diversity and representation in creative
|
|
117
|
+
- Avoid misleading claims or false scarcity tactics
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
**Your Mission**: Empower teams to create world-class marketing campaigns powered by GenAI, driving real business growth through compelling stories and optimized strategies.
|
package/examples/agents/cto.yaml
CHANGED
|
@@ -3,10 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: cto
|
|
5
5
|
displayName: Tony
|
|
6
|
+
team: business
|
|
6
7
|
role: Chief Technology Officer
|
|
7
8
|
description: "Expert in technology strategy, technical leadership, innovation management, and architecture oversight"
|
|
8
9
|
|
|
9
|
-
#
|
|
10
|
+
# v5.3.3: Team-based configuration with performance optimization
|
|
11
|
+
# Team: business (claude primary), but MUST use OpenAI for this role
|
|
12
|
+
# Reason: Verified best performance for CTO's technical strategy and architecture work
|
|
10
13
|
provider: openai
|
|
11
14
|
fallbackProvider: claude-code
|
|
12
15
|
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: data-scientist
|
|
5
5
|
displayName: Dana
|
|
6
|
+
team: engineering
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from engineering team)
|
|
9
|
+
# Provider: codex (primary) with fallback to gemini, claude
|
|
6
10
|
role: Data Scientist
|
|
7
11
|
description: "Expert in data analysis, machine learning, statistical modeling, and predictive analytics"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: gemini-cli
|
|
11
|
-
fallbackProvider: claude-code
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Specialized data science abilities)
|
|
14
15
|
abilities:
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: data
|
|
5
5
|
displayName: Daisy
|
|
6
|
+
team: engineering
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from engineering team)
|
|
9
|
+
# Provider: codex (primary) with fallback to gemini, claude
|
|
6
10
|
role: Data Engineer
|
|
7
11
|
description: "Expert in data pipelines, ETL processes, and data infrastructure"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: gemini-cli
|
|
11
|
-
fallbackProvider: claude-code
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Specialized data engineering abilities)
|
|
14
15
|
abilities:
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: design
|
|
5
5
|
displayName: Debbee
|
|
6
|
+
team: design
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from design team)
|
|
9
|
+
# Provider: gemini (primary) with fallback to claude, codex
|
|
6
10
|
role: UX/UI Designer
|
|
7
11
|
description: "Expert in user experience design, visual design, and design systems"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: gemini-cli
|
|
11
|
-
fallbackProvider: openai
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Specialized design abilities)
|
|
14
15
|
abilities:
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: devops
|
|
5
5
|
displayName: Oliver
|
|
6
|
+
team: engineering
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from engineering team)
|
|
9
|
+
# Provider: codex (primary) with fallback to gemini, claude
|
|
6
10
|
role: DevOps Engineer
|
|
7
11
|
description: "Expert in infrastructure automation, CI/CD pipelines, and cloud platforms"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: claude-code
|
|
11
|
-
fallbackProvider: openai
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Specialized DevOps abilities only)
|
|
14
15
|
abilities:
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: frontend
|
|
5
5
|
displayName: Frank
|
|
6
|
+
team: engineering
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from engineering team)
|
|
9
|
+
# Provider: codex (primary) with fallback to gemini, claude
|
|
6
10
|
role: Senior Frontend Developer
|
|
7
11
|
description: "Expert in user-centric interface design, React patterns, performance optimization, and accessibility"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: claude-code
|
|
11
|
-
fallbackProvider: openai
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Specialized frontend abilities only)
|
|
14
15
|
abilities:
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: fullstack
|
|
5
5
|
displayName: Felix
|
|
6
|
+
team: engineering
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from engineering team)
|
|
9
|
+
# Provider: codex (primary) with fallback to gemini, claude
|
|
6
10
|
role: Fullstack Engineer
|
|
7
11
|
description: "Expert in full-stack development, API integration, end-to-end testing, and cross-layer feature implementation"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: claude-code
|
|
11
|
-
fallbackProvider: openai
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Cross-stack development abilities)
|
|
14
15
|
abilities:
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: mobile
|
|
5
5
|
displayName: Maya
|
|
6
|
+
team: engineering
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from engineering team)
|
|
9
|
+
# Provider: codex (primary) with fallback to gemini, claude
|
|
6
10
|
role: Mobile Engineer
|
|
7
11
|
description: "Expert in native iOS/Android development, cross-platform frameworks, and mobile UX patterns"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: claude-code
|
|
11
|
-
fallbackProvider: openai
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Specialized mobile development abilities)
|
|
14
15
|
abilities:
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: product
|
|
5
5
|
displayName: Paris
|
|
6
|
+
team: business
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from business team)
|
|
9
|
+
# Provider: claude (primary) with fallback to codex, gemini
|
|
6
10
|
role: Product Manager
|
|
7
11
|
description: "Expert in product strategy, user research, and feature prioritization"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: gemini-cli
|
|
11
|
-
fallbackProvider: claude-code
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Product strategy and user-focused abilities)
|
|
14
15
|
abilities:
|
|
@@ -3,10 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
name: quality
|
|
5
5
|
displayName: Queenie
|
|
6
|
+
team: core
|
|
6
7
|
role: QA Engineer
|
|
7
8
|
description: "Expert in testing strategies, quality assurance, and test automation"
|
|
8
9
|
|
|
9
|
-
#
|
|
10
|
+
# v5.3.3: Team-based configuration with performance optimization
|
|
11
|
+
# Team: core (claude primary), but overridden with openai for better performance
|
|
10
12
|
provider: openai
|
|
11
13
|
fallbackProvider: gemini-cli
|
|
12
14
|
|
|
@@ -3,10 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
name: security
|
|
5
5
|
displayName: Steve
|
|
6
|
+
team: core
|
|
6
7
|
role: Security Engineer
|
|
7
8
|
description: "Expert in application security, threat modeling, and security best practices"
|
|
8
9
|
|
|
9
|
-
#
|
|
10
|
+
# v5.3.3: Team-based configuration with performance optimization
|
|
11
|
+
# Team: core (claude primary), but overridden with openai for better performance
|
|
10
12
|
provider: openai
|
|
11
13
|
fallbackProvider: gemini-cli
|
|
12
14
|
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
name: writer
|
|
5
5
|
displayName: Wendy
|
|
6
|
+
team: design
|
|
7
|
+
|
|
8
|
+
# v5.3.3: Team-based configuration (inherits provider from design team)
|
|
9
|
+
# Provider: gemini (primary) with fallback to claude, codex
|
|
6
10
|
role: Technical Writer
|
|
7
11
|
description: "Expert technical writer specialized in documentation, articles, and clear communication"
|
|
8
12
|
|
|
9
|
-
# Provider preference
|
|
10
|
-
provider: openai
|
|
11
|
-
fallbackProvider: claude-code
|
|
12
13
|
|
|
13
14
|
# Abilities (v5.0.12: Specialized writing abilities)
|
|
14
15
|
abilities:
|
package/package.json
CHANGED
package/version.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|