@defai.digital/automatosx 5.6.3 → 5.6.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 +100 -0
- package/README.md +2 -2
- package/dist/index.js +323 -248
- package/package.json +1 -1
- package/examples/abilities/coverage/base.css +0 -224
- package/examples/abilities/coverage/block-navigation.js +0 -87
- package/examples/abilities/coverage/coverage-final.json +0 -1
- package/examples/abilities/coverage/favicon.png +0 -0
- package/examples/abilities/coverage/index.html +0 -101
- package/examples/abilities/coverage/prettify.css +0 -1
- package/examples/abilities/coverage/prettify.js +0 -2
- package/examples/abilities/coverage/sort-arrow-sprite.png +0 -0
- package/examples/abilities/coverage/sorter.js +0 -210
- package/examples/agents/.tmp +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,106 @@
|
|
|
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.5](https://github.com/defai-digital/automatosx/compare/v5.6.4...v5.6.5) (2025-10-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **providers:** fix read-only sandbox preventing agents from writing files ([#sandbox-fix](https://github.com/defai-digital/automatosx/issues/sandbox-fix))
|
|
11
|
+
- Add `--sandbox workspace-write` flag to OpenAI provider (codex-cli)
|
|
12
|
+
- Add `--approval-mode auto_edit` flag to Gemini provider
|
|
13
|
+
- Fixes "this session is read-only" error reported by users
|
|
14
|
+
- All agents (Bob, Alice, etc.) can now write files to workspace
|
|
15
|
+
- Affects: All agents using OpenAI/Gemini providers since v5.6.0
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Security
|
|
19
|
+
|
|
20
|
+
* **providers:** enhance sandbox security configuration
|
|
21
|
+
- OpenAI: Use `workspace-write` mode (more secure than `danger-full-access`)
|
|
22
|
+
- Gemini: Use `auto_edit` mode (safer than `yolo` mode)
|
|
23
|
+
- Maintains workspace isolation while enabling file operations
|
|
24
|
+
- No breaking changes, fully backward compatible
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Testing
|
|
28
|
+
|
|
29
|
+
* **providers:** update CLI args tests for sandbox permissions
|
|
30
|
+
- Updated `tests/unit/provider-cli-args.test.ts` expectations
|
|
31
|
+
- All 2,116 unit tests passing ✅
|
|
32
|
+
- All 91 integration tests passing ✅
|
|
33
|
+
- Manual verification: Bob agent write operations confirmed working
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## [5.6.4](https://github.com/defai-digital/automatosx/compare/v5.6.3...v5.6.4) (2025-10-18)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* **release:** fix v5.6.3 missing path-utils module causing runtime errors ([3d0d682](https://github.com/defai-digital/automatosx/commit/3d0d682))
|
|
42
|
+
- Add missing `src/utils/path-utils.ts` (311 lines)
|
|
43
|
+
- Add comprehensive path utility functions for cross-platform support
|
|
44
|
+
- Fix module not found errors when importing path utilities
|
|
45
|
+
- Add 6 new files (2,556 lines total)
|
|
46
|
+
- Add 1,314 lines of path-related tests
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Features
|
|
50
|
+
|
|
51
|
+
* **core:** add centralized path utilities for cross-platform support ([3d0d682](https://github.com/defai-digital/automatosx/commit/3d0d682))
|
|
52
|
+
- Path normalization (forward slashes for display)
|
|
53
|
+
- Platform-native path conversion (OS-specific separators)
|
|
54
|
+
- Cross-platform path comparison (case-insensitive on Windows)
|
|
55
|
+
- Windows short path expansion (8.3 format → full names)
|
|
56
|
+
- Path containment and relative path utilities
|
|
57
|
+
- 15 utility functions with comprehensive JSDoc documentation
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Security
|
|
61
|
+
|
|
62
|
+
* **path-validation:** enhance path security across all core modules
|
|
63
|
+
- Centralized path validation in PathResolver
|
|
64
|
+
- Block directory traversal attacks (`..`, absolute paths)
|
|
65
|
+
- Prevent symbolic link exploitation
|
|
66
|
+
- Workspace isolation (PRD/tmp only)
|
|
67
|
+
- Updated modules: ConfigManager, MemoryManager, SessionManager, WorkspaceManager
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Testing
|
|
71
|
+
|
|
72
|
+
* **path-utils:** add comprehensive test suite for path utilities
|
|
73
|
+
- `tests/unit/path-utils.test.ts` - 813 lines, 40+ unit tests
|
|
74
|
+
- `tests/unit/path-validation-security.test.ts` - 463 lines, security tests
|
|
75
|
+
- `tests/helpers/path-assertions.ts` - Custom path assertions
|
|
76
|
+
- `tests/helpers/temp-dir.ts` - Temporary directory management
|
|
77
|
+
- Total: 2,296 tests passing ✅
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
### Documentation
|
|
81
|
+
|
|
82
|
+
* **CLAUDE.md:** update version to v5.6.4 and fix markdownlint warnings
|
|
83
|
+
- Fix duplicate heading warnings (Gemini CLI sections)
|
|
84
|
+
- Fix blank lines around lists (MD032)
|
|
85
|
+
- Add path-utils documentation
|
|
86
|
+
- Update security section with path validation details
|
|
87
|
+
- Add tmp directory usage guidelines
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
## [5.6.3](https://github.com/defai-digital/automatosx/compare/v5.6.2...v5.6.3) (2025-10-17)
|
|
91
|
+
|
|
92
|
+
**⚠️ CRITICAL ISSUE**: This version was published with missing files and should not be used. Please upgrade to v5.6.4.
|
|
93
|
+
|
|
94
|
+
### Issues
|
|
95
|
+
|
|
96
|
+
* Missing `src/utils/path-utils.ts` causing runtime errors
|
|
97
|
+
* Core modules failed to import path utilities
|
|
98
|
+
* Package was incomplete due to uncommitted files during release
|
|
99
|
+
|
|
100
|
+
### Resolution
|
|
101
|
+
|
|
102
|
+
Upgrade to v5.6.4 which includes all necessary files.
|
|
103
|
+
|
|
104
|
+
|
|
5
105
|
## [5.6.0](https://github.com/defai-digital/automatosx/compare/v5.5.2...v5.6.0) (2025-10-17)
|
|
6
106
|
|
|
7
107
|
|
package/README.md
CHANGED
|
@@ -7,12 +7,12 @@ AutomatosX is a CLI-first orchestration tool that transforms stateless AI assist
|
|
|
7
7
|
[](https://www.npmjs.com/package/@defai.digital/automatosx)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
[](https://www.typescriptlang.org/)
|
|
10
|
-
[](#)
|
|
11
11
|
[](https://www.apple.com/macos)
|
|
12
12
|
[](https://www.microsoft.com/windows)
|
|
13
13
|
[](https://ubuntu.com)
|
|
14
14
|
|
|
15
|
-
**Status**: ✅ Production Ready · **v5.6.
|
|
15
|
+
**Status**: ✅ Production Ready · **v5.6.5** · October 2025
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|