@defai.digital/automatosx 8.2.0 → 8.3.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/README.md +5 -84
- package/dist/index.js +28432 -47833
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**From Idea to Production in Minutes: The AI Workforce Platform with Persistent Memory**
|
|
4
4
|
|
|
5
|
-
AutomatosX is
|
|
5
|
+
AutomatosX is a pure CLI orchestration platform for AI agents. It wraps around `claude`, `gemini`, and `codex` commands to provide multi-agent orchestration, persistent memory, and workflow automation. Simple, focused, and easy to integrate with your existing AI workflow.
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/@defai.digital/automatosx)
|
|
8
8
|
[](LICENSE)
|
|
@@ -13,11 +13,9 @@ AutomatosX is the only AI CLI that combines declarative workflow specs, policy-d
|
|
|
13
13
|
[](https://www.microsoft.com/windows)
|
|
14
14
|
[](https://ubuntu.com)
|
|
15
15
|
|
|
16
|
-
**Status**: ✅ **Production Ready** |
|
|
16
|
+
**Status**: ✅ **Production Ready** | v8.3.0 | 20 Specialized Agents | Pure CLI Orchestration | Simplified Architecture
|
|
17
17
|
|
|
18
|
-
> 🎉 **NEW in
|
|
19
|
-
|
|
20
|
-
> ⚠️ **Note on Cost Estimation (v6.5.11+)**: Cost estimation is **disabled by default** due to frequent pricing changes. The cost optimization features described below are still functional (routing, free-tier prioritization, policy constraints), but specific dollar amounts are not shown unless you enable cost estimation in `automatosx.config.json`. See [Cost Estimation Configuration](#cost-estimation-configuration) for details.
|
|
18
|
+
> 🎉 **NEW in v8.3.0**: Major simplification! Removed ~36,000 lines of code including policy routing, free-tier management, and SDK providers. AutomatosX is now a pure CLI orchestration wrapper around `claude`, `gemini`, and `codex` commands. Simpler, faster, easier to maintain. See [Migration Guide](MIGRATION.md) for upgrade details.
|
|
21
19
|
|
|
22
20
|
---
|
|
23
21
|
|
|
@@ -34,10 +32,10 @@ AutomatosX is **the only AI platform** that gives you:
|
|
|
34
32
|
| Feature | What It Does | Value |
|
|
35
33
|
|---------|--------------|-------|
|
|
36
34
|
| 📋 **Spec-Kit Integration** | Define workflows in YAML. Generate plans, DAGs, scaffolding, and tests automatically. | Ship projects 10x faster |
|
|
37
|
-
| 💰 **Policy-Driven Routing** | Set cost/latency/privacy constraints. AutomatosX picks the optimal AI provider for every request. | Save 60-80% on AI costs |
|
|
38
35
|
| 🧠 **Persistent Memory** | Every conversation is remembered. Agents get perfect context automatically. | Never repeat yourself again |
|
|
39
36
|
| 🤝 **Multi-Agent Orchestration** | 20 specialized agents delegate tasks to each other. You manage the project, not the details. | Focus on strategy, not micromanagement |
|
|
40
|
-
|
|
|
37
|
+
| 🔧 **Pure CLI Wrapper** | Works with your existing `claude`, `gemini`, `codex` CLIs. No API keys needed. | Simple integration |
|
|
38
|
+
| 🔍 **Complete Observability** | Trace every execution and decision. Debug with confidence. | Production-grade reliability |
|
|
41
39
|
|
|
42
40
|
---
|
|
43
41
|
|
|
@@ -84,83 +82,6 @@ ax run workflow.ax.yaml
|
|
|
84
82
|
|
|
85
83
|
---
|
|
86
84
|
|
|
87
|
-
## 💬 **Interactive CLI** (New in v7.1.0!)
|
|
88
|
-
|
|
89
|
-
Experience a ChatGPT-style conversational interface directly in your terminal:
|
|
90
|
-
|
|
91
|
-
```bash
|
|
92
|
-
# Start interactive mode
|
|
93
|
-
ax cli
|
|
94
|
-
|
|
95
|
-
╭─────────────────────────────────────────────────────╮
|
|
96
|
-
│ AutomatosX Interactive CLI v7.1.0 │
|
|
97
|
-
│ Type /help for commands, /exit to quit │
|
|
98
|
-
│ Using: Gemini 2.5 Flash │
|
|
99
|
-
╰─────────────────────────────────────────────────────╯
|
|
100
|
-
|
|
101
|
-
ax> I need to implement JWT authentication
|
|
102
|
-
|
|
103
|
-
AI: I'll help you implement JWT authentication. Let me search our
|
|
104
|
-
memory for existing auth patterns...
|
|
105
|
-
|
|
106
|
-
Found 2 relevant patterns. Would you like me to:
|
|
107
|
-
1. Show implementation plan
|
|
108
|
-
2. Delegate to backend agent
|
|
109
|
-
3. Start coding immediately
|
|
110
|
-
|
|
111
|
-
ax> Delegate to backend agent
|
|
112
|
-
|
|
113
|
-
AI: @backend implement JWT authentication with refresh tokens
|
|
114
|
-
|
|
115
|
-
[Backend agent working...]
|
|
116
|
-
✓ Dependencies installed
|
|
117
|
-
✓ Auth middleware created
|
|
118
|
-
✓ Token refresh endpoint added
|
|
119
|
-
✓ Tests generated
|
|
120
|
-
|
|
121
|
-
ax> /save jwt-implementation
|
|
122
|
-
Conversation saved: jwt-implementation
|
|
123
|
-
|
|
124
|
-
ax> /exit
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
### Key Features
|
|
128
|
-
|
|
129
|
-
- 🤖 **Natural Conversations** - Multi-turn discussions with full context
|
|
130
|
-
- 🔄 **Real-time Streaming** - See responses as they're generated
|
|
131
|
-
- 💾 **Save & Resume** - Continue conversations later with `/save` and `/load`
|
|
132
|
-
- 🎯 **Agent Delegation** - Route tasks to specialists: `@backend`, `@security`, etc.
|
|
133
|
-
- 📝 **13 Slash Commands** - `/help`, `/memory`, `/agents`, `/export`, and more
|
|
134
|
-
- 🎨 **Beautiful Output** - Markdown rendering and syntax-highlighted code blocks
|
|
135
|
-
- ⚡ **Fast & Efficient** - Powered by Gemini free tier (1,500 requests/day)
|
|
136
|
-
|
|
137
|
-
### Quick Examples
|
|
138
|
-
|
|
139
|
-
```bash
|
|
140
|
-
# Start a coding session
|
|
141
|
-
ax cli
|
|
142
|
-
ax> @backend create a REST API for user management
|
|
143
|
-
ax> @security audit the authentication code
|
|
144
|
-
ax> /save user-management-api
|
|
145
|
-
|
|
146
|
-
# Search your knowledge base
|
|
147
|
-
ax cli
|
|
148
|
-
ax> /memory search "authentication patterns"
|
|
149
|
-
ax> Show me the JWT implementation we used last time
|
|
150
|
-
|
|
151
|
-
# Work across sessions
|
|
152
|
-
ax cli
|
|
153
|
-
ax> /load user-management-api
|
|
154
|
-
ax> Let's add rate limiting to these endpoints
|
|
155
|
-
ax> /export # Export to markdown for documentation
|
|
156
|
-
```
|
|
157
|
-
|
|
158
|
-
**📖 Full Guide**: [Interactive CLI Documentation](docs/cli-interactive.md)
|
|
159
|
-
|
|
160
|
-
**Alternative Commands**: `ax interactive`, `ax chat`
|
|
161
|
-
|
|
162
|
-
---
|
|
163
|
-
|
|
164
85
|
## 🗣️ **Recommended**: Natural Language Interface
|
|
165
86
|
|
|
166
87
|
AutomatosX is designed to work seamlessly with AI assistants using natural language commands. This is the **recommended way** to use AutomatosX:
|