xtrm-tools 0.5.45 → 0.5.47

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.
Files changed (36) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/CHANGELOG.md +14 -0
  3. package/README.md +24 -5
  4. package/cli/dist/index.cjs +9812 -9983
  5. package/cli/dist/index.cjs.map +1 -1
  6. package/cli/package.json +1 -1
  7. package/config/instructions/agents-top.md +2 -4
  8. package/config/instructions/claude-top.md +2 -4
  9. package/config/pi/extensions/beads/index.ts +18 -78
  10. package/config/pi/extensions/custom-footer/index.ts +2 -3
  11. package/config/pi/extensions/xtrm-ui/format.ts +93 -0
  12. package/config/pi/extensions/xtrm-ui/index.ts +1044 -0
  13. package/config/pi/extensions/xtrm-ui/package.json +10 -0
  14. package/config/pi/extensions/xtrm-ui/themes/pidex-dark.json +85 -0
  15. package/config/pi/extensions/xtrm-ui/themes/pidex-light.json +85 -0
  16. package/config/pi/install-schema.json +0 -1
  17. package/hooks/beads-claim-sync.mjs +15 -96
  18. package/hooks/beads-gate-messages.mjs +2 -4
  19. package/hooks/beads-gate-utils.mjs +0 -18
  20. package/hooks/statusline.mjs +5 -3
  21. package/package.json +1 -1
  22. package/plugins/xtrm-tools/.claude-plugin/plugin.json +1 -1
  23. package/plugins/xtrm-tools/hooks/beads-claim-sync.mjs +15 -96
  24. package/plugins/xtrm-tools/hooks/beads-gate-messages.mjs +2 -4
  25. package/plugins/xtrm-tools/hooks/beads-gate-utils.mjs +0 -18
  26. package/plugins/xtrm-tools/hooks/statusline.mjs +5 -3
  27. package/plugins/xtrm-tools/skills/planning/SKILL.md +75 -20
  28. package/plugins/xtrm-tools/skills/using-xtrm/SKILL.md +1 -1
  29. package/plugins/xtrm-tools/skills/xt-debugging/SKILL.md +149 -0
  30. package/plugins/xtrm-tools/skills/xt-end/SKILL.md +28 -0
  31. package/skills/planning/SKILL.md +75 -20
  32. package/skills/using-xtrm/SKILL.md +1 -1
  33. package/skills/xt-debugging/SKILL.md +149 -0
  34. package/skills/xt-end/SKILL.md +28 -0
  35. package/plugins/xtrm-tools/skills/gitnexus-debugging/SKILL.md +0 -85
  36. package/skills/gitnexus-debugging/SKILL.md +0 -85
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xtrm-tools",
3
- "version": "0.5.45",
3
+ "version": "0.5.47",
4
4
  "description": "xtrm-tools: dual-runtime workflow enforcement (Claude Code + Pi) — hooks, extensions, skills, and MCP servers",
5
5
  "author": {
6
6
  "name": "jaggers"
package/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ---
9
9
 
10
+ ## [0.5.45] - 2026-03-25
11
+
12
+ ### Changed
13
+ - **`xt memory update`**: Replaced raw specialist stream with ora spinner + final summary output. Shows animated spinner while specialist runs; on finish prints `✓ .xtrm/memory.md written.` (or `✗`) followed by the last 10 meaningful lines dimmed.
14
+
15
+ ---
16
+
17
+ ## [0.5.44] - 2026-03-25
18
+
19
+ ### Added
20
+ - **`xt help`**: `xtrm memory update` entry added to PRIMARY COMMANDS section.
21
+
22
+ ---
23
+
10
24
  ## [0.5.43] - 2026-03-25
11
25
 
12
26
  ### Fixed
package/README.md CHANGED
@@ -20,7 +20,7 @@ The `planning` skill generates a structured issue board from any spec or idea
20
20
 
21
21
  ### Statusline
22
22
 
23
- A live statusline renders in every Claude Code session: active claim, open issue count, model, context window health (color-coded truecolor gradient), and token usage — all in a single line below the prompt. No configuration required after `xtrm install`.
23
+ A live statusline renders in every Claude Code session: active claim, open issue count, model, context window health (color-coded truecolor gradient), and token usage — all in a single line below the prompt. No configuration required after `xtrm init`.
24
24
 
25
25
  ### Specialists *(upcoming)*
26
26
 
@@ -57,8 +57,8 @@ Native integration with the [specialists](https://github.com/Jaggerxtrm/speciali
57
57
  # Install globally (one-time)
58
58
  npm install -g github:Jaggerxtrm/xtrm-tools@latest
59
59
 
60
- # Install the plugin
61
- xtrm install
60
+ # Set up xtrm in your project
61
+ xtrm init
62
62
 
63
63
  # Verify
64
64
  claude plugin list
@@ -67,9 +67,26 @@ claude plugin list
67
67
 
68
68
  **One-line run:**
69
69
  ```bash
70
- npx -y github:Jaggerxtrm/xtrm-tools install
70
+ npx -y github:Jaggerxtrm/xtrm-tools init
71
71
  ```
72
72
 
73
+ **Typical workflow after install:**
74
+ ```bash
75
+ # Start a sandboxed session in a worktree
76
+ xt claude my-feature
77
+
78
+ # Publish that worktree: rebase, push, open PR, optional cleanup
79
+ xt end
80
+
81
+ # Refresh project memory from bd memories + current repo state
82
+ xt memory update
83
+
84
+ # If multiple xt/* PRs are open, drain the merge queue oldest-first
85
+ xt merge
86
+ ```
87
+
88
+ `xt end` handles one worktree session at a time. `xt merge` is the follow-up queue operator: it inspects open `xt/*` PRs, processes them FIFO, waits for green CI on the oldest PR, merges it with `--rebase`, then rebases the remaining queued xt branches and repeats. `xt memory update` shells out to the `memory-processor` specialist, which condenses bd memories and current project state into `.xtrm/memory.md`; use `--dry-run` to inspect without writing.
89
+
73
90
  ---
74
91
 
75
92
  ## What's Included
@@ -176,6 +193,8 @@ xtrm <command> [options]
176
193
  | `pi [name]` | Launch Pi in a sandboxed `xt/<name>` worktree |
177
194
  | `attach [slug]` | Re-attach to an existing worktree and resume the Claude or Pi session |
178
195
  | `end` | Close worktree session: rebase, push, PR, cleanup |
196
+ | `memory update` | Run `memory-processor` to synthesize bd memories + repo state into `.xtrm/memory.md` |
197
+ | `merge` | Drain queued `xt/*` PRs via `xt-merge`: FIFO CI gate → rebase merge → rebase cascade |
179
198
  | `worktree list` | List active `xt/*` worktrees with runtime, last activity, and resume hint |
180
199
  | `worktree clean` | Remove merged worktrees |
181
200
  | `docs` | Documentation inspection and drift-check suite (`xtrm docs --help`) |
@@ -200,7 +219,7 @@ See [docs/cli-architecture.md](docs/cli-architecture.md) for internals.
200
219
  | `github-grep` | Code search |
201
220
  | `deepwiki` | Repository documentation |
202
221
 
203
- Official Claude plugins installed by `xtrm install`: `serena`, `context7`, `github`, `ralph-loop`.
222
+ Official Claude plugins installed by `xtrm init`: `serena`, `context7`, `github`, `ralph-loop`.
204
223
 
205
224
  See [docs/mcp-servers.md](docs/mcp-servers.md) for configuration details.
206
225