@humain/terminal 0.0.16 → 0.0.18
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 +12 -0
- package/dist/bundle/chunks/{chunk-Z4RA2T5Q.js → chunk-QLVZGOBY.js} +131 -128
- package/dist/bundle/chunks/github-copilot.js +1 -1
- package/dist/bundle/cli.js +1 -1
- package/dist/bundle/index.js +1 -1
- package/dist/bundle/rpc-entry.js +1 -1
- package/dist/core/tools/subagent-worktree.d.ts +25 -0
- package/dist/core/tools/subagent-worktree.d.ts.map +1 -0
- package/dist/core/tools/subagent-worktree.js +267 -0
- package/dist/core/tools/subagent-worktree.js.map +1 -0
- package/dist/core/tools/subagent.d.ts +8 -0
- package/dist/core/tools/subagent.d.ts.map +1 -1
- package/dist/core/tools/subagent.js +116 -20
- package/dist/core/tools/subagent.js.map +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.18] - 2026-09-04
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Preserved requested subdirectories inside isolated child worktrees, cleaned failed cwd mappings, and retained primary child or merge evidence when cleanup also fails.
|
|
8
|
+
|
|
9
|
+
## [0.0.17] - 2026-09-03
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Added policy-set per-child worktree isolation to the built-in `subagent` tool, with full parent working-tree snapshots, fail-closed merge-back, effective isolation and merge outcomes in results, retained conflict patches, and automatic stale or signal-driven cleanup.
|
|
14
|
+
|
|
3
15
|
## [0.0.16] - 2026-09-03
|
|
4
16
|
|
|
5
17
|
### Added
|