xtrm-tools 0.7.13 → 0.7.15

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.
@@ -25,6 +25,20 @@ bd update <id> --claim # claim before any edit
25
25
 
26
26
  > Use `bv --robot-next` for the single top pick. Use `bv --robot-triage --format toon` to save context tokens. **Never run bare `bv` — it launches an interactive TUI.**
27
27
 
28
+ ---
29
+
30
+ ## Current xt Command Surfaces
31
+
32
+ Use these command surfaces when the task is operational rather than code-editing:
33
+
34
+ | Need | Command | Notes |
35
+ |------|---------|-------|
36
+ | Refresh xtrm-managed skills/hooks/reports in one repo | `xt update --apply` | Default `xt update` is dry-run; `--apply` writes. |
37
+ | Refresh many repos | `xt update --apply --root <dir>` | Discovers repos with `.xtrm/registry.json`; failures are reported per repo. |
38
+ | Cut a release | `xt release prepare --patch` then `xt release publish` | `prepare` drafts from xt reports; `publish` tags/pushes. If `prepare` fails on changelog script compatibility, check specialists `unitAI-dnmcg` state and use the manual fallback in `/releasing`. |
39
+ | Close a session report | update latest same-day `.xtrm/reports/<date>-*.md` | `session-close-report` prefers one same-day SSOT handoff; do not create duplicate reports unless asked. |
40
+
41
+
28
42
  ---
29
43
 
30
44
  ## Trigger Patterns
package/CHANGELOG.md CHANGED
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ---
9
9
 
10
+ ## [0.7.15] - 2026-05-05
11
+
12
+ ### Changed
13
+ - Updated `using-xtrm` and `docs/XTRM-GUIDE.md` to document `xt update`, `xt release prepare/publish`, and same-day SSOT session report behavior.
14
+
15
+ ## [0.7.14] - 2026-05-05
16
+
17
+ ### Added
18
+ - `xt update` command with dry-run/apply modes, `--repo`, `--root`, JSON/human output, and multi-repo xtrm-managed asset refresh.
19
+ - `xt release prepare` and `xt release publish` command surface, with canonical xt report bundling in `cli/src/core/xt-reports.ts`.
20
+ - Versioned session reports under `.xtrm/reports/`, including the completed 2026-05-04 Cat B handoff report.
21
+
22
+ ### Changed
23
+ - Cat B distribution now uses xtrm-tools as the npm distributor for filesystem-bound skills/hooks, while seven specialists-owned skills are vendored from the specialists repo at publish time.
24
+ - Skills runtime layout is flat: `.xtrm/skills/active/` is the single active view; stale per-runtime `active/claude` and `active/pi` assumptions were removed.
25
+ - `xt doctor` now reports Cat B skill/hook drift, runtime view readiness, duplicate canonical names, JSON output, and `--check-drift` CI behavior.
26
+ - `session-close-report` now updates the latest same-day SSOT report instead of creating duplicate reports for parallel orchestrators.
27
+ - Cat B migration docs now protect existing `.claude/skills` content and document the Windows stance.
28
+
29
+ ### Fixed
30
+ - Annotated tag report date resolution now uses `git log -1 --format=%cs`, preventing empty xt report bundles for annotated tags.
31
+
10
32
  ## [0.7.1] - 2026-04-02
11
33
 
12
34
  ### Added
package/README.md CHANGED
@@ -47,6 +47,7 @@ Native integration with the [specialists](https://github.com/Jaggerxtrm/speciali
47
47
  | [docs/cli-architecture.md](docs/cli-architecture.md) | CLI internals — install flow, diff/sync engine, config merge |
48
48
  | [docs/docs-commands.md](docs/docs-commands.md) | Docs command suite — `show`, `list`, `cross-check`, output modes, drift checks |
49
49
  | [docs/project-skills.md](docs/project-skills.md) | Legacy project-skill migration notes and current asset location |
50
+ | [docs/cat-b-distribution.md](docs/cat-b-distribution.md) | Cat B distribution ownership, migration policy, Windows stance |
50
51
  | [docs/testing.md](docs/testing.md) | Live testing checklist — integration, gates, worktree flows |
51
52
  | [CHANGELOG.md](CHANGELOG.md) | Full version history |
52
53
 
@@ -205,6 +206,9 @@ xtrm <command> [options]
205
206
  | `attach [slug]` | Re-attach to an existing worktree and resume the Claude or Pi session |
206
207
  | `end` | Close worktree session: rebase, push, PR, cleanup |
207
208
  | `memory update` | Run `memory-processor` to synthesize bd memories + repo state into `.xtrm/memory.md` |
209
+ | `update` | Refresh xtrm-managed files for one repo or many (`--apply`, `--repo <path>`, `--root <dir>`, `--json`) |
210
+ | `release prepare` | Prepare a release from xt reports and changelog drafting (`--major`, `--minor`, `--patch`, `--from`, `--to`) |
211
+ | `release publish` | Publish a prepared release with annotated tag/push and optional GitHub release |
208
212
  | `merge` | Drain queued `xt/*` PRs via `xt-merge`: FIFO CI gate → rebase merge → rebase cascade |
209
213
  | `worktree list` | List active `xt/*` worktrees with runtime, last activity, and resume hint |
210
214
  | `worktree clean` | Remove merged worktrees |
@@ -216,7 +220,7 @@ xtrm <command> [options]
216
220
 
217
221
  **Flags:** `--yes / -y` (non-interactive), `--dry-run` (preview), `--prune` (force-replace hooks)
218
222
 
219
- For detailed docs command usage, see [docs/docs-commands.md](docs/docs-commands.md) or run `xtrm docs --help` / `xtrm docs cross-check --help`.
223
+ For detailed docs command usage, see [docs/docs-commands.md](docs/docs-commands.md) or run `xtrm docs --help` / `xtrm docs cross-check --help`. For release flow details, run `xt release --help`; `xt release prepare` currently depends on the specialists changelog script compatibility tracked by `unitAI-dnmcg`.
220
224
 
221
225
  See [docs/cli-architecture.md](docs/cli-architecture.md) for internals.
222
226