@defai.digital/automatosx 9.2.4 → 10.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/CHANGELOG.md +88 -0
- package/CONTRIBUTING.md +2 -2
- package/LICENSE +13 -0
- package/README.md +56 -13
- package/dist/index.js +5039 -3465
- package/dist/mcp/index.d.ts +2 -0
- package/dist/mcp/index.js +24011 -0
- package/examples/agents/data-scientist.yaml +1 -1
- package/examples/agents/quantum-engineer.yaml +0 -1
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,94 @@ 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
|
+
## [10.0.0] - 2025-11-23
|
|
9
|
+
|
|
10
|
+
### Added - Claude Code Native Integration 🎉
|
|
11
|
+
|
|
12
|
+
**Major Feature**: Native Model Context Protocol (MCP) integration with Claude Code, eliminating the fragile CLAUDE.md documentation dependency.
|
|
13
|
+
|
|
14
|
+
#### MCP Server Integration
|
|
15
|
+
- **automatosx-mcp binary** - Native MCP server with stdio transport
|
|
16
|
+
- **17 MCP tools** - Complete programmatic access to AutomatosX features
|
|
17
|
+
- Core: `run_agent`, `list_agents`, `search_memory`, `session_create`
|
|
18
|
+
- Memory: `memory_add`, `memory_list`, `memory_clear`, `memory_export`
|
|
19
|
+
- Session: `session_list`, `session_get`, `session_add_task`, `session_close`
|
|
20
|
+
- System: `config_get`, `status`, `health_check`
|
|
21
|
+
- **JSON-RPC 2.0 protocol** - Standard MCP communication
|
|
22
|
+
|
|
23
|
+
#### Auto-Generated Manifests
|
|
24
|
+
- **ManifestGenerator class** - Generates Claude Code integration files from agent profiles
|
|
25
|
+
- **20 manifest files** - Skills, commands, and sub-agents (100% auto-generated)
|
|
26
|
+
- 1 orchestration skill (`/automatosx`)
|
|
27
|
+
- 18 slash commands (`/agent-backend`, `/agent-frontend`, etc.)
|
|
28
|
+
- 1 coordinator sub-agent for multi-agent orchestration
|
|
29
|
+
- **npm script** - `npm run generate:claude-manifests` for regeneration
|
|
30
|
+
- **Zero documentation dependency** - Manifests always match actual agent capabilities
|
|
31
|
+
|
|
32
|
+
#### One-Command Setup
|
|
33
|
+
- **`ax setup --claude-code` flag** - Complete integration setup in one command
|
|
34
|
+
- **Automatic CLI detection** - Checks for Claude Code installation
|
|
35
|
+
- **MCP server registration** - Auto-registers with `claude mcp add`
|
|
36
|
+
- **Manifest generation** - Creates all 20 integration files
|
|
37
|
+
- **Validation** - Ensures setup correctness with clear error messages
|
|
38
|
+
|
|
39
|
+
#### Comprehensive Diagnostics
|
|
40
|
+
- **`ax doctor --claude-code` command** - Health checks for Claude Code integration
|
|
41
|
+
- **5 diagnostic checks** - CLI, MCP server, registration, manifests, validation
|
|
42
|
+
- **Clear error messages** - Actionable fixes for all issues
|
|
43
|
+
- **Status reporting** - Pass/fail summary with next steps
|
|
44
|
+
|
|
45
|
+
### Changed
|
|
46
|
+
- **README.md** - Updated Quick Start with Claude Code integration options
|
|
47
|
+
- **setup command** - Added `--claude-code` flag for native integration
|
|
48
|
+
- **doctor command** - Added `--claude-code` flag for integration diagnostics
|
|
49
|
+
|
|
50
|
+
### Technical Implementation
|
|
51
|
+
- **src/mcp/index.ts** (37 lines) - MCP server entry point
|
|
52
|
+
- **src/integrations/claude-code/manifest-generator.ts** (374 lines) - Manifest generation
|
|
53
|
+
- **src/integrations/claude-code/setup-helper.ts** (293 lines) - Setup and diagnostics
|
|
54
|
+
- **tools/generate-claude-manifests.ts** (80 lines) - CLI tool for manifest generation
|
|
55
|
+
- **tests/integration/claude-code-setup.test.ts** (323 lines) - 17 comprehensive tests
|
|
56
|
+
|
|
57
|
+
### Testing
|
|
58
|
+
- **17 integration tests** - All passing (100% success rate)
|
|
59
|
+
- **Complete coverage** - Setup, diagnostics, validation, idempotency
|
|
60
|
+
- **Error condition testing** - Missing prerequisites, invalid manifests
|
|
61
|
+
- **Manual testing** - All user workflows verified
|
|
62
|
+
|
|
63
|
+
### Documentation
|
|
64
|
+
- **docs/migration/v10-claude-code-integration.md** (~1,000 lines) - Complete migration guide
|
|
65
|
+
- **docs/integrations/claude-code.md** (~1,200 lines) - User guide with examples
|
|
66
|
+
- **Troubleshooting guides** - Common issues and solutions
|
|
67
|
+
- **FAQ** - 15+ questions answered
|
|
68
|
+
|
|
69
|
+
### Breaking Changes
|
|
70
|
+
**NONE** - v10.0.0 is fully backward compatible with v9.x. All existing CLI commands, workflows, and integrations continue to work unchanged. The Claude Code integration is purely additive.
|
|
71
|
+
|
|
72
|
+
### Benefits
|
|
73
|
+
- ✅ **Robust Integration** - Programmatic MCP instead of fragile documentation
|
|
74
|
+
- ✅ **Zero Maintenance** - Manifests auto-generate from agent profiles
|
|
75
|
+
- ✅ **One-Command Setup** - `ax setup --claude-code` does everything
|
|
76
|
+
- ✅ **Clear Diagnostics** - `ax doctor --claude-code` for health checks
|
|
77
|
+
- ✅ **Natural Usage** - Slash commands (`/agent-backend`) in Claude Code
|
|
78
|
+
- ✅ **Multi-Agent Orchestration** - `/automatosx` skill for complex tasks
|
|
79
|
+
- ✅ **Persistent Memory** - Automatic context from past conversations
|
|
80
|
+
- ✅ **Complete Observability** - All actions logged via MCP
|
|
81
|
+
|
|
82
|
+
### Migration
|
|
83
|
+
Users on v9.x can upgrade with zero breaking changes:
|
|
84
|
+
```bash
|
|
85
|
+
npm install -g @defai.digital/automatosx@10.0.0
|
|
86
|
+
ax setup --claude-code # Optional - adds native integration
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
See `docs/migration/v10-claude-code-integration.md` for complete guide.
|
|
90
|
+
|
|
91
|
+
### Implementation Time
|
|
92
|
+
- **Total**: 14 hours (vs 2 weeks estimated)
|
|
93
|
+
- **Efficiency**: 95% time savings by discovering existing MCP server
|
|
94
|
+
- **Quality**: 100% test pass rate, complete documentation
|
|
95
|
+
|
|
8
96
|
## [9.2.3] - 2025-11-22
|
|
9
97
|
|
|
10
98
|
### Added
|
package/CONTRIBUTING.md
CHANGED
|
@@ -26,7 +26,7 @@ AutomatosX is an **open source project** published for **transparency and commun
|
|
|
26
26
|
- **Feature Suggestions** - Share your ideas for discussion
|
|
27
27
|
- **Documentation Improvements** - Typos, clarifications, examples
|
|
28
28
|
- **Security Reports** - See [SECURITY.md](SECURITY.md) for responsible disclosure
|
|
29
|
-
- **Questions &
|
|
29
|
+
- **Questions & Help** - Open a GitHub Issue with the `question` label
|
|
30
30
|
- **Sharing & Using** - Use AutomatosX in your projects!
|
|
31
31
|
|
|
32
32
|
### Current Development Model 🔧
|
|
@@ -45,7 +45,7 @@ We believe in **radical transparency** - you should be able to:
|
|
|
45
45
|
- ✅ Trust that nothing harmful is hidden
|
|
46
46
|
- ✅ Fork and modify for your own use (within license terms)
|
|
47
47
|
|
|
48
|
-
This doesn't mean we don't value the community! Issues,
|
|
48
|
+
This doesn't mean we don't value the community! Issues, questions, and feedback are **highly appreciated** and help make AutomatosX better.
|
|
49
49
|
|
|
50
50
|
## Getting Started
|
|
51
51
|
|
package/LICENSE
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
AutomatosX Open Source Edition - Apache License 2.0
|
|
2
|
+
|
|
3
|
+
This license applies ONLY to the AutomatosX Open Source Edition code
|
|
4
|
+
published on GitHub at https://github.com/defai-digital/automatosx
|
|
5
|
+
|
|
6
|
+
This license does NOT apply to:
|
|
7
|
+
- AutomatosX Pro Edition (proprietary software - separate EULA)
|
|
8
|
+
- AutomatosX Enterprise Edition (proprietary software - separate agreement)
|
|
9
|
+
|
|
10
|
+
For commercial editions, see COMMERCIAL-LICENSE.md
|
|
11
|
+
|
|
12
|
+
===============================================================================
|
|
13
|
+
|
|
1
14
|
Apache License
|
|
2
15
|
Version 2.0, January 2004
|
|
3
16
|
http://www.apache.org/licenses/
|
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
[](https://www.microsoft.com/windows)
|
|
14
14
|
[](https://ubuntu.com)
|
|
15
15
|
|
|
16
|
-
**Status**: ✅ **Production Ready** |
|
|
16
|
+
**Status**: ✅ **Production Ready** | v10.3.0 | Native Claude Code Integration | Enterprise MCP Support
|
|
17
17
|
|
|
18
18
|
> 🎯 **What AutomatosX Does**: Adds 20+ specialized agents, persistent memory, workflow automation, and 80% cost savings to Claude Code/Codex - **without changing how you work**.
|
|
19
19
|
|
|
@@ -107,12 +107,34 @@ npm install -g @defai.digital/automatosx
|
|
|
107
107
|
|
|
108
108
|
### Step 2: Initialize in Your Project
|
|
109
109
|
|
|
110
|
+
**Option A: With Claude Code Native Integration** (Recommended)
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
cd your-project
|
|
114
|
+
ax setup --claude-code
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
**What you get**:
|
|
118
|
+
- ✅ 18 slash commands (`/agent-backend`, `/agent-frontend`, etc.)
|
|
119
|
+
- ✅ Multi-agent orchestration (`/automatosx`)
|
|
120
|
+
- ✅ MCP server with 17 tools
|
|
121
|
+
- ✅ Auto-generated manifests
|
|
122
|
+
- ✅ One-command diagnostics (`ax doctor --claude-code`)
|
|
123
|
+
|
|
124
|
+
**Option B: Invisible Mode** (Original)
|
|
125
|
+
|
|
110
126
|
```bash
|
|
111
127
|
cd your-project
|
|
112
128
|
ax setup
|
|
113
129
|
```
|
|
114
130
|
|
|
115
|
-
**
|
|
131
|
+
**What you get**:
|
|
132
|
+
- ✅ Invisible integration (no new commands)
|
|
133
|
+
- ✅ Automatic multi-agent delegation
|
|
134
|
+
- ✅ Persistent memory
|
|
135
|
+
- ✅ Cost optimization
|
|
136
|
+
|
|
137
|
+
**That's it!** AutomatosX is now running. Keep using Claude Code naturally.
|
|
116
138
|
|
|
117
139
|
### Step 3: Use Claude Code Naturally (No New Commands!)
|
|
118
140
|
|
|
@@ -666,22 +688,43 @@ npm test
|
|
|
666
688
|
|
|
667
689
|
---
|
|
668
690
|
|
|
669
|
-
##
|
|
691
|
+
## 📦 Editions & Licensing
|
|
692
|
+
|
|
693
|
+
AutomatosX uses an **open-core model** with three editions:
|
|
670
694
|
|
|
671
|
-
|
|
695
|
+
| Edition | License | Price | Best For |
|
|
696
|
+
|---------|---------|-------|----------|
|
|
697
|
+
| **Open Source** | Apache 2.0 | Free Forever | Everyone (individuals, startups, enterprises) |
|
|
698
|
+
| **Pro** | Commercial EULA | Contact Sales | Teams needing priority support + LTS |
|
|
699
|
+
| **Enterprise** | Enterprise Agreement | Contact Sales | Regulated industries + compliance needs |
|
|
672
700
|
|
|
673
|
-
|
|
674
|
-
- **Commercial License with OpenRAIL-M** - See [COMMERCIAL-LICENSE.md](COMMERCIAL-LICENSE.md)
|
|
701
|
+
### Open Source Edition (This Repo)
|
|
675
702
|
|
|
676
|
-
**
|
|
677
|
-
|
|
678
|
-
|
|
703
|
+
**License**: [Apache License 2.0](LICENSE) - Free forever, no revenue limits
|
|
704
|
+
|
|
705
|
+
**What's Included**:
|
|
706
|
+
- ✅ Full source code on GitHub
|
|
707
|
+
- ✅ Core orchestration engine + 20+ AI agents
|
|
708
|
+
- ✅ Persistent memory system (SQLite FTS5)
|
|
709
|
+
- ✅ Multi-provider routing (Claude, Gemini, OpenAI Codex)
|
|
710
|
+
- ✅ Workflow specs and execution
|
|
711
|
+
- ✅ Community support (GitHub Issues)
|
|
712
|
+
|
|
713
|
+
**Who Can Use**: Anyone, for any purpose (personal, commercial, research)
|
|
714
|
+
|
|
715
|
+
### Pro & Enterprise Editions
|
|
716
|
+
|
|
717
|
+
**Additional Features**: Advanced workflows, team collaboration, premium agent packs, SSO/RBAC, audit logging, self-hosted deployment, white-label options, priority support (1-day SLA), long-term support (LTS), custom SLA (24/7 available)
|
|
718
|
+
|
|
719
|
+
**Get Started**: Contact <sales@defai.digital> for pricing
|
|
720
|
+
|
|
721
|
+
**Learn More**: See [COMMERCIAL-LICENSE.md](COMMERCIAL-LICENSE.md) for detailed edition comparison
|
|
722
|
+
|
|
723
|
+
---
|
|
679
724
|
|
|
680
|
-
**
|
|
681
|
-
- Email: <sales@defai.digital>
|
|
682
|
-
- Subject: "AutomatosX Commercial License Inquiry"
|
|
725
|
+
**Copyright 2025 DEFAI Private Limited**
|
|
683
726
|
|
|
684
|
-
|
|
727
|
+
**Note**: We removed revenue thresholds ($2M limit) and OpenRAIL-M references in v3.0 (November 2025). Open Source Edition is now truly free for everyone - no limits, no tracking. If you need extra features or guaranteed support, explore Pro/Enterprise editions.
|
|
685
728
|
|
|
686
729
|
---
|
|
687
730
|
|