xtrm-tools 0.5.46 → 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 (32) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/README.md +5 -5
  3. package/cli/dist/index.cjs +9728 -9967
  4. package/cli/dist/index.cjs.map +1 -1
  5. package/cli/package.json +1 -1
  6. package/config/instructions/agents-top.md +2 -4
  7. package/config/instructions/claude-top.md +2 -4
  8. package/config/pi/extensions/beads/index.ts +18 -81
  9. package/config/pi/extensions/xtrm-ui/format.ts +93 -0
  10. package/config/pi/extensions/xtrm-ui/index.ts +725 -12
  11. package/hooks/beads-claim-sync.mjs +15 -96
  12. package/hooks/beads-gate-messages.mjs +2 -4
  13. package/hooks/beads-gate-utils.mjs +0 -18
  14. package/hooks/statusline.mjs +5 -3
  15. package/hooks/tsconfig-cache.json +2 -12
  16. package/package.json +1 -1
  17. package/plugins/xtrm-tools/.claude-plugin/plugin.json +1 -1
  18. package/plugins/xtrm-tools/hooks/beads-claim-sync.mjs +15 -96
  19. package/plugins/xtrm-tools/hooks/beads-gate-messages.mjs +2 -4
  20. package/plugins/xtrm-tools/hooks/beads-gate-utils.mjs +0 -18
  21. package/plugins/xtrm-tools/hooks/statusline.mjs +5 -3
  22. package/plugins/xtrm-tools/hooks/tsconfig-cache.json +2 -12
  23. package/plugins/xtrm-tools/skills/planning/SKILL.md +75 -20
  24. package/plugins/xtrm-tools/skills/using-xtrm/SKILL.md +1 -1
  25. package/plugins/xtrm-tools/skills/xt-debugging/SKILL.md +149 -0
  26. package/plugins/xtrm-tools/skills/xt-end/SKILL.md +28 -0
  27. package/skills/planning/SKILL.md +75 -20
  28. package/skills/using-xtrm/SKILL.md +1 -1
  29. package/skills/xt-debugging/SKILL.md +149 -0
  30. package/skills/xt-end/SKILL.md +28 -0
  31. package/plugins/xtrm-tools/skills/gitnexus-debugging/SKILL.md +0 -85
  32. package/skills/gitnexus-debugging/SKILL.md +0 -85
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xtrm-tools",
3
- "version": "0.5.46",
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/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,7 +67,7 @@ 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
73
  **Typical workflow after install:**
@@ -219,7 +219,7 @@ See [docs/cli-architecture.md](docs/cli-architecture.md) for internals.
219
219
  | `github-grep` | Code search |
220
220
  | `deepwiki` | Repository documentation |
221
221
 
222
- 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`.
223
223
 
224
224
  See [docs/mcp-servers.md](docs/mcp-servers.md) for configuration details.
225
225