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.
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +5 -5
- package/cli/dist/index.cjs +9728 -9967
- package/cli/dist/index.cjs.map +1 -1
- package/cli/package.json +1 -1
- package/config/instructions/agents-top.md +2 -4
- package/config/instructions/claude-top.md +2 -4
- package/config/pi/extensions/beads/index.ts +18 -81
- package/config/pi/extensions/xtrm-ui/format.ts +93 -0
- package/config/pi/extensions/xtrm-ui/index.ts +725 -12
- package/hooks/beads-claim-sync.mjs +15 -96
- package/hooks/beads-gate-messages.mjs +2 -4
- package/hooks/beads-gate-utils.mjs +0 -18
- package/hooks/statusline.mjs +5 -3
- package/hooks/tsconfig-cache.json +2 -12
- package/package.json +1 -1
- package/plugins/xtrm-tools/.claude-plugin/plugin.json +1 -1
- package/plugins/xtrm-tools/hooks/beads-claim-sync.mjs +15 -96
- package/plugins/xtrm-tools/hooks/beads-gate-messages.mjs +2 -4
- package/plugins/xtrm-tools/hooks/beads-gate-utils.mjs +0 -18
- package/plugins/xtrm-tools/hooks/statusline.mjs +5 -3
- package/plugins/xtrm-tools/hooks/tsconfig-cache.json +2 -12
- package/plugins/xtrm-tools/skills/planning/SKILL.md +75 -20
- package/plugins/xtrm-tools/skills/using-xtrm/SKILL.md +1 -1
- package/plugins/xtrm-tools/skills/xt-debugging/SKILL.md +149 -0
- package/plugins/xtrm-tools/skills/xt-end/SKILL.md +28 -0
- package/skills/planning/SKILL.md +75 -20
- package/skills/using-xtrm/SKILL.md +1 -1
- package/skills/xt-debugging/SKILL.md +149 -0
- package/skills/xt-end/SKILL.md +28 -0
- package/plugins/xtrm-tools/skills/gitnexus-debugging/SKILL.md +0 -85
- package/skills/gitnexus-debugging/SKILL.md +0 -85
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
|
|
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
|
-
#
|
|
61
|
-
xtrm
|
|
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
|
|
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
|
|
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
|
|