@defai.digital/automatosx 5.3.3 โ 5.3.5
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 +203 -0
- package/README.md +53 -8
- package/dist/index.js +628 -77
- package/dist/index.js.map +1 -1
- package/dist/version.json +1 -1
- package/examples/agents/cto.yaml +8 -2
- package/examples/agents/data-scientist.yaml +7 -3
- package/examples/agents/devops.yaml +8 -2
- package/package.json +1 -1
- package/version.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,209 @@ 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
|
+
## [5.3.5] - 2025-10-14
|
|
9
|
+
|
|
10
|
+
### ๐ง Windows + Claude Code Integration Fix
|
|
11
|
+
|
|
12
|
+
**This release adds automatic environment detection for AI IDE environments (Claude Code, Cursor, VS Code + Copilot), eliminating the need for manual configuration on Windows.**
|
|
13
|
+
|
|
14
|
+
#### Added
|
|
15
|
+
|
|
16
|
+
- **Automatic Environment Detection** (`src/utils/environment.ts`):
|
|
17
|
+
- New module for detecting AI IDE environments
|
|
18
|
+
- Detects Claude Code, Cursor, VS Code + Copilot automatically
|
|
19
|
+
- Auto-enables mock providers in integrated environments
|
|
20
|
+
- Smart priority system: Explicit ENV โ Auto-detection โ Standalone CLI
|
|
21
|
+
- 8 public functions with comprehensive JSDoc documentation
|
|
22
|
+
- **Impact**: Zero-configuration experience for Windows + Claude Code users
|
|
23
|
+
|
|
24
|
+
- **Enhanced Error Messages** (`src/providers/claude-provider.ts`):
|
|
25
|
+
- Environment-aware error suggestions
|
|
26
|
+
- Windows-specific troubleshooting steps
|
|
27
|
+
- Clear guidance for AI IDE vs standalone CLI modes
|
|
28
|
+
- User-friendly provider installation instructions
|
|
29
|
+
|
|
30
|
+
- **Comprehensive Test Coverage** (`tests/unit/environment.test.ts`):
|
|
31
|
+
- 50 new unit tests (100% pass rate)
|
|
32
|
+
- 100% code coverage for environment detection
|
|
33
|
+
- All edge cases tested (empty env, partial matches, priority conflicts)
|
|
34
|
+
- Performance validated (< 1ms overhead)
|
|
35
|
+
|
|
36
|
+
#### Changed
|
|
37
|
+
|
|
38
|
+
- **Provider Availability Check** (`src/providers/base-provider.ts:122-138`):
|
|
39
|
+
- Integrated automatic environment detection
|
|
40
|
+
- Auto-enables mock providers in AI IDE environments
|
|
41
|
+
- Enhanced logging for debugging
|
|
42
|
+
- Backwards compatible with explicit `AUTOMATOSX_MOCK_PROVIDERS` setting
|
|
43
|
+
|
|
44
|
+
#### Fixed
|
|
45
|
+
|
|
46
|
+
- **Windows + Claude Code Integration**:
|
|
47
|
+
- Fixed "claude: command not found" errors in Claude Code on Windows
|
|
48
|
+
- No more manual `AUTOMATOSX_MOCK_PROVIDERS=true` configuration needed
|
|
49
|
+
- Automatic detection works across all Windows versions (10/11)
|
|
50
|
+
- **Issue**: Windows users had to manually enable mock providers in AI IDEs
|
|
51
|
+
- **Solution**: Automatic environment detection with zero configuration
|
|
52
|
+
|
|
53
|
+
#### Documentation
|
|
54
|
+
|
|
55
|
+
- **New Integration Guide**: `docs/troubleshooting/windows-claude-code-integration.md`
|
|
56
|
+
- Complete guide for Windows + Claude Code users
|
|
57
|
+
- Auto-detection explanation and verification steps
|
|
58
|
+
- Troubleshooting section for common issues
|
|
59
|
+
- Migration guide from v5.3.4
|
|
60
|
+
|
|
61
|
+
- **Technical Reports** (in `tmp/`):
|
|
62
|
+
- `WINDOWS-PROVIDER-DIAGNOSIS.md`: Root cause analysis
|
|
63
|
+
- `WINDOWS-FIX-IMPLEMENTATION-REPORT.md`: Implementation details
|
|
64
|
+
- `QA-REVIEW-WINDOWS-FIX.md`: Initial QA review
|
|
65
|
+
- `QA-FINAL-APPROVAL.md`: Final approval with test results
|
|
66
|
+
|
|
67
|
+
- **Updated CLAUDE.md**: Added environment detection section
|
|
68
|
+
|
|
69
|
+
#### Technical Details
|
|
70
|
+
|
|
71
|
+
**Environment Detection Priority**:
|
|
72
|
+
|
|
73
|
+
```typescript
|
|
74
|
+
1. AUTOMATOSX_MOCK_PROVIDERS=true โ Force enable (highest)
|
|
75
|
+
2. AUTOMATOSX_MOCK_PROVIDERS=false โ Force disable (override)
|
|
76
|
+
3. AI IDE detected โ Auto-enable (smart default)
|
|
77
|
+
4. Standalone CLI โ Use real providers (fallback)
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
**Detected Environments**:
|
|
81
|
+
- Claude Code: `CLAUDE_CODE`, `CLAUDE_DESKTOP`, `MCP_SERVER`, parent process
|
|
82
|
+
- Cursor: `CURSOR`, `CURSOR_IDE`, parent process
|
|
83
|
+
- VS Code + Copilot: `VSCODE_PID` + `GITHUB_COPILOT`, `COPILOT`
|
|
84
|
+
|
|
85
|
+
#### Performance
|
|
86
|
+
|
|
87
|
+
- **No Performance Impact**:
|
|
88
|
+
- Environment detection: < 0.2ms
|
|
89
|
+
- Total overhead: < 1ms per execution
|
|
90
|
+
- Memory usage: Negligible (< 1KB)
|
|
91
|
+
- **Test Suite**: 1,785 tests passing (100% pass rate)
|
|
92
|
+
- **Build Time**: No impact
|
|
93
|
+
|
|
94
|
+
#### Migration
|
|
95
|
+
|
|
96
|
+
**100% Backward Compatible** - No action required:
|
|
97
|
+
|
|
98
|
+
- Explicit `AUTOMATOSX_MOCK_PROVIDERS=true/false` still works (highest priority)
|
|
99
|
+
- Standalone CLI mode unchanged (uses real providers)
|
|
100
|
+
- Only new behavior: Auto-enable mock providers in AI IDEs when ENV not set
|
|
101
|
+
|
|
102
|
+
**User Experience**:
|
|
103
|
+
- **Before (v5.3.4)**: Required `set AUTOMATOSX_MOCK_PROVIDERS=true` on Windows + Claude Code
|
|
104
|
+
- **After (v5.3.5)**: Works automatically, zero configuration needed
|
|
105
|
+
|
|
106
|
+
#### Quality Metrics
|
|
107
|
+
|
|
108
|
+
- **Test Coverage**: 100% for new code (50 new tests)
|
|
109
|
+
- **TypeScript**: 0 errors (strict mode)
|
|
110
|
+
- **Security**: Reviewed and approved
|
|
111
|
+
- **QA Score**: 9.5/10 (Excellent)
|
|
112
|
+
- **Risk Level**: LOW (fully tested, backwards compatible)
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## [5.3.4] - 2025-10-14
|
|
117
|
+
|
|
118
|
+
### ๐ Enhanced Delegation Depth for Coordinators (Phase 2 Pilot)
|
|
119
|
+
|
|
120
|
+
**This release implements Phase 2 of the user-requested delegation enhancements, increasing delegation depth from 1-2 to 3 layers for coordinator agents while maintaining robust safety mechanisms.**
|
|
121
|
+
|
|
122
|
+
#### Added
|
|
123
|
+
|
|
124
|
+
- **3-Layer Delegation Support**:
|
|
125
|
+
- **CTO (Tony)**: Strategic coordinator (`maxDelegationDepth: 3`) - orchestrate multi-phase technical initiatives
|
|
126
|
+
- Layer 1: Direct delegation to implementation teams
|
|
127
|
+
- Layer 2: Coordinated cross-team initiatives
|
|
128
|
+
- Layer 3: Strategic multi-phase projects with sub-coordination
|
|
129
|
+
- **DevOps (Oliver)**: Infrastructure coordinator (`maxDelegationDepth: 3`) - manage complex deployment pipelines
|
|
130
|
+
- Layer 1: Direct delegation to development teams
|
|
131
|
+
- Layer 2: Cross-team infrastructure initiatives
|
|
132
|
+
- Layer 3: Complex deployment pipelines with multiple coordination points
|
|
133
|
+
- **Data Scientist (Dana)**: Data science coordinator (`maxDelegationDepth: 3`) - orchestrate end-to-end ML workflows
|
|
134
|
+
- Layer 1: Direct delegation to data engineer, backend, quality
|
|
135
|
+
- Layer 2: Cross-functional analytics initiatives
|
|
136
|
+
- Layer 3: End-to-end ML pipelines with multiple coordination points
|
|
137
|
+
|
|
138
|
+
- **Improved Depth Enforcement Logic** (`src/agents/executor.ts:755-757`):
|
|
139
|
+
- Changed depth checking from `fromAgent` to delegation chain `initiator`
|
|
140
|
+
- Allows coordinators to delegate through implementers without hitting depth limits
|
|
141
|
+
- Example: CTO (depth 3) โ Backend (depth 1) โ Frontend (depth 1) โ Done โ
|
|
142
|
+
- Previously would fail at 2nd delegation due to Backend's depth 1 limit โ
|
|
143
|
+
|
|
144
|
+
- **Comprehensive Test Coverage**:
|
|
145
|
+
- Created `tests/unit/executor-delegation-depth-3.test.ts` with 15 new tests
|
|
146
|
+
- 5 tests for 3-layer success scenarios
|
|
147
|
+
- 3 tests for 4-layer rejection (exceeds limit)
|
|
148
|
+
- 3 tests for backward compatibility
|
|
149
|
+
- 2 tests for cycle detection at 3 layers
|
|
150
|
+
- 2 tests for delegation chain tracking
|
|
151
|
+
- **All 1,717 tests passing** (100% pass rate)
|
|
152
|
+
|
|
153
|
+
#### Changed
|
|
154
|
+
|
|
155
|
+
- **Agent Configuration Updates**:
|
|
156
|
+
- `.automatosx/agents/cto.yaml`: `maxDelegationDepth: 1 โ 3` (strategic coordinator)
|
|
157
|
+
- `.automatosx/agents/devops.yaml`: `maxDelegationDepth: 0 โ 3` (infrastructure coordinator)
|
|
158
|
+
- `.automatosx/agents/data-scientist.yaml`: `maxDelegationDepth: 1 โ 3` (data science coordinator)
|
|
159
|
+
- Updated system prompts to reflect new coordinator roles
|
|
160
|
+
|
|
161
|
+
- **Delegation Safety**:
|
|
162
|
+
- Existing cycle detection continues to work at all depth levels
|
|
163
|
+
- 4-layer delegation attempts are rejected with clear error messages
|
|
164
|
+
- Implementer agents (Backend, Frontend, etc.) remain at `maxDelegationDepth: 1`
|
|
165
|
+
|
|
166
|
+
#### Fixed
|
|
167
|
+
|
|
168
|
+
- **Windows Provider Detection** (`src/providers/base-provider.ts`):
|
|
169
|
+
- Fixed provider CLI detection on Windows by using cross-platform `findOnPath()` from `cli-provider-detector`
|
|
170
|
+
- Previously, `spawn('claude', ['--version'])` would fail on Windows because Node.js doesn't auto-append `.cmd` extension
|
|
171
|
+
- Now uses `where.exe` + PATHรPATHEXT fallback for proper Windows detection
|
|
172
|
+
- **Impact**: Providers installed via npm on Windows (e.g., `claude.cmd`) are now correctly detected
|
|
173
|
+
- **Issue**: Users could run `claude` in terminal but AutomatosX showed "provider unavailable"
|
|
174
|
+
|
|
175
|
+
#### Documentation
|
|
176
|
+
|
|
177
|
+
- **CLAUDE.md**: Updated Agent Directory & Governance section with v5.3.4 enhancements
|
|
178
|
+
- **CHANGELOG.md**: This entry documenting all Phase 2 changes
|
|
179
|
+
|
|
180
|
+
#### Technical Details
|
|
181
|
+
|
|
182
|
+
**Depth Enforcement Change** (Breaking for test implementations, not user-facing):
|
|
183
|
+
|
|
184
|
+
```typescript
|
|
185
|
+
// Before (v5.3.3 and earlier):
|
|
186
|
+
const maxDepth = fromAgentProfile.orchestration?.maxDelegationDepth ?? 2;
|
|
187
|
+
|
|
188
|
+
// After (v5.3.4):
|
|
189
|
+
const initiatorName = delegationChain.length > 0 ? delegationChain[0] : request.fromAgent;
|
|
190
|
+
const initiatorProfile = await this.profileLoader.loadProfile(initiatorName);
|
|
191
|
+
const maxDepth = initiatorProfile.orchestration?.maxDelegationDepth ?? 2;
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
**Impact**: Allows coordinators to orchestrate deep delegation chains through implementers without hitting depth limits. Implementers can still only delegate once, but coordinator's depth limit applies to the entire chain.
|
|
195
|
+
|
|
196
|
+
#### Performance
|
|
197
|
+
|
|
198
|
+
- No performance impact: Logic change is O(1) (single profile lookup)
|
|
199
|
+
- All existing tests passing (1,717 tests, 100% pass rate)
|
|
200
|
+
- Test execution time: ~50s (no regression)
|
|
201
|
+
|
|
202
|
+
#### Migration
|
|
203
|
+
|
|
204
|
+
**100% Backward Compatible** - No action required for existing deployments:
|
|
205
|
+
|
|
206
|
+
- Default `maxDelegationDepth` remains 2 for agents without orchestration config
|
|
207
|
+
- Implementer agents (Backend, Frontend, etc.) remain at depth 1
|
|
208
|
+
- Only 3 coordinator agents updated to depth 3 (CTO, DevOps, Data Scientist)
|
|
209
|
+
- Existing delegation logic fully preserved
|
|
210
|
+
|
|
8
211
|
## [5.3.3] - 2025-10-14
|
|
9
212
|
|
|
10
213
|
### ๐๏ธ Foundation for Agent Optimization
|
package/README.md
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
[](https://www.npmjs.com/package/@defai.digital/automatosx)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
[](https://www.typescriptlang.org/)
|
|
10
|
-
[](#)
|
|
11
11
|
|
|
12
|
-
**Status**: โ
Production Ready ยท v5.3.
|
|
12
|
+
**Status**: โ
Production Ready ยท v5.3.5 ยท October 2025
|
|
13
13
|
|
|
14
14
|
Looking for answers? See the [FAQ](FAQ.md).
|
|
15
15
|
|
|
@@ -179,6 +179,7 @@ Product response:
|
|
|
179
179
|
## ๐ญ 12 Specialized Agents with Clear Governance
|
|
180
180
|
|
|
181
181
|
**v5.0.12 introduces strict role ownership and delegation controls to eliminate cycles**:
|
|
182
|
+
**v5.3.4 Phase 2 Pilot**: 3 coordinator agents now support 3-layer delegation for complex multi-phase workflows
|
|
182
183
|
|
|
183
184
|
### ๐ป Engineering Team (Implementers)
|
|
184
185
|
**maxDelegationDepth: 1** - Can delegate once for cross-domain needs, no re-delegation
|
|
@@ -186,12 +187,16 @@ Product response:
|
|
|
186
187
|
- Can delegate to: frontend, data, security, quality, devops
|
|
187
188
|
- **Frank** (frontend) - Component architecture, state management, accessibility
|
|
188
189
|
- Can delegate to: backend, design, security, quality, devops
|
|
189
|
-
- **Oliver** (devops) - Infrastructure
|
|
190
|
+
- **Oliver** (devops) - **๐ v5.3.4: Infrastructure Coordinator (depth 3)** - Orchestrate complex deployment pipelines
|
|
190
191
|
- Can delegate to: backend, frontend, security, quality
|
|
192
|
+
- 3-layer capability for multi-phase infrastructure workflows
|
|
191
193
|
- **Daisy** (data) - Data modeling, ETL pipelines, SQL optimization
|
|
192
194
|
- Can delegate to: backend, security, quality
|
|
193
195
|
- **Steve** (security) - **Sole owner** of security-audit, threat modeling, secure coding review
|
|
194
196
|
- Can delegate to: backend, frontend, devops, quality
|
|
197
|
+
- **Dana** (data-scientist) - **๐ v5.3.4: Data Science Coordinator (depth 3)** - End-to-end ML pipelines
|
|
198
|
+
- Can delegate to: data, backend, quality
|
|
199
|
+
- 3-layer capability for complex data science workflows
|
|
195
200
|
|
|
196
201
|
### ๐ฏ Quality Team (Coordinator Role)
|
|
197
202
|
**maxDelegationDepth: 1** - Can delegate fixes back to implementers, no re-delegation
|
|
@@ -206,13 +211,16 @@ Product response:
|
|
|
206
211
|
- Can delegate to: backend, frontend, design, quality
|
|
207
212
|
|
|
208
213
|
### ๐ Leadership Team (Coordinators)
|
|
209
|
-
**maxDelegationDepth: 1** - Delegate to implementers, focus on strategy
|
|
214
|
+
**maxDelegationDepth: 1-3** - Delegate to implementers, focus on strategy
|
|
210
215
|
- **Paris** (product) - Product strategy, feature planning, roadmap
|
|
211
216
|
- Can delegate to: backend, frontend, design, writer, quality
|
|
217
|
+
- maxDelegationDepth: 1
|
|
212
218
|
- **Eric** (ceo) - Business strategy, organizational leadership
|
|
213
219
|
- Can delegate to: paris, tony, all agents
|
|
214
|
-
-
|
|
220
|
+
- maxDelegationDepth: 1
|
|
221
|
+
- **Tony** (cto) - **๐ v5.3.4: Strategic Coordinator (depth 3)** - Multi-phase technical initiatives
|
|
215
222
|
- Can delegate to: backend, frontend, devops, security, quality
|
|
223
|
+
- 3-layer capability for strategic technology projects with sub-coordination
|
|
216
224
|
|
|
217
225
|
### ๐ฌ Research Team (Specialist)
|
|
218
226
|
**maxDelegationDepth: 0** - Execute research work directly, no delegation
|
|
@@ -222,6 +230,8 @@ Product response:
|
|
|
222
230
|
|
|
223
231
|
**New in v5.0.12**: Each agent has role-specific workflow stages, smart ability loading (abilitySelection), and explicit delegation scopes. Most agents have `maxDelegationDepth: 1` to allow cross-domain collaboration while preventing delegation cycles.
|
|
224
232
|
|
|
233
|
+
**New in v5.3.4 (Phase 2 Pilot)**: 3 coordinator agents (Tony/CTO, Oliver/DevOps, Dana/Data Scientist) now support `maxDelegationDepth: 3` for orchestrating complex multi-layer workflows. This enables strategic coordination of multi-phase projects while maintaining safety through depth limits and cycle detection.
|
|
234
|
+
|
|
225
235
|
[๐ Complete Agent Directory](examples/AGENTS_INFO.md)
|
|
226
236
|
|
|
227
237
|
---
|
|
@@ -330,7 +340,7 @@ npm install -g @defai.digital/automatosx
|
|
|
330
340
|
|
|
331
341
|
```bash
|
|
332
342
|
ax --version
|
|
333
|
-
# Should show: 5.3.
|
|
343
|
+
# Should show: 5.3.5 (or later)
|
|
334
344
|
```
|
|
335
345
|
|
|
336
346
|
> **Windows Users**: If `ax` command not found, see [Windows Troubleshooting](docs/troubleshooting/windows-troubleshooting.md)
|
|
@@ -386,9 +396,44 @@ ax list agents
|
|
|
386
396
|
|
|
387
397
|
### ๐ช Windows Support (Fully Tested)
|
|
388
398
|
|
|
389
|
-
**AutomatosX v5.3.
|
|
399
|
+
**AutomatosX v5.3.5+ fully supports Windows 10 & 11** with automatic CLI provider detection and native Claude Code integration.
|
|
400
|
+
|
|
401
|
+
#### โจ NEW in v5.3.5: Automatic Claude Code Detection
|
|
402
|
+
|
|
403
|
+
**Windows + Claude Code users no longer need manual configuration!**
|
|
404
|
+
|
|
405
|
+
When running AutomatosX inside Claude Code on Windows, the system automatically:
|
|
406
|
+
- โ
**Detects Claude Code environment** (via ENV variables and process detection)
|
|
407
|
+
- โ
**Auto-enables mock providers** (no external CLI tools needed)
|
|
408
|
+
- โ
**Provides helpful error messages** with environment-specific guidance
|
|
409
|
+
- โ
**Zero configuration required** for most users
|
|
410
|
+
|
|
411
|
+
```bash
|
|
412
|
+
# In Claude Code on Windows - works automatically!
|
|
413
|
+
ax run backend "Create a user authentication API"
|
|
414
|
+
# โ Auto-detects Claude Code, uses mock providers seamlessly
|
|
415
|
+
|
|
416
|
+
# To verify auto-detection:
|
|
417
|
+
ax status
|
|
418
|
+
# โ Should show: "Detected Claude Code environment - auto-enabling mock providers"
|
|
419
|
+
```
|
|
420
|
+
|
|
421
|
+
**How it works**: AutomatosX detects you're running inside Claude Code and automatically enables mock providers, eliminating the "claude: command not found" errors that plagued previous versions.
|
|
422
|
+
|
|
423
|
+
**Need real AI responses?** You can still use real providers:
|
|
424
|
+
```cmd
|
|
425
|
+
REM Windows CMD
|
|
426
|
+
set AUTOMATOSX_MOCK_PROVIDERS=false
|
|
427
|
+
ax run backend "task"
|
|
428
|
+
|
|
429
|
+
REM PowerShell
|
|
430
|
+
$env:AUTOMATOSX_MOCK_PROVIDERS="false"
|
|
431
|
+
ax run backend "task"
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
๐ **Complete Guide**: [Windows + Claude Code Integration](docs/troubleshooting/windows-claude-code-integration.md)
|
|
390
435
|
|
|
391
|
-
#### Quick Start for Windows Users
|
|
436
|
+
#### Quick Start for Windows Users (Terminal Mode)
|
|
392
437
|
|
|
393
438
|
**Most users don't need any configuration** - AutomatosX automatically detects provider CLIs installed via npm:
|
|
394
439
|
|