xtrm-tools 0.5.26 → 0.5.27
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/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +4 -0
- package/README.md +7 -1
- package/cli/dist/index.cjs +263 -306
- package/cli/dist/index.cjs.map +1 -1
- package/cli/package.json +1 -1
- package/config/hooks.json +11 -10
- package/config/pi/extensions/beads/index.ts +103 -77
- package/config/pi/extensions/custom-footer/index.ts +40 -7
- package/config/pi/extensions/quality-gates/index.ts +28 -29
- package/config/pi/extensions/session-flow/index.ts +50 -21
- package/config/pi/extensions/xtrm-loader/index.ts +38 -24
- package/hooks/hooks.json +14 -0
- package/package.json +1 -1
- package/plugins/xtrm-tools/.claude-plugin/plugin.json +1 -1
- package/plugins/xtrm-tools/hooks/hooks.json +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- v0.5.26 docs sync and Pi parity updates: quality gates, beads/session-flow lifecycle, using-xtrm loader parity, and policy-path normalization
|
|
20
|
+
- Pi installer parity: `xt pi setup` now matches `xt pi install/reload` for extension deployment; managed extensions use sync + auto-discovery and no longer use duplicate `pi install -l` registration
|
|
17
21
|
## [0.5.20] - 2026-03-21
|
|
18
22
|
|
|
19
23
|
### Added
|
package/README.md
CHANGED
|
@@ -111,10 +111,16 @@ xtrm <command> [options]
|
|
|
111
111
|
| `worktree list` | List all active `xt/*` worktrees |
|
|
112
112
|
| `worktree clean` | Remove worktrees whose branch has been merged |
|
|
113
113
|
| `claude` | Launch Claude Code in a sandboxed worktree |
|
|
114
|
-
| `pi` | Launch Pi in a sandboxed worktree |
|
|
114
|
+
| `pi` | Launch Pi in a sandboxed worktree; includes `install/setup/status/doctor/reload` runtime management |
|
|
115
115
|
| `docs show` | Display frontmatter for README, CHANGELOG, docs/*.md |
|
|
116
116
|
| `debug` | Watch xtrm hook and bd lifecycle events in real time |
|
|
117
117
|
|
|
118
|
+
### Pi Extension Loading
|
|
119
|
+
|
|
120
|
+
- `xt pi setup`, `xt pi install`, and `xt pi reload` share the same managed extension sync behavior.
|
|
121
|
+
- Extensions from `config/pi/extensions/<name>/` are synced to `~/.pi/agent/extensions/<name>/` and loaded by Pi auto-discovery.
|
|
122
|
+
- Managed extensions are not re-registered with `pi install -l` (prevents duplicate command/flag/shortcut registration conflicts).
|
|
123
|
+
|
|
118
124
|
### Flags
|
|
119
125
|
|
|
120
126
|
| Flag | Description |
|