@defai.digital/automatosx 5.3.5 โ 5.4.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 +148 -5
- package/README.md +23 -4
- package/dist/index.js +913 -1069
- package/examples/AGENTS_INFO.md +364 -377
- package/package.json +32 -10
- package/dist/index.js.map +0 -1
- package/dist/version.json +0 -6
- package/version.json +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,152 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
## [5.4.0](https://github.com/defai-digital/automatosx/compare/v5.3.7...v5.4.0) (2025-10-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* implement P0 improvements - automated release, provenance, and package optimization ([442ac50](https://github.com/defai-digital/automatosx/commit/442ac5044b5cc653ee0d7039efe0e32207d6a6c1))
|
|
11
|
+
* **release:** enhance pre-release workflow with beta/rc detection ([699b149](https://github.com/defai-digital/automatosx/commit/699b1493fe3c62e4b30c2e6e7a7290c0a052e3a7))
|
|
12
|
+
* **release:** implement P1 release process enhancements ([835d4e0](https://github.com/defai-digital/automatosx/commit/835d4e0880177919162d97563b7b6ed98e19f72a))
|
|
13
|
+
* **release:** setup conventional commits with automated changelog generation ([848f24c](https://github.com/defai-digital/automatosx/commit/848f24c4434f2853993ec99681da11fa50c0b858))
|
|
14
|
+
* **test:** add smoke tests for package verification ([5a8e5b4](https://github.com/defai-digital/automatosx/commit/5a8e5b462797beb553f4fd799441e2ea50350770))
|
|
15
|
+
* **test:** add smoke tests for package verification ([bceee8d](https://github.com/defai-digital/automatosx/commit/bceee8d24c078b79729fd13283246ea68d9f58ae))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Code Refactoring
|
|
19
|
+
|
|
20
|
+
* **version:** simplify version management using package.json as single source of truth ([0d334ae](https://github.com/defai-digital/automatosx/commit/0d334ae4e0953ea44ed7704d383e47e0b56cb74c))
|
|
21
|
+
|
|
22
|
+
## [5.3.7] - 2025-10-15
|
|
23
|
+
|
|
24
|
+
### ๐ Agent Delegation Optimization + Tooling Improvements
|
|
25
|
+
|
|
26
|
+
**This release optimizes the multi-agent delegation architecture to reduce manual coordination by 30-40% and introduces several tooling improvements for better maintainability.**
|
|
27
|
+
|
|
28
|
+
#### Added
|
|
29
|
+
|
|
30
|
+
- **Tactical Implementer Role** (New agent classification):
|
|
31
|
+
- Introduced new "Tactical Implementer (Depth 1)" role for Bob and Frank
|
|
32
|
+
- Enables automatic consultation with specialists (security, design, quality)
|
|
33
|
+
- Bridges gap between Pure Implementers and Coordinators
|
|
34
|
+
- **Impact**: Backend/Frontend agents can now auto-delegate to specialists
|
|
35
|
+
|
|
36
|
+
- **Agent Delegation Enhancements**:
|
|
37
|
+
- **Bob (Backend)**: Upgraded from depth 0 โ 1
|
|
38
|
+
- Can now consult Steve (Security), Debbee (Design), Queenie (Quality), Wendy (Writer)
|
|
39
|
+
- Automatic security reviews and design validation
|
|
40
|
+
- **Frank (Frontend)**: Upgraded from depth 0 โ 1
|
|
41
|
+
- Can now consult Debbee (Design), Steve (Security), Queenie (Quality), Bob (Backend)
|
|
42
|
+
- Automatic design validation and security reviews
|
|
43
|
+
- Clear delegation strategies documented in systemPrompts
|
|
44
|
+
|
|
45
|
+
- **OS Compatibility Badges** (`README.md`):
|
|
46
|
+
- macOS 26.0 (tested and working)
|
|
47
|
+
- Windows 10+ (tested and working)
|
|
48
|
+
- Ubuntu 24.04 (tested and working)
|
|
49
|
+
|
|
50
|
+
- **Tools Enhancements**:
|
|
51
|
+
- `tools:check` npm script for shell script validation
|
|
52
|
+
- Automatic test count updates in `sync-all-versions.js`
|
|
53
|
+
- Dynamic archive directory naming (date-based) in cleanup scripts
|
|
54
|
+
|
|
55
|
+
#### Changed
|
|
56
|
+
|
|
57
|
+
- **Agent Configuration** (`.automatosx/agents/`):
|
|
58
|
+
- `backend.yaml`: maxDelegationDepth 0 โ 1 with delegation strategy
|
|
59
|
+
- `frontend.yaml`: maxDelegationDepth 0 โ 1 with delegation strategy
|
|
60
|
+
- `data.yaml`: Fixed systemPrompt inconsistency (confirmed depth 0)
|
|
61
|
+
|
|
62
|
+
- **Documentation** (`examples/AGENTS_INFO.md`):
|
|
63
|
+
- Reorganized with new "Tactical Implementers" section
|
|
64
|
+
- Updated agent count: 16 agents (3 Strategic, 6 Tactical, 2 Tactical Implementers, 5 Pure)
|
|
65
|
+
- Updated team distribution table
|
|
66
|
+
- Version header updated to v5.3.6
|
|
67
|
+
|
|
68
|
+
- **Tooling Scripts**:
|
|
69
|
+
- `cleanup-tmp.sh`: Dynamic archive-YYYY-MM naming (was hardcoded 2025-10)
|
|
70
|
+
- `cleanup-prd.sh`: Dynamic archive-YYYY-MM naming
|
|
71
|
+
- `smoke-test.sh`: Dynamic version regex (was hardcoded 4.0.0)
|
|
72
|
+
- Archived `migrate-agent.sh` to `tools/archive/` (rarely used)
|
|
73
|
+
|
|
74
|
+
- **Test Count Badge**: Updated from 1,717 โ 1,845 tests (all passing)
|
|
75
|
+
|
|
76
|
+
#### Fixed
|
|
77
|
+
|
|
78
|
+
- **Daisy Configuration Inconsistency**:
|
|
79
|
+
- YAML had `maxDelegationDepth: 0` but systemPrompt said `depth: 1`
|
|
80
|
+
- Fixed systemPrompt to correctly reflect depth 0 as Pure Implementer
|
|
81
|
+
- Added guidance for cross-domain handoff recommendations
|
|
82
|
+
|
|
83
|
+
- **Hardcoded Values**:
|
|
84
|
+
- Archive directory dates no longer hardcoded (now date-based)
|
|
85
|
+
- Version checks in smoke-test now use regex pattern
|
|
86
|
+
- All cleanup scripts use dynamic path resolution
|
|
87
|
+
|
|
88
|
+
#### Documentation
|
|
89
|
+
|
|
90
|
+
- **Delegation Architecture Reports** (in `tmp/`):
|
|
91
|
+
- `delegation-optimization-report.md`: Complete 16-agent analysis (55KB)
|
|
92
|
+
- `delegation-changes-proposal.md`: Detailed implementation plan (44KB)
|
|
93
|
+
- `delegation-architecture-decision.md`: ADR-003 formal decision record (21KB)
|
|
94
|
+
- `v5.3.6-implementation-summary.md`: Complete implementation log
|
|
95
|
+
|
|
96
|
+
- **Bug Analysis** (in `tmp/`):
|
|
97
|
+
- `bug-analysis-report.md`: Comprehensive code quality review
|
|
98
|
+
- `fix-summary.md`: P1 minor issues resolution
|
|
99
|
+
- All 1,813 tests passing (100% pass rate)
|
|
100
|
+
|
|
101
|
+
#### Technical Details
|
|
102
|
+
|
|
103
|
+
**Delegation Flow Example (Before vs After)**:
|
|
104
|
+
|
|
105
|
+
Before (Bob depth 0):
|
|
106
|
+
```
|
|
107
|
+
User โ Bob: "Implement JWT auth"
|
|
108
|
+
Bob: "Done, needs security review"
|
|
109
|
+
User โ Steve: "Review Bob's code" โ Manual coordination
|
|
110
|
+
Steve: "3 security issues found"
|
|
111
|
+
User โ Bob: "Fix issues"
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
After (Bob depth 1):
|
|
115
|
+
```
|
|
116
|
+
User โ Bob: "Implement JWT auth"
|
|
117
|
+
Bob: "Implementing... consulting Steve for security review"
|
|
118
|
+
โ Steve: "Review in progress..."
|
|
119
|
+
โ Steve: "3 security recommendations"
|
|
120
|
+
Bob: "Applied security fixes, implementation complete!"
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
**Expected Benefits**:
|
|
124
|
+
- โ
30-40% reduction in manual coordination
|
|
125
|
+
- โ
Improved developer experience
|
|
126
|
+
- โ
More intelligent automatic collaboration
|
|
127
|
+
- โ
Better alignment with real-world workflows
|
|
128
|
+
|
|
129
|
+
**Risk Assessment**:
|
|
130
|
+
- ๐ข Low risk: Full backward compatibility maintained
|
|
131
|
+
- ๐ข Cycle detection: Existing mechanisms prevent loops
|
|
132
|
+
- ๐ข Performance: +10-15s for specialist consultation (acceptable trade-off)
|
|
133
|
+
- ๐ข Testing: All 1,813 tests passing (100% pass rate)
|
|
134
|
+
|
|
135
|
+
**Quality Metrics**:
|
|
136
|
+
- Code Quality Score: 92/100 (Excellent)
|
|
137
|
+
- Test Pass Rate: 100% (1,813/1,813)
|
|
138
|
+
- TypeScript Errors: 0
|
|
139
|
+
- Critical Bugs: 0
|
|
140
|
+
|
|
141
|
+
#### Phase 2 Roadmap (v5.4.0)
|
|
142
|
+
|
|
143
|
+
Planned for future releases based on Phase 1 evaluation:
|
|
144
|
+
- Eric (CEO): Depth 1 โ 2 (strategic coordination)
|
|
145
|
+
- Paris (Product): Depth 1 โ 2 (complex product workflows - pilot)
|
|
146
|
+
|
|
147
|
+
**Evaluation Period**: 4 weeks after v5.3.6 release
|
|
148
|
+
|
|
149
|
+
---
|
|
7
150
|
|
|
8
151
|
## [5.3.5] - 2025-10-14
|
|
9
152
|
|
|
@@ -508,7 +651,7 @@ None (infrastructure-only release)
|
|
|
508
651
|
#### Added
|
|
509
652
|
|
|
510
653
|
- **Version Synchronization Tool** (`tools/sync-all-versions.js`):
|
|
511
|
-
- Comprehensive version sync across all project files (package.json,
|
|
654
|
+
- Comprehensive version sync across all project files (package.json, README.md, CLAUDE.md)
|
|
512
655
|
- Automatic month/year formatting (e.g., "October 2025")
|
|
513
656
|
- CHANGELOG.md verification with warnings if entry missing
|
|
514
657
|
- Colorful console output with clear next-step guidance
|
|
@@ -614,7 +757,7 @@ None (infrastructure-only release)
|
|
|
614
757
|
#### Added
|
|
615
758
|
|
|
616
759
|
- **Version Synchronization Tool** (`tools/sync-all-versions.js`):
|
|
617
|
-
- Comprehensive version sync across all project files (package.json,
|
|
760
|
+
- Comprehensive version sync across all project files (package.json, README.md, CLAUDE.md)
|
|
618
761
|
- Automatic month/year formatting (e.g., "October 2025")
|
|
619
762
|
- CHANGELOG.md verification with warnings if entry missing
|
|
620
763
|
- Colorful console output with clear next-step guidance
|
package/README.md
CHANGED
|
@@ -7,9 +7,12 @@
|
|
|
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
|
-
**Status**: โ
Production Ready ยท v5.
|
|
15
|
+
**Status**: โ
Production Ready ยท v5.4.0 ยท October 2025
|
|
13
16
|
|
|
14
17
|
Looking for answers? See the [FAQ](FAQ.md).
|
|
15
18
|
|
|
@@ -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
|
|
|
@@ -800,6 +803,22 @@ Memory Cost: $0 (no API calls)
|
|
|
800
803
|
|
|
801
804
|
---
|
|
802
805
|
|
|
806
|
+
## ๐ Security
|
|
807
|
+
|
|
808
|
+
AutomatosX packages are published with [npm provenance](https://docs.npmjs.com/generating-provenance-statements), providing supply chain security and verifying package authenticity.
|
|
809
|
+
|
|
810
|
+
You can verify the provenance of any version:
|
|
811
|
+
|
|
812
|
+
```bash
|
|
813
|
+
npm view @defai.digital/automatosx@latest --json | jq .dist
|
|
814
|
+
```
|
|
815
|
+
|
|
816
|
+
Look for the `attestations` field which confirms the package was built in GitHub Actions.
|
|
817
|
+
|
|
818
|
+
For more information, see our [Security Policy](SECURITY.md).
|
|
819
|
+
|
|
820
|
+
---
|
|
821
|
+
|
|
803
822
|
## ๐ง Coming Soon
|
|
804
823
|
|
|
805
824
|
- Enhanced Claude Code integration
|