@defai.digital/automatosx 5.4.2 → 5.6.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 +109 -0
- package/README.md +119 -765
- package/dist/index.js +23105 -12827
- package/examples/gemini/README.md +114 -0
- package/examples/gemini/commands/ax-agent.toml +35 -0
- package/examples/gemini/commands/ax-clear.toml +17 -0
- package/examples/gemini/commands/ax-init.toml +24 -0
- package/examples/gemini/commands/ax-list.toml +14 -0
- package/examples/gemini/commands/ax-memory.toml +17 -0
- package/examples/gemini/commands/ax-status.toml +16 -0
- package/examples/gemini/commands/ax-update.toml +27 -0
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,115 @@
|
|
|
2
2
|
|
|
3
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
|
+
## [5.6.0](https://github.com/defai-digital/automatosx/compare/v5.5.2...v5.6.0) (2025-10-17)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **parallel-execution:** release parallel agent execution with comprehensive testing ([6a7eacb](https://github.com/defai-digital/automatosx/commit/6a7eacb))
|
|
11
|
+
- Parallel execution of independent agents (40-60% faster workflows)
|
|
12
|
+
- DependencyGraphBuilder with cycle detection
|
|
13
|
+
- ExecutionPlanner with batch grouping and resource management
|
|
14
|
+
- ParallelAgentExecutor with error handling and cancellation
|
|
15
|
+
- CLI flags: --parallel, --show-dependency-graph, --show-timeline
|
|
16
|
+
- MetricsCollector for Prometheus-compatible metrics
|
|
17
|
+
- MemoryProfiler and CPUProfiler for performance analysis
|
|
18
|
+
- 161/163 parallel execution tests passing (99.0%)
|
|
19
|
+
- Phase 1-7 complete: Foundation, Engine, Integration, Observability, Testing, Beta, GA
|
|
20
|
+
|
|
21
|
+
* **claude-code:** fix claude-code provider recursion in Claude Code environment
|
|
22
|
+
- Prevent infinite recursion when running in Claude Code
|
|
23
|
+
- Add environment detection and fallback logic
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* **tests:** resolve 2 flaky timing tests in performance and cpu-profiler modules
|
|
29
|
+
- tests/unit/performance.test.ts: Report generation sorting
|
|
30
|
+
- tests/unit/utils/cpu-profiler.test.ts: CPU time measurement tolerance
|
|
31
|
+
|
|
32
|
+
* **permissions:** fix cross-platform directory permissions (700 → 755)
|
|
33
|
+
- Fixed init.ts to create directories with 0o755 permissions
|
|
34
|
+
- Fixed workspace-manager.ts to use 0o755 for automatosx/PRD and automatosx/tmp
|
|
35
|
+
- Resolves "permission denied" errors in multi-user/provider scenarios
|
|
36
|
+
- Cross-platform compatible (Unix/Linux/macOS, ignored on Windows)
|
|
37
|
+
|
|
38
|
+
* **display:** improve agent name display in parallel execution visualizations
|
|
39
|
+
- Timeline now shows "Name (role)" format (e.g., "Bob (backend)")
|
|
40
|
+
- Dependency graph shows friendly names alongside roles
|
|
41
|
+
- Time units changed from milliseconds to seconds (e.g., "24.22s")
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Enhancements
|
|
45
|
+
|
|
46
|
+
* **defaults:** enable parallel execution and visualizations by default
|
|
47
|
+
- --parallel: default changed from false to true
|
|
48
|
+
- --show-dependency-graph: default changed from false to true
|
|
49
|
+
- --show-timeline: default changed from false to true
|
|
50
|
+
- Users get better performance and visibility out of the box
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Documentation
|
|
54
|
+
|
|
55
|
+
* Update CLAUDE.md with v5.6.0 status and parallel execution details
|
|
56
|
+
* Add known issues section for flaky timing tests
|
|
57
|
+
* Update version references across documentation
|
|
58
|
+
* Add permission fix analysis and troubleshooting guides
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
## [5.5.2](https://github.com/defai-digital/automatosx/compare/v5.4.2...v5.5.2) (2025-10-16)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### Features
|
|
65
|
+
|
|
66
|
+
* **release:** enhance release workflow with manual trigger and improved validation ([a52c54f](https://github.com/defai-digital/automatosx/commit/a52c54f))
|
|
67
|
+
- Add manual workflow_dispatch trigger for flexible deployment
|
|
68
|
+
- Add version consistency validation between package.json and git tag
|
|
69
|
+
- Support for alpha pre-release tag in addition to beta/rc
|
|
70
|
+
- Add package installability verification before publishing
|
|
71
|
+
- Enhanced release notes generation from CHANGELOG.md
|
|
72
|
+
- Add npm propagation verification with 30-second wait
|
|
73
|
+
- Improve error diagnostics and reporting
|
|
74
|
+
- Add 30-minute job timeout protection
|
|
75
|
+
|
|
76
|
+
* **gemini-cli:** add Gemini CLI integration with bidirectional command translation ([7893494](https://github.com/defai-digital/automatosx/commit/7893494))
|
|
77
|
+
- Implement GeminiCLIBridge for MCP server discovery
|
|
78
|
+
- Add CommandTranslator for TOML ↔ Markdown conversion
|
|
79
|
+
- Support importing Gemini commands as AutomatosX abilities
|
|
80
|
+
- Support exporting AutomatosX abilities as Gemini TOML commands
|
|
81
|
+
- Add `ax gemini` command suite (setup, sync-mcp, import-command, export-ability, status)
|
|
82
|
+
- Cross-platform file system utilities
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Bug Fixes
|
|
86
|
+
|
|
87
|
+
* **command-manager:** correct function calls in command-manager.ts ([adf3e04](https://github.com/defai-digital/automatosx/commit/adf3e04))
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Documentation
|
|
91
|
+
|
|
92
|
+
* Add comprehensive deployment guides
|
|
93
|
+
- Complete deployment guide with setup instructions
|
|
94
|
+
- Quick deployment setup (5-minute guide)
|
|
95
|
+
- Deployment command cheatsheet
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
## [5.4.3-beta.0](https://github.com/defai-digital/automatosx/compare/v5.4.2...v5.4.3-beta.0) (2025-10-15)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### Features (In Development)
|
|
102
|
+
|
|
103
|
+
* **gemini-cli:** Research and planning for Gemini CLI integration
|
|
104
|
+
* **mcp:** Explore Gemini MCP support and custom commands integration
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
### Development
|
|
108
|
+
|
|
109
|
+
* Planning phase for Gemini CLI integration with AutomatosX
|
|
110
|
+
* Investigating custom command support for Gemini
|
|
111
|
+
* Researching MCP integration strategies
|
|
112
|
+
|
|
113
|
+
|
|
5
114
|
## [5.4.2](https://github.com/defai-digital/automatosx/compare/v5.4.1...v5.4.2) (2025-10-15)
|
|
6
115
|
|
|
7
116
|
|