xtrm-tools 0.5.18 → 0.5.20
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 +17 -0
- package/cli/dist/index.cjs +670 -541
- package/cli/dist/index.cjs.map +1 -1
- package/cli/package.json +1 -1
- package/config/hooks.json +5 -0
- package/hooks/beads-claim-sync.mjs +10 -0
- package/hooks/beads-edit-gate.mjs +14 -1
- package/hooks/beads-gate-core.mjs +21 -0
- package/hooks/beads-gate-utils.mjs +9 -0
- package/hooks/hooks.json +27 -22
- package/hooks/statusline.mjs +90 -61
- package/hooks/worktree-boundary.mjs +33 -0
- package/package.json +1 -1
- package/skills/using-TDD/SKILL.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
+
## [0.5.20] - 2026-03-21
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- **`xtrm docs show`**: New command to display frontmatter for README, CHANGELOG, and docs/*.md files with `--raw` and `--json` options
|
|
21
|
+
- **`worktree-boundary.mjs`**: PreToolUse hook that blocks Write/Edit outside `.xtrm/worktrees/<name>` when in worktree session
|
|
22
|
+
- **`worktree-boundary.json`**: Policy for worktree boundary enforcement
|
|
23
|
+
- **`statusline.mjs`**: Two-line status injection showing XTRM, model, branch, and claim state
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- **`beads-claim-sync.mjs`**: Now stages untracked files before auto-commit on `bd close`
|
|
27
|
+
- **Statusline format**: XTRM bold prepended, no hardcoded colors (theme-adaptive), issue ID shown before title in claim line
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
- **plugin.json sync**: `sync-cli-version.mjs` now syncs both root and plugin cache plugin.json files
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
17
34
|
## [0.5.0] - 2026-03-20
|
|
18
35
|
|
|
19
36
|
### Added
|