@defai.digital/automatosx 13.1.2 → 13.1.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/README.md +84 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# AutomatosX
|
|
2
|
+
|
|
3
|
+
**AI-powered workflow automation with multi-provider orchestration**
|
|
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
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install -g @defai.digital/automatosx
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Quick Start
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# Initialize configuration and detect providers
|
|
22
|
+
ax setup
|
|
23
|
+
|
|
24
|
+
# Verify installation
|
|
25
|
+
ax doctor
|
|
26
|
+
|
|
27
|
+
# Make a provider call
|
|
28
|
+
ax call claude "Hello, world!"
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Features
|
|
32
|
+
|
|
33
|
+
- **Multi-Provider Support**: Claude, Gemini, Codex, Qwen, GLM, Grok
|
|
34
|
+
- **Deterministic Routing**: Risk-level and capability-based model selection
|
|
35
|
+
- **Event-Sourced Memory**: Temporal consistency with full replay capability
|
|
36
|
+
- **Execution Tracing**: Complete audit trail for all AI decisions
|
|
37
|
+
- **Guard System**: Policy-driven governance for AI-generated code
|
|
38
|
+
- **MCP Server**: Model Context Protocol integration for AI assistants
|
|
39
|
+
|
|
40
|
+
## CLI Commands
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
# System setup and health
|
|
44
|
+
ax setup # Initialize configuration
|
|
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
|
|
54
|
+
|
|
55
|
+
# Agent management
|
|
56
|
+
ax agent list # List agents
|
|
57
|
+
ax agent run <id> # Execute an agent
|
|
58
|
+
|
|
59
|
+
# Code review
|
|
60
|
+
ax review analyze src/ # Analyze code
|
|
61
|
+
ax review analyze src/ --focus security
|
|
62
|
+
|
|
63
|
+
# Multi-model discussion
|
|
64
|
+
ax discuss "Your topic" --pattern synthesis
|
|
65
|
+
ax discuss quick "Quick question"
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## MCP Server
|
|
69
|
+
|
|
70
|
+
Start the MCP server for AI assistant integration:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
automatosx mcp server
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Documentation
|
|
77
|
+
|
|
78
|
+
Full documentation available at: https://github.com/defai-digital/automatosx
|
|
79
|
+
|
|
80
|
+
## License
|
|
81
|
+
|
|
82
|
+
Apache-2.0 - See [LICENSE](https://github.com/defai-digital/automatosx/blob/main/LICENSE) for details.
|
|
83
|
+
|
|
84
|
+
**© 2024-2025 DEFAI Private Limited. All rights reserved.**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defai.digital/automatosx",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.3",
|
|
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.3"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"ai",
|