@defai.digital/automatosx 13.1.2 → 13.1.4
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 +62 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# AutomatosX
|
|
2
|
+
|
|
3
|
+
**AI orchestration for teams who need governed, multi-provider automation**
|
|
4
|
+
|
|
5
|
+
[](https://github.com/defai-digital/automatosx)
|
|
6
|
+
[](https://github.com/defai-digital/automatosx)
|
|
7
|
+
[](https://github.com/defai-digital/automatosx)
|
|
8
|
+
[](https://nodejs.org)
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## Install
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install -g @defai.digital/automatosx
|
|
16
|
+
ax setup
|
|
17
|
+
ax doctor
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Why AutomatosX
|
|
21
|
+
|
|
22
|
+
- **Multi-provider routing** - Claude, Gemini, Codex, Qwen, GLM, Grok
|
|
23
|
+
- **Governed automation** - Policy-driven guardrails and audit-ready traces
|
|
24
|
+
- **Contract-first** - Zod schemas keep workflows and agents type-safe
|
|
25
|
+
- **MCP-native** - Ships with MCP server for IDE assistant integration
|
|
26
|
+
|
|
27
|
+
## Quick Start
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# Call a provider
|
|
31
|
+
ax call claude "Explain this code"
|
|
32
|
+
|
|
33
|
+
# Run a workflow
|
|
34
|
+
ax run code-reviewer --input '{"files":["src/index.ts"]}'
|
|
35
|
+
|
|
36
|
+
# Review code
|
|
37
|
+
ax review analyze src/ --focus security
|
|
38
|
+
|
|
39
|
+
# Multi-model discussion
|
|
40
|
+
ax discuss "Compare REST vs GraphQL" --providers claude,gemini
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## CLI Commands
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
ax setup # Initialize configuration
|
|
47
|
+
ax doctor # Check provider health
|
|
48
|
+
ax call <provider> "prompt" # Direct provider call
|
|
49
|
+
ax run <workflow> # Execute workflow
|
|
50
|
+
ax agent run <id> # Execute agent
|
|
51
|
+
ax review analyze <path> # Analyze code
|
|
52
|
+
ax discuss "<topic>" # Multi-model discussion
|
|
53
|
+
ax mcp server # Start MCP server
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Documentation
|
|
57
|
+
|
|
58
|
+
Full documentation: https://github.com/defai-digital/automatosx
|
|
59
|
+
|
|
60
|
+
## License
|
|
61
|
+
|
|
62
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defai.digital/automatosx",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.4",
|
|
4
4
|
"description": "AutomatosX CLI - AI-powered workflow automation (wrapper for @defai.digital/cli)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@defai.digital/cli": "13.1.
|
|
22
|
+
"@defai.digital/cli": "13.1.4"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"ai",
|