@defai.digital/automatosx 5.4.2 → 5.6.1

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