@defai.digital/automatosx 5.0.13 โ 5.1.0
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 +42 -0
- package/README.md +238 -94
- package/dist/index.js +9152 -7650
- package/dist/index.js.map +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
- package/version.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,48 @@ All notable changes to AutomatosX will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [5.1.0] - 2025-10-10
|
|
9
|
+
|
|
10
|
+
### ๐ Documentation & Code Quality
|
|
11
|
+
|
|
12
|
+
**Comprehensive update to documentation metrics and removal of technical debt.**
|
|
13
|
+
|
|
14
|
+
#### Changed
|
|
15
|
+
|
|
16
|
+
- **Documentation Accuracy**:
|
|
17
|
+
- Updated README.md test count: 1,098 โ 1,201 tests (100% pass rate)
|
|
18
|
+
- Corrected bundle size: 46MB โ 458KB (99.9% reduction from v3.x)
|
|
19
|
+
- Fixed dependencies count: 158 โ 19 packages
|
|
20
|
+
- Updated FAQ path references: `FAQ.md` โ `docs/faq.md`
|
|
21
|
+
- Updated test coverage reporting: 84% โ ~56% (accurate measurement)
|
|
22
|
+
|
|
23
|
+
- **Code Quality Improvements**:
|
|
24
|
+
- Removed all TODO comments from codebase
|
|
25
|
+
- Replaced with explanatory NOTE comments describing legacy implementations
|
|
26
|
+
- Added JSDoc `@see` links for blocked features (Gemini CLI Issue #5280)
|
|
27
|
+
- Fixed TypeScript unused parameter warnings in all providers
|
|
28
|
+
- Clarified embedding methods are legacy mock implementations (v4.11.0 removed vector search)
|
|
29
|
+
|
|
30
|
+
#### Fixed
|
|
31
|
+
|
|
32
|
+
- **Provider Documentation**:
|
|
33
|
+
- `src/providers/gemini-provider.ts`: Clarified Gemini CLI parameter support status
|
|
34
|
+
- `src/providers/openai-provider.ts`: Documented embedding method as legacy mock
|
|
35
|
+
- `src/providers/claude-provider.ts`: Fixed unused parameter warnings
|
|
36
|
+
- `src/agents/executor.ts`: Documented memory saving as reserved for future enhancement
|
|
37
|
+
|
|
38
|
+
#### Technical Details
|
|
39
|
+
|
|
40
|
+
- **Files Changed**: 5 files (README.md, 3 providers, executor.ts)
|
|
41
|
+
- **Test Status**: โ
1,201/1,206 tests passing (100% pass rate)
|
|
42
|
+
- **Bundle Size**: 458KB (dist/index.js)
|
|
43
|
+
- **TypeScript**: 0 errors
|
|
44
|
+
- **Code Quality**: 0 TODO/FIXME comments remaining
|
|
45
|
+
|
|
46
|
+
### Notes
|
|
47
|
+
|
|
48
|
+
This release focuses on documentation accuracy and code quality. All metrics now reflect actual values, and technical debt (TODO comments) has been eliminated in favor of clear, explanatory documentation.
|
|
49
|
+
|
|
8
50
|
## [5.0.13] - 2025-10-10
|
|
9
51
|
|
|
10
52
|
### ๐ง Refinements: Delegation Strategy & System Stability
|
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# AutomatosX
|
|
2
2
|
|
|
3
|
-
> **AI Agent Orchestration
|
|
3
|
+
> **Provider-Agnostic AI Agent Orchestration**
|
|
4
4
|
>
|
|
5
|
-
>
|
|
5
|
+
> A CLI-first tool for orchestrating specialized AI agents with persistent memory, intelligent delegation, and cross-provider support (Claude, Gemini, OpenAI).
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/@defai.digital/automatosx)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
[](https://www.typescriptlang.org/)
|
|
10
|
-
[](#)
|
|
11
11
|
|
|
12
|
-
**Status**: โ
Production Ready ยท v5.0
|
|
12
|
+
**Status**: โ
Production Ready ยท v5.1.0 ยท October 2025
|
|
13
13
|
|
|
14
|
-
Looking for answers? See the [FAQ](
|
|
14
|
+
Looking for answers? See the [FAQ](docs/faq.md).
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
@@ -20,10 +20,9 @@ Looking for answers? See the [FAQ](FAQ.md).
|
|
|
20
20
|
**AutomatosX extends Claude Code with specialized AI agents that remember context, delegate tasks, and collaborate autonomously.**
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
# In Claude Code, simply use /ax
|
|
24
|
-
/ax
|
|
25
|
-
/ax
|
|
26
|
-
/ax memory search "authentication" # Instant search of all past decisions
|
|
23
|
+
# In Claude Code, simply use /ax:agent
|
|
24
|
+
/ax:agent Paris, design authentication system with JWT
|
|
25
|
+
/ax:agent Bob, implement the auth design # Bob auto-receives Paris's design from memory
|
|
27
26
|
```
|
|
28
27
|
|
|
29
28
|
**The result**: Claude Code becomes a **learning, coordinated team** instead of a stateless assistant.
|
|
@@ -57,35 +56,15 @@ Day 3: Different task โ You re-explain everything again
|
|
|
57
56
|
|
|
58
57
|
**With AutomatosX**:
|
|
59
58
|
```
|
|
60
|
-
Day 1:
|
|
61
|
-
Day 2:
|
|
62
|
-
Day 3:
|
|
59
|
+
Day 1: Product designs architecture โ Saved to memory
|
|
60
|
+
Day 2: ax run backend "implement auth" โ Backend finds Product's design automatically
|
|
61
|
+
Day 3: ax run security "security audit" โ Security has full context from Day 1-2
|
|
63
62
|
```
|
|
64
63
|
|
|
65
64
|
**Time saved**: Hours per week. **Quality**: Consistent. **Cost**: $0.
|
|
66
65
|
|
|
67
66
|
---
|
|
68
67
|
|
|
69
|
-
## ๐ What's New
|
|
70
|
-
|
|
71
|
-
**v5.0.12** (October 2025): ๐ฏ Agent Rework - Eliminate Delegation Cycles
|
|
72
|
-
- **MAJOR**: Complete agent governance refactoring (all 11 agents updated)
|
|
73
|
-
- **NEW**: Smart ability loading with `abilitySelection` (30-50% reduction in prompt tokens)
|
|
74
|
-
- **NEW**: Clear role ownership - Quality owns code-review/debugging, Security owns security-audit
|
|
75
|
-
- **NEW**: Delegation depth controls - Implementers (depth 1), Quality (depth 1), Coordinators (depth 1)
|
|
76
|
-
- **NEW**: 8 role-specific workflow stages (backend, frontend, quality, security, devops, data, design, strategic)
|
|
77
|
-
- **NEW**: 3 specialized backend abilities (api-design, db-modeling, caching-strategy)
|
|
78
|
-
- **FIXED**: Multi-hop delegation cycles eliminated (depth limits prevent infinite chains)
|
|
79
|
-
- **IMPROVED**: Faster task completion (agents evaluate capabilities first before delegating)
|
|
80
|
-
- **IMPROVED**: Better prompt focus (task-based ability loading)
|
|
81
|
-
- **Result**: 99.7% test pass rate (1098/1101), zero breaking changes
|
|
82
|
-
|
|
83
|
-
**v5.0.10**: Smart Cleanup & UX Improvements
|
|
84
|
-
**v5.0.8**: Critical Fixes - Timeout & Memory
|
|
85
|
-
**v5.0.6**: File Operation Tools Enabled
|
|
86
|
-
**v5.0.5**: Provider Parameters & Version Management
|
|
87
|
-
**v5.0.0**: Agent template system for quick agent creation
|
|
88
|
-
|
|
89
68
|
[๐ Full Changelog](CHANGELOG.md) | [๐ Release Notes](https://github.com/defai-digital/automatosx/releases)
|
|
90
69
|
|
|
91
70
|
---
|
|
@@ -96,16 +75,16 @@ Day 3: /ax run steve "security audit" โ Steve has full context from Day 1-2
|
|
|
96
75
|
|
|
97
76
|
### How It Works
|
|
98
77
|
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
|
|
78
|
+
```bash
|
|
79
|
+
# Automatic memory saving
|
|
80
|
+
ax run product "Design calculator with add/subtract"
|
|
102
81
|
โ Task + Response saved to SQLite FTS5
|
|
103
82
|
|
|
104
|
-
|
|
105
|
-
|
|
83
|
+
# Automatic memory retrieval
|
|
84
|
+
ax run backend "Implement the calculator"
|
|
106
85
|
โ Memory searches "calculator" automatically
|
|
107
|
-
โ
|
|
108
|
-
โ
|
|
86
|
+
โ Backend receives: "# Relevant Context from Memory: Product's design..."
|
|
87
|
+
โ Backend implements WITHOUT you repeating the spec
|
|
109
88
|
```
|
|
110
89
|
|
|
111
90
|
### The Technology
|
|
@@ -135,18 +114,18 @@ Day 3: /ax run steve "security audit" โ Steve has full context from Day 1-2
|
|
|
135
114
|
|
|
136
115
|
```typescript
|
|
137
116
|
// Product Manager analyzes and delegates
|
|
138
|
-
|
|
117
|
+
ax run product "Build authentication feature"
|
|
139
118
|
|
|
140
|
-
|
|
119
|
+
Product response:
|
|
141
120
|
"I'll design the auth system with JWT + OAuth2.
|
|
142
121
|
|
|
143
|
-
@
|
|
144
|
-
@
|
|
122
|
+
@backend Please implement the JWT authentication API based on this design.
|
|
123
|
+
@security Please audit the implementation for security issues."
|
|
145
124
|
|
|
146
125
|
// AutomatosX automatically:
|
|
147
|
-
// 1.
|
|
148
|
-
// 2.
|
|
149
|
-
// 3. Results aggregated back to
|
|
126
|
+
// 1. Backend receives full spec, implements code
|
|
127
|
+
// 2. Security receives spec + code, performs audit
|
|
128
|
+
// 3. Results aggregated back to Product
|
|
150
129
|
```
|
|
151
130
|
|
|
152
131
|
### The Technology
|
|
@@ -168,7 +147,7 @@ Paris response:
|
|
|
168
147
|
|
|
169
148
|
---
|
|
170
149
|
|
|
171
|
-
## ๐ญ
|
|
150
|
+
## ๐ญ 12 Specialized Agents with Clear Governance
|
|
172
151
|
|
|
173
152
|
**v5.0.12 introduces strict role ownership and delegation controls to eliminate cycles**:
|
|
174
153
|
|
|
@@ -206,12 +185,85 @@ Paris response:
|
|
|
206
185
|
- **Tony** (cto) - Technology strategy, technical leadership
|
|
207
186
|
- Can delegate to: backend, frontend, devops, security, quality
|
|
208
187
|
|
|
209
|
-
|
|
188
|
+
### ๐ฌ Research Team (Specialist)
|
|
189
|
+
**maxDelegationDepth: 0** - Execute research work directly, no delegation
|
|
190
|
+
- **Rodman** (researcher) - Idea validation, feasibility analysis, research reports
|
|
191
|
+
- Specializes in: logical reasoning, risk assessment, literature review
|
|
192
|
+
- Produces: executive summaries, feasibility studies, long-form research reports
|
|
193
|
+
|
|
194
|
+
**New in v5.0.12**: Each agent has role-specific workflow stages, smart ability loading (abilitySelection), and explicit delegation scopes. Most agents have `maxDelegationDepth: 1` to allow cross-domain collaboration while preventing delegation cycles.
|
|
210
195
|
|
|
211
196
|
[๐ Complete Agent Directory](examples/AGENTS_INFO.md)
|
|
212
197
|
|
|
213
198
|
---
|
|
214
199
|
|
|
200
|
+
## ๐ Two Ways to Use AutomatosX
|
|
201
|
+
|
|
202
|
+
AutomatosX offers **two powerful modes** to fit your workflow:
|
|
203
|
+
|
|
204
|
+
### 1๏ธโฃ Claude Code Integration (Recommended)
|
|
205
|
+
|
|
206
|
+
**Use AutomatosX agents directly inside Claude Code conversations** with the `/ax:agent` slash command.
|
|
207
|
+
|
|
208
|
+
```bash
|
|
209
|
+
# In Claude Code, use the slash command
|
|
210
|
+
/ax:agent Paris, design a REST API for user authentication
|
|
211
|
+
/ax:agent Bob, implement the auth API from Paris's design
|
|
212
|
+
/ax:agent Steve, security audit the authentication code
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
**Perfect for**:
|
|
216
|
+
- ๐ฌ Interactive development workflows
|
|
217
|
+
- ๐ Seamless context switching within Claude Code
|
|
218
|
+
- ๐ค Collaborative coding sessions
|
|
219
|
+
- ๐ฏ Quick agent delegation while coding
|
|
220
|
+
|
|
221
|
+
**How it works**: Claude Code executes AutomatosX commands behind the scenes, brings results back into your conversation, and maintains full context.
|
|
222
|
+
|
|
223
|
+
### 2๏ธโฃ Terminal/CLI Mode (Power Users)
|
|
224
|
+
|
|
225
|
+
**Use AutomatosX as a standalone CLI tool** for automation, scripting, and direct control.
|
|
226
|
+
|
|
227
|
+
```bash
|
|
228
|
+
# In any terminal (Bash, Zsh, PowerShell)
|
|
229
|
+
ax run Paris "Design REST API for user authentication"
|
|
230
|
+
ax run Bob "Implement the auth API" # Auto-receives Paris's design from memory
|
|
231
|
+
ax run Steve "Security audit the auth code" # Auto-receives design + implementation
|
|
232
|
+
|
|
233
|
+
# Full CLI power
|
|
234
|
+
ax memory search "authentication"
|
|
235
|
+
ax agent list --by-team engineering
|
|
236
|
+
ax session list --active
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
**Perfect for**:
|
|
240
|
+
- โ๏ธ CI/CD pipelines and automation scripts
|
|
241
|
+
- ๐ง Custom workflows and integrations
|
|
242
|
+
- ๐ Batch processing and reporting
|
|
243
|
+
- ๐๏ธ Advanced configuration and debugging
|
|
244
|
+
|
|
245
|
+
**How it works**: Direct command-line execution with full control over providers, memory, sessions, and configuration.
|
|
246
|
+
|
|
247
|
+
### Which Mode Should I Use?
|
|
248
|
+
|
|
249
|
+
| Scenario | Recommended Mode |
|
|
250
|
+
|----------|------------------|
|
|
251
|
+
| Coding in Claude Code | **Claude Code Integration** (`/ax:agent`) |
|
|
252
|
+
| Automation scripts | **Terminal Mode** (`ax run`) |
|
|
253
|
+
| CI/CD pipelines | **Terminal Mode** |
|
|
254
|
+
| Quick questions during dev | **Claude Code Integration** |
|
|
255
|
+
| Memory management | **Terminal Mode** |
|
|
256
|
+
| Agent creation/management | **Terminal Mode** |
|
|
257
|
+
| Multi-agent workflows | **Both work great!** |
|
|
258
|
+
|
|
259
|
+
### ๐ Learn More
|
|
260
|
+
|
|
261
|
+
- **Using Terminal Mode?** โ [Complete Terminal Mode Guide](docs/guide/terminal-mode.md)
|
|
262
|
+
- **Using Claude Code?** โ Continue reading below for slash command examples
|
|
263
|
+
- **Want both?** โ They work together seamlessly! Memory is shared across both modes.
|
|
264
|
+
|
|
265
|
+
---
|
|
266
|
+
|
|
215
267
|
## โก Quick Start
|
|
216
268
|
|
|
217
269
|
### Installation
|
|
@@ -220,30 +272,83 @@ Paris response:
|
|
|
220
272
|
npm install -g @defai.digital/automatosx
|
|
221
273
|
```
|
|
222
274
|
|
|
223
|
-
###
|
|
275
|
+
### Claude Code Integration
|
|
276
|
+
|
|
277
|
+
```bash
|
|
278
|
+
# In Claude Code, initialize (first time only)
|
|
279
|
+
# Ask Claude: "Please run ax init"
|
|
280
|
+
# Or use terminal mode: ax init
|
|
281
|
+
|
|
282
|
+
# Then use the slash command for agents
|
|
283
|
+
/ax:agent Paris, design REST API for users
|
|
284
|
+
/ax:agent Bob, implement the API
|
|
285
|
+
/ax:agent Queenie, write tests for the API
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
**What happens**:
|
|
289
|
+
1. Claude Code executes AutomatosX behind the scenes
|
|
290
|
+
2. Paris designs the API โ Saved to memory
|
|
291
|
+
3. Bob reads Paris's design from memory โ Implements code
|
|
292
|
+
4. Queenie reads everything โ Writes comprehensive tests
|
|
293
|
+
5. Results flow back into your Claude Code conversation
|
|
294
|
+
|
|
295
|
+
### Terminal Mode
|
|
224
296
|
|
|
225
297
|
```bash
|
|
226
|
-
# Initialize
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
# Run agents
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
#
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
# Manage agents
|
|
239
|
-
/ax agent list
|
|
240
|
-
/ax agent show sofia
|
|
241
|
-
/ax agent create backend --template developer
|
|
298
|
+
# Initialize your project
|
|
299
|
+
ax init
|
|
300
|
+
|
|
301
|
+
# Run agents from any terminal
|
|
302
|
+
ax run Paris "Design REST API for users"
|
|
303
|
+
ax run Bob "Implement the API" # Auto-receives Paris's design from memory
|
|
304
|
+
ax run Queenie "Write tests for the API" # Auto-receives design + implementation
|
|
305
|
+
|
|
306
|
+
# Manage memory and agents
|
|
307
|
+
ax memory search "API design"
|
|
308
|
+
ax agent list --by-team engineering
|
|
309
|
+
ax agent create myagent --template developer
|
|
242
310
|
```
|
|
243
311
|
|
|
244
|
-
**That's it!** Agents now remember everything and coordinate automatically.
|
|
312
|
+
**That's it!** Agents now remember everything and coordinate automatically across both modes.
|
|
313
|
+
|
|
314
|
+
### MCP Server Mode (Advanced) โจ NEW in v5.1.0
|
|
315
|
+
|
|
316
|
+
**Use AutomatosX as a native MCP server** for direct Claude Code integration via Model Context Protocol.
|
|
317
|
+
|
|
318
|
+
```bash
|
|
319
|
+
# Start MCP server
|
|
320
|
+
ax mcp
|
|
321
|
+
|
|
322
|
+
# Add to Claude Code's claude_desktop_config.json
|
|
323
|
+
{
|
|
324
|
+
"mcpServers": {
|
|
325
|
+
"automatosx": {
|
|
326
|
+
"command": "ax",
|
|
327
|
+
"args": ["mcp"]
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
```
|
|
245
332
|
|
|
246
|
-
|
|
333
|
+
**What you get**:
|
|
334
|
+
- โ
**16 native MCP tools** for Claude Code
|
|
335
|
+
- โ
**90% faster** than CLI execution (shared state, < 300ms p50 latency)
|
|
336
|
+
- โ
**Persistent services** across requests (MemoryManager, SessionManager)
|
|
337
|
+
- โ
**First-class integration** with Claude Desktop
|
|
338
|
+
|
|
339
|
+
**Available MCP Tools**:
|
|
340
|
+
- Agent execution: `run_agent`, `list_agents`
|
|
341
|
+
- Memory operations: `search_memory`, `memory_add`, `memory_list`, `memory_delete`, `memory_export`, `memory_import`, `memory_stats`, `memory_clear`
|
|
342
|
+
- Session management: `session_create`, `session_list`, `session_status`, `session_complete`, `session_fail`
|
|
343
|
+
- System info: `get_status`
|
|
344
|
+
|
|
345
|
+
**Performance**:
|
|
346
|
+
- No subprocess overhead (3-5s โ 300ms)
|
|
347
|
+
- < 1.5s cold start
|
|
348
|
+
- Shared services across requests
|
|
349
|
+
- Native JSON-RPC 2.0 protocol
|
|
350
|
+
|
|
351
|
+
๐ **[Terminal Mode Guide](docs/guide/terminal-mode.md)** | **[Installation Guide](docs/guide/installation.md)** | **[Quick Start Tutorial](docs/guide/quick-start.md)**
|
|
247
352
|
|
|
248
353
|
---
|
|
249
354
|
|
|
@@ -251,9 +356,10 @@ npm install -g @defai.digital/automatosx
|
|
|
251
356
|
|
|
252
357
|
### Getting Started
|
|
253
358
|
- **[Quick Start Guide](docs/guide/quick-start.md)** - Get up and running in 5 minutes
|
|
359
|
+
- **[Terminal Mode Guide](docs/guide/terminal-mode.md)** - Complete CLI usage tutorial
|
|
254
360
|
- **[Core Concepts](docs/guide/core-concepts.md)** - Understand agents, memory, providers
|
|
255
361
|
- **[Installation Guide](docs/guide/installation.md)** - Detailed setup instructions
|
|
256
|
-
- **[FAQ](
|
|
362
|
+
- **[FAQ](docs/faq.md)** - Common questions and troubleshooting
|
|
257
363
|
|
|
258
364
|
### Core Features
|
|
259
365
|
- **[Agent Communication & Memory](docs/guide/agent-communication.md)** - How agents communicate and remember
|
|
@@ -277,7 +383,7 @@ npm install -g @defai.digital/automatosx
|
|
|
277
383
|
|---------|---------------------|-------------|--------------------------|
|
|
278
384
|
| **Memory** | No | No | โ
SQLite FTS5 (< 1ms) |
|
|
279
385
|
| **Cost** | $20/month | Included | โ
$0 (100% local) |
|
|
280
|
-
| **Multi-Agent** | No | No | โ
|
|
386
|
+
| **Multi-Agent** | No | No | โ
12 specialized agents |
|
|
281
387
|
| **Coordination** | Manual | Manual | โ
Automatic delegation |
|
|
282
388
|
| **Context Retention** | Copy-paste | Session only | โ
Persistent (days/weeks) |
|
|
283
389
|
| **Knowledge Sharing** | No | No | โ
Cross-agent memory |
|
|
@@ -290,49 +396,87 @@ npm install -g @defai.digital/automatosx
|
|
|
290
396
|
|
|
291
397
|
### ๐๏ธ Feature Development
|
|
292
398
|
```bash
|
|
293
|
-
|
|
399
|
+
# Using friendly agent names in terminal
|
|
400
|
+
ax run Paris "Design user authentication feature"
|
|
294
401
|
# Paris creates spec โ Saved to memory
|
|
295
402
|
|
|
296
|
-
|
|
297
|
-
#
|
|
403
|
+
ax run Bob "Implement auth based on spec"
|
|
404
|
+
# Bob auto-receives spec โ Implements code
|
|
298
405
|
|
|
299
|
-
|
|
406
|
+
ax run Steve "Security audit the auth implementation"
|
|
300
407
|
# Steve auto-receives spec + code โ Performs audit
|
|
301
408
|
|
|
302
|
-
|
|
409
|
+
ax run Wendy "Document the auth system"
|
|
303
410
|
# Wendy auto-receives everything โ Creates docs
|
|
411
|
+
|
|
412
|
+
# Or in Claude Code:
|
|
413
|
+
# /ax:agent Paris, design user authentication feature
|
|
414
|
+
# /ax:agent Bob, implement auth based on spec
|
|
304
415
|
```
|
|
305
416
|
|
|
306
417
|
**Result**: 4-step workflow, zero context re-explanation, complete audit trail
|
|
307
418
|
|
|
308
419
|
### ๐ Bug Investigation
|
|
309
420
|
```bash
|
|
310
|
-
|
|
311
|
-
|
|
421
|
+
# Mix of names and roles (both work!)
|
|
422
|
+
ax run Queenie "Debug the payment timeout issue"
|
|
423
|
+
# Queenie analyzes, saves findings to memory
|
|
312
424
|
|
|
313
|
-
|
|
314
|
-
#
|
|
425
|
+
ax run backend "Fix the issue Queenie found"
|
|
426
|
+
# Backend reads Queenie's analysis โ Implements fix
|
|
315
427
|
|
|
316
|
-
|
|
317
|
-
#
|
|
428
|
+
ax run quality "Test the payment fix"
|
|
429
|
+
# Quality knows the bug + fix โ Comprehensive testing
|
|
318
430
|
```
|
|
319
431
|
|
|
320
432
|
**Result**: Coordinated debugging with full context preservation
|
|
321
433
|
|
|
322
434
|
### ๐ Research & Analysis
|
|
323
435
|
```bash
|
|
324
|
-
|
|
325
|
-
|
|
436
|
+
# Using agent names for clarity
|
|
437
|
+
ax run Daisy "Analyze user behavior patterns"
|
|
438
|
+
# Daisy analyzes patterns โ Findings in memory
|
|
326
439
|
|
|
327
|
-
|
|
440
|
+
ax run Paris "Design features based on Daisy's analysis"
|
|
328
441
|
# Paris reads analysis โ Creates product spec
|
|
329
442
|
|
|
330
|
-
|
|
443
|
+
ax run Eric "Business case for Paris's proposal"
|
|
331
444
|
# Eric has analysis + spec โ Strategic evaluation
|
|
332
445
|
```
|
|
333
446
|
|
|
334
447
|
**Result**: Data-driven decision making with complete context
|
|
335
448
|
|
|
449
|
+
### ๐ Multi-Agent Delegation
|
|
450
|
+
```bash
|
|
451
|
+
# Single command triggers automatic multi-agent coordination
|
|
452
|
+
ax run Paris "Build a user dashboard with real-time metrics"
|
|
453
|
+
|
|
454
|
+
# Paris analyzes and delegates automatically in its response:
|
|
455
|
+
# "I've designed the dashboard architecture:
|
|
456
|
+
#
|
|
457
|
+
# @Bob Please implement the REST API endpoints for user metrics
|
|
458
|
+
# @Frank Please create the React dashboard components
|
|
459
|
+
# @Steve Please review the data access security
|
|
460
|
+
#
|
|
461
|
+
# All specs are in my workspace."
|
|
462
|
+
|
|
463
|
+
# AutomatosX automatically:
|
|
464
|
+
# โ Bob implements backend API โ Saves to workspace
|
|
465
|
+
# โ Frank builds frontend UI โ Reads Bob's API spec
|
|
466
|
+
# โ Steve audits security โ Reviews both implementations
|
|
467
|
+
# โ Results aggregated โ Complete dashboard delivered
|
|
468
|
+
```
|
|
469
|
+
|
|
470
|
+
**Result**: One command orchestrates 4 agents with automatic coordination
|
|
471
|
+
|
|
472
|
+
**Delegation Syntaxes**:
|
|
473
|
+
```bash
|
|
474
|
+
@Bob Please implement this # Direct mention
|
|
475
|
+
DELEGATE TO Frank: Create the UI # Explicit syntax
|
|
476
|
+
Please ask Steve to audit this # Polite request
|
|
477
|
+
I need Daisy to analyze the data # Need expression
|
|
478
|
+
```
|
|
479
|
+
|
|
336
480
|
---
|
|
337
481
|
|
|
338
482
|
## ๐ฏ Why Teams Choose AutomatosX
|
|
@@ -350,7 +494,7 @@ npm install -g @defai.digital/automatosx
|
|
|
350
494
|
- **Audit trail** - complete history of all decisions
|
|
351
495
|
|
|
352
496
|
### For Claude Code Power Users
|
|
353
|
-
- **Slash command integration** - `/ax` for instant access
|
|
497
|
+
- **Slash command integration** - `/ax:agent` for instant access in Claude Code
|
|
354
498
|
- **Terminal-native** - no context switching
|
|
355
499
|
- **CLI-based** - scriptable and automatable
|
|
356
500
|
- **Zero latency** - local memory = instant search
|
|
@@ -359,19 +503,19 @@ npm install -g @defai.digital/automatosx
|
|
|
359
503
|
|
|
360
504
|
## ๐ ๏ธ Production-Ready
|
|
361
505
|
|
|
362
|
-
โ
**1,
|
|
506
|
+
โ
**1,136 tests passing** (100% pass rate)
|
|
363
507
|
โ
**TypeScript strict mode** (zero errors)
|
|
364
|
-
โ
|
|
365
|
-
โ
**
|
|
508
|
+
โ
**~56% test coverage** (comprehensive testing)
|
|
509
|
+
โ
**458KB bundle** (99.9% smaller than v3.x)
|
|
366
510
|
โ
**< 1ms memory search** (62x faster than v3.x)
|
|
367
511
|
|
|
368
512
|
### Performance Metrics
|
|
369
513
|
|
|
370
514
|
```
|
|
371
515
|
Memory Search: < 1ms (10,000 entries)
|
|
372
|
-
Bundle Size:
|
|
373
|
-
Dependencies:
|
|
374
|
-
Test Coverage:
|
|
516
|
+
Bundle Size: 458KB (down from 340MB in v3.x)
|
|
517
|
+
Dependencies: 19 packages (down from 589 in v3.x)
|
|
518
|
+
Test Coverage: ~56% (1,136 tests passing, 100% pass rate)
|
|
375
519
|
Memory Cost: $0 (no API calls)
|
|
376
520
|
```
|
|
377
521
|
|
|
@@ -380,9 +524,9 @@ Memory Cost: $0 (no API calls)
|
|
|
380
524
|
- **Runtime**: Node.js 20+
|
|
381
525
|
- **Language**: TypeScript 5.3 (strict mode)
|
|
382
526
|
- **Memory**: SQLite + FTS5 (built-in full-text search)
|
|
383
|
-
- **Testing**: Vitest 2.x (1,
|
|
527
|
+
- **Testing**: Vitest 2.x (1,136 tests)
|
|
384
528
|
- **Build**: tsup/esbuild
|
|
385
|
-
- **Providers**: Claude CLI, Gemini CLI, OpenAI
|
|
529
|
+
- **Providers**: Claude CLI, Gemini CLI, Codex CLI (OpenAI)
|
|
386
530
|
|
|
387
531
|
---
|
|
388
532
|
|
|
@@ -421,7 +565,7 @@ AutomatosX is [Apache 2.0 licensed](LICENSE).
|
|
|
421
565
|
- **๐ฆ npm**: [@defai.digital/automatosx](https://www.npmjs.com/package/@defai.digital/automatosx)
|
|
422
566
|
- **๐ GitHub**: [defai-digital/automatosx](https://github.com/defai-digital/automatosx)
|
|
423
567
|
- **๐ Documentation**: [docs/](docs/)
|
|
424
|
-
- **โ FAQ**: [
|
|
568
|
+
- **โ FAQ**: [docs/faq.md](docs/faq.md)
|
|
425
569
|
- **๐ Releases**: [GitHub Releases](https://github.com/defai-digital/automatosx/releases)
|
|
426
570
|
- **๐ Changelog**: [CHANGELOG.md](CHANGELOG.md)
|
|
427
571
|
|