@defai.digital/automatosx 13.1.3 → 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 +25 -47
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AutomatosX
|
|
2
2
|
|
|
3
|
-
**AI
|
|
3
|
+
**AI orchestration for teams who need governed, multi-provider automation**
|
|
4
4
|
|
|
5
5
|
[](https://github.com/defai-digital/automatosx)
|
|
6
6
|
[](https://github.com/defai-digital/automatosx)
|
|
@@ -9,76 +9,54 @@
|
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
##
|
|
12
|
+
## Install
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
15
|
npm install -g @defai.digital/automatosx
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
## Quick Start
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
# Initialize configuration and detect providers
|
|
22
16
|
ax setup
|
|
23
|
-
|
|
24
|
-
# Verify installation
|
|
25
17
|
ax doctor
|
|
26
|
-
|
|
27
|
-
# Make a provider call
|
|
28
|
-
ax call claude "Hello, world!"
|
|
29
18
|
```
|
|
30
19
|
|
|
31
|
-
##
|
|
20
|
+
## Why AutomatosX
|
|
32
21
|
|
|
33
|
-
- **Multi-
|
|
34
|
-
- **
|
|
35
|
-
- **
|
|
36
|
-
- **
|
|
37
|
-
- **Guard System**: Policy-driven governance for AI-generated code
|
|
38
|
-
- **MCP Server**: Model Context Protocol integration for AI assistants
|
|
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
|
|
39
26
|
|
|
40
|
-
##
|
|
27
|
+
## Quick Start
|
|
41
28
|
|
|
42
29
|
```bash
|
|
43
|
-
#
|
|
44
|
-
ax
|
|
45
|
-
ax doctor # Check all providers
|
|
46
|
-
|
|
47
|
-
# Provider calls
|
|
48
|
-
ax call claude "Your prompt" # Direct provider call
|
|
49
|
-
ax call gemini "Your prompt"
|
|
50
|
-
|
|
51
|
-
# Workflow execution
|
|
52
|
-
ax run <workflow-id> # Execute workflow
|
|
53
|
-
ax list # List workflows
|
|
30
|
+
# Call a provider
|
|
31
|
+
ax call claude "Explain this code"
|
|
54
32
|
|
|
55
|
-
#
|
|
56
|
-
ax
|
|
57
|
-
ax agent run <id> # Execute an agent
|
|
33
|
+
# Run a workflow
|
|
34
|
+
ax run code-reviewer --input '{"files":["src/index.ts"]}'
|
|
58
35
|
|
|
59
|
-
#
|
|
60
|
-
ax review analyze src/ # Analyze code
|
|
36
|
+
# Review code
|
|
61
37
|
ax review analyze src/ --focus security
|
|
62
38
|
|
|
63
39
|
# Multi-model discussion
|
|
64
|
-
ax discuss "
|
|
65
|
-
ax discuss quick "Quick question"
|
|
40
|
+
ax discuss "Compare REST vs GraphQL" --providers claude,gemini
|
|
66
41
|
```
|
|
67
42
|
|
|
68
|
-
##
|
|
69
|
-
|
|
70
|
-
Start the MCP server for AI assistant integration:
|
|
43
|
+
## CLI Commands
|
|
71
44
|
|
|
72
45
|
```bash
|
|
73
|
-
|
|
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
|
|
74
54
|
```
|
|
75
55
|
|
|
76
56
|
## Documentation
|
|
77
57
|
|
|
78
|
-
Full documentation
|
|
58
|
+
Full documentation: https://github.com/defai-digital/automatosx
|
|
79
59
|
|
|
80
60
|
## License
|
|
81
61
|
|
|
82
|
-
Apache-2.0
|
|
83
|
-
|
|
84
|
-
**© 2024-2025 DEFAI Private Limited. All rights reserved.**
|
|
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",
|