@defai.digital/automatosx 5.3.5 โ 5.3.7
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 +129 -0
- package/README.md +6 -3
- package/dist/index.js +11 -2
- package/dist/index.js.map +1 -1
- package/dist/version.json +2 -2
- package/examples/AGENTS_INFO.md +364 -377
- package/package.json +2 -5
- package/version.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,135 @@ 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.7] - 2025-10-15
|
|
9
|
+
|
|
10
|
+
### ๐ Agent Delegation Optimization + Tooling Improvements
|
|
11
|
+
|
|
12
|
+
**This release optimizes the multi-agent delegation architecture to reduce manual coordination by 30-40% and introduces several tooling improvements for better maintainability.**
|
|
13
|
+
|
|
14
|
+
#### Added
|
|
15
|
+
|
|
16
|
+
- **Tactical Implementer Role** (New agent classification):
|
|
17
|
+
- Introduced new "Tactical Implementer (Depth 1)" role for Bob and Frank
|
|
18
|
+
- Enables automatic consultation with specialists (security, design, quality)
|
|
19
|
+
- Bridges gap between Pure Implementers and Coordinators
|
|
20
|
+
- **Impact**: Backend/Frontend agents can now auto-delegate to specialists
|
|
21
|
+
|
|
22
|
+
- **Agent Delegation Enhancements**:
|
|
23
|
+
- **Bob (Backend)**: Upgraded from depth 0 โ 1
|
|
24
|
+
- Can now consult Steve (Security), Debbee (Design), Queenie (Quality), Wendy (Writer)
|
|
25
|
+
- Automatic security reviews and design validation
|
|
26
|
+
- **Frank (Frontend)**: Upgraded from depth 0 โ 1
|
|
27
|
+
- Can now consult Debbee (Design), Steve (Security), Queenie (Quality), Bob (Backend)
|
|
28
|
+
- Automatic design validation and security reviews
|
|
29
|
+
- Clear delegation strategies documented in systemPrompts
|
|
30
|
+
|
|
31
|
+
- **OS Compatibility Badges** (`README.md`):
|
|
32
|
+
- macOS 26.0 (tested and working)
|
|
33
|
+
- Windows 10+ (tested and working)
|
|
34
|
+
- Ubuntu 24.04 (tested and working)
|
|
35
|
+
|
|
36
|
+
- **Tools Enhancements**:
|
|
37
|
+
- `tools:check` npm script for shell script validation
|
|
38
|
+
- Automatic test count updates in `sync-all-versions.js`
|
|
39
|
+
- Dynamic archive directory naming (date-based) in cleanup scripts
|
|
40
|
+
|
|
41
|
+
#### Changed
|
|
42
|
+
|
|
43
|
+
- **Agent Configuration** (`.automatosx/agents/`):
|
|
44
|
+
- `backend.yaml`: maxDelegationDepth 0 โ 1 with delegation strategy
|
|
45
|
+
- `frontend.yaml`: maxDelegationDepth 0 โ 1 with delegation strategy
|
|
46
|
+
- `data.yaml`: Fixed systemPrompt inconsistency (confirmed depth 0)
|
|
47
|
+
|
|
48
|
+
- **Documentation** (`examples/AGENTS_INFO.md`):
|
|
49
|
+
- Reorganized with new "Tactical Implementers" section
|
|
50
|
+
- Updated agent count: 16 agents (3 Strategic, 6 Tactical, 2 Tactical Implementers, 5 Pure)
|
|
51
|
+
- Updated team distribution table
|
|
52
|
+
- Version header updated to v5.3.6
|
|
53
|
+
|
|
54
|
+
- **Tooling Scripts**:
|
|
55
|
+
- `cleanup-tmp.sh`: Dynamic archive-YYYY-MM naming (was hardcoded 2025-10)
|
|
56
|
+
- `cleanup-prd.sh`: Dynamic archive-YYYY-MM naming
|
|
57
|
+
- `smoke-test.sh`: Dynamic version regex (was hardcoded 4.0.0)
|
|
58
|
+
- Archived `migrate-agent.sh` to `tools/archive/` (rarely used)
|
|
59
|
+
|
|
60
|
+
- **Test Count Badge**: Updated from 1,717 โ 1,845 tests (all passing)
|
|
61
|
+
|
|
62
|
+
#### Fixed
|
|
63
|
+
|
|
64
|
+
- **Daisy Configuration Inconsistency**:
|
|
65
|
+
- YAML had `maxDelegationDepth: 0` but systemPrompt said `depth: 1`
|
|
66
|
+
- Fixed systemPrompt to correctly reflect depth 0 as Pure Implementer
|
|
67
|
+
- Added guidance for cross-domain handoff recommendations
|
|
68
|
+
|
|
69
|
+
- **Hardcoded Values**:
|
|
70
|
+
- Archive directory dates no longer hardcoded (now date-based)
|
|
71
|
+
- Version checks in smoke-test now use regex pattern
|
|
72
|
+
- All cleanup scripts use dynamic path resolution
|
|
73
|
+
|
|
74
|
+
#### Documentation
|
|
75
|
+
|
|
76
|
+
- **Delegation Architecture Reports** (in `tmp/`):
|
|
77
|
+
- `delegation-optimization-report.md`: Complete 16-agent analysis (55KB)
|
|
78
|
+
- `delegation-changes-proposal.md`: Detailed implementation plan (44KB)
|
|
79
|
+
- `delegation-architecture-decision.md`: ADR-003 formal decision record (21KB)
|
|
80
|
+
- `v5.3.6-implementation-summary.md`: Complete implementation log
|
|
81
|
+
|
|
82
|
+
- **Bug Analysis** (in `tmp/`):
|
|
83
|
+
- `bug-analysis-report.md`: Comprehensive code quality review
|
|
84
|
+
- `fix-summary.md`: P1 minor issues resolution
|
|
85
|
+
- All 1,813 tests passing (100% pass rate)
|
|
86
|
+
|
|
87
|
+
#### Technical Details
|
|
88
|
+
|
|
89
|
+
**Delegation Flow Example (Before vs After)**:
|
|
90
|
+
|
|
91
|
+
Before (Bob depth 0):
|
|
92
|
+
```
|
|
93
|
+
User โ Bob: "Implement JWT auth"
|
|
94
|
+
Bob: "Done, needs security review"
|
|
95
|
+
User โ Steve: "Review Bob's code" โ Manual coordination
|
|
96
|
+
Steve: "3 security issues found"
|
|
97
|
+
User โ Bob: "Fix issues"
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
After (Bob depth 1):
|
|
101
|
+
```
|
|
102
|
+
User โ Bob: "Implement JWT auth"
|
|
103
|
+
Bob: "Implementing... consulting Steve for security review"
|
|
104
|
+
โ Steve: "Review in progress..."
|
|
105
|
+
โ Steve: "3 security recommendations"
|
|
106
|
+
Bob: "Applied security fixes, implementation complete!"
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
**Expected Benefits**:
|
|
110
|
+
- โ
30-40% reduction in manual coordination
|
|
111
|
+
- โ
Improved developer experience
|
|
112
|
+
- โ
More intelligent automatic collaboration
|
|
113
|
+
- โ
Better alignment with real-world workflows
|
|
114
|
+
|
|
115
|
+
**Risk Assessment**:
|
|
116
|
+
- ๐ข Low risk: Full backward compatibility maintained
|
|
117
|
+
- ๐ข Cycle detection: Existing mechanisms prevent loops
|
|
118
|
+
- ๐ข Performance: +10-15s for specialist consultation (acceptable trade-off)
|
|
119
|
+
- ๐ข Testing: All 1,813 tests passing (100% pass rate)
|
|
120
|
+
|
|
121
|
+
**Quality Metrics**:
|
|
122
|
+
- Code Quality Score: 92/100 (Excellent)
|
|
123
|
+
- Test Pass Rate: 100% (1,813/1,813)
|
|
124
|
+
- TypeScript Errors: 0
|
|
125
|
+
- Critical Bugs: 0
|
|
126
|
+
|
|
127
|
+
#### Phase 2 Roadmap (v5.4.0)
|
|
128
|
+
|
|
129
|
+
Planned for future releases based on Phase 1 evaluation:
|
|
130
|
+
- Eric (CEO): Depth 1 โ 2 (strategic coordination)
|
|
131
|
+
- Paris (Product): Depth 1 โ 2 (complex product workflows - pilot)
|
|
132
|
+
|
|
133
|
+
**Evaluation Period**: 4 weeks after v5.3.6 release
|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
|
|
8
137
|
## [5.3.5] - 2025-10-14
|
|
9
138
|
|
|
10
139
|
### ๐ง Windows + Claude Code Integration Fix
|
package/README.md
CHANGED
|
@@ -7,7 +7,10 @@
|
|
|
7
7
|
[](https://www.npmjs.com/package/@defai.digital/automatosx)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
[](https://www.typescriptlang.org/)
|
|
10
|
-
[](#)
|
|
11
|
+
[](https://www.apple.com/macos)
|
|
12
|
+
[](https://www.microsoft.com/windows)
|
|
13
|
+
[](https://ubuntu.com)
|
|
11
14
|
|
|
12
15
|
**Status**: โ
Production Ready ยท v5.3.5 ยท October 2025
|
|
13
16
|
|
|
@@ -765,7 +768,7 @@ I need Daisy to analyze the data # Need expression
|
|
|
765
768
|
|
|
766
769
|
## ๐ ๏ธ Production-Ready
|
|
767
770
|
|
|
768
|
-
โ
**1,
|
|
771
|
+
โ
**1,845 tests passing** (100% pass rate)
|
|
769
772
|
โ
**TypeScript strict mode** (zero errors)
|
|
770
773
|
โ
**~56% test coverage** (comprehensive testing)
|
|
771
774
|
โ
**458KB bundle** (99.9% smaller than v3.x)
|
|
@@ -785,7 +788,7 @@ AutomatosX has been thoroughly tested across multiple operating systems:
|
|
|
785
788
|
Memory Search: < 1ms (10,000 entries)
|
|
786
789
|
Bundle Size: 458KB (down from 340MB in v3.x)
|
|
787
790
|
Dependencies: 19 packages (down from 589 in v3.x)
|
|
788
|
-
Test Coverage: ~56% (1,
|
|
791
|
+
Test Coverage: ~56% (1,845 tests passing, 100% pass rate)
|
|
789
792
|
Memory Cost: $0 (no API calls)
|
|
790
793
|
```
|
|
791
794
|
|
package/dist/index.js
CHANGED
|
@@ -2281,8 +2281,17 @@ This is a placeholder streaming response.`;
|
|
|
2281
2281
|
if (options.onToken) {
|
|
2282
2282
|
options.onToken(token);
|
|
2283
2283
|
}
|
|
2284
|
-
const
|
|
2285
|
-
|
|
2284
|
+
const promptTokens = this.estimateTokens(prompt);
|
|
2285
|
+
let estimatedTotal;
|
|
2286
|
+
if (tokenCount < 50) {
|
|
2287
|
+
estimatedTotal = Math.max(100, Math.floor(promptTokens * 1.5));
|
|
2288
|
+
} else if (tokenCount < 200) {
|
|
2289
|
+
const initialEstimate = Math.floor(promptTokens * 1.5);
|
|
2290
|
+
estimatedTotal = Math.max(initialEstimate, Math.floor(tokenCount * 1.2));
|
|
2291
|
+
} else {
|
|
2292
|
+
estimatedTotal = Math.floor(tokenCount * 1.2);
|
|
2293
|
+
}
|
|
2294
|
+
const progress = Math.min(95, tokenCount / estimatedTotal * 100);
|
|
2286
2295
|
if (options.onProgress) {
|
|
2287
2296
|
options.onProgress(progress);
|
|
2288
2297
|
}
|