xtrm-tools 0.5.43 → 0.5.44
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/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.5.43] - 2026-03-25
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Restore specialists project hooks in `.claude/settings.json` — incorrectly removed in 0.5.42
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## [0.5.42] - 2026-03-25
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- Remove accidentally committed specialists hooks from `.claude/settings.json` (reverted in 0.5.43 — see note)
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## [0.5.41] - 2026-03-25
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
- **`xt memory update`**: New CLI command that shells out to the `memory-processor` specialist to synthesize bd memories + project state into `.xtrm/memory.md`. Supports `--dry-run` (report only) and `--no-beads` flags.
|
|
28
|
+
- **`memory-processor` specialist** (`specialists/memory-processor.specialist.yaml`): Autonomous specialist that cross-references bd memories against current source code, writes a condensed `.xtrm/memory.md` (100–200 lines, 3 sections: Architecture & Decisions, Non-obvious Gotchas, Process & Workflow Rules), and prunes stale/redundant/contradicted memories from bd.
|
|
29
|
+
- **`.xtrm/memory.md` injection at SessionStart**: `using-xtrm-reminder.mjs` now appends `.xtrm/memory.md` to the system prompt when present — synthesized project context is available from turn 1.
|
|
30
|
+
- **Pi parity — memory.md injection**: `xtrm-loader` Pi extension now injects `.xtrm/memory.md` in `before_agent_start` (same semantics as Claude Code SessionStart injection).
|
|
31
|
+
- **Pi parity — memory gate prompt**: `beads` Pi extension memory gate now uses the same 4-criteria checklist and articulated ack format as the Claude hook.
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
- **`beads-memory-gate.mjs`**: Switched from blocking (exit 2 + stderr) to non-blocking (`additionalContext` + exit 0) — memory gate is advisory, not a hard stop.
|
|
35
|
+
- **`beads-stop-gate.mjs`**: Switched from blocking to non-blocking (`additionalContext` + exit 0) — eliminates spurious stop-gate noise between conversational turns.
|
|
36
|
+
- **Memory gate prompt** (`beads-gate-messages.mjs`): Now uses 4-criteria quality filter (hard to rediscover, non-obvious from source, will affect future decisions, still relevant in ~14 days) with mandatory articulated ack (not just `1`).
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
10
40
|
## [Unreleased]
|
|
11
41
|
|
|
12
42
|
### Added
|
package/cli/dist/index.cjs
CHANGED
|
@@ -56267,6 +56267,10 @@ function createHelpCommand() {
|
|
|
56267
56267
|
" xtrm docs cross-check [--days <n>] [--json]",
|
|
56268
56268
|
" Validate docs against recent PR activity and closed bd issues.",
|
|
56269
56269
|
"",
|
|
56270
|
+
" xtrm memory update [--dry-run] [--no-beads]",
|
|
56271
|
+
" Run memory-processor specialist to synthesize bd memories into .xtrm/memory.md.",
|
|
56272
|
+
" --dry-run: classify and report without writing memory.md or pruning.",
|
|
56273
|
+
"",
|
|
56270
56274
|
" xtrm debug [options]",
|
|
56271
56275
|
" Stream xtrm event log (tool calls, gates, session/bd lifecycle).",
|
|
56272
56276
|
" Options: --follow, --all, --session <id>, --type <domain>, --json",
|