xtrm-tools 0.7.18 → 0.7.19
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/.xtrm/registry.json +325 -325
- package/CHANGELOG.md +5 -0
- package/cli/dist/index.cjs +5 -0
- package/cli/dist/index.cjs.map +1 -1
- package/cli/package.json +1 -1
- package/package.json +1 -1
- package/packages/pi-extensions/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [0.7.19] - 2026-05-14
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- `xt init`'s Project Bootstrap phase no longer leaves Skills Runtime in an `incomplete: active` state on a fresh repo. Bare `gitnexus analyze` (invoked by xt init) unconditionally writes 6 skills to `<project>/.claude/skills/gitnexus/<name>/SKILL.md`, and because xtrm makes `.claude/skills` a symlink to `.xtrm/skills/active/`, those writes landed as a non-symlink directory at `.xtrm/skills/active/gitnexus/` — breaking the flat-active-view invariant and tripping `hasOnlyValidSymlinkEntries` → `activeReady=false`. After `gitnexus analyze` returns, `runGitNexusInitForProject` now removes that polluting subdir (idempotent, try/catch wrapped). No functionality loss — the same gitnexus skills are already vendored as flat `gitnexus-cli`, `gitnexus-debugging`, etc. under `.xtrm/skills/default/` and symlinked into `active/`. Fresh-repo smoke now reports `✓ All phases verified successfully.` (5/5 green). (xtrm-wbfd / PR #252)
|
|
16
|
+
|
|
12
17
|
## [0.7.18] - 2026-05-14
|
|
13
18
|
|
|
14
19
|
### Added
|
package/cli/dist/index.cjs
CHANGED
|
@@ -59186,6 +59186,11 @@ ${status.stderr || ""}`.toLowerCase();
|
|
|
59186
59186
|
timeout: 12e4
|
|
59187
59187
|
});
|
|
59188
59188
|
if (analyze.status === 0) {
|
|
59189
|
+
const gitnexusPollutionPath = import_path15.default.join(projectRoot, ".xtrm", "skills", "active", "gitnexus");
|
|
59190
|
+
try {
|
|
59191
|
+
import_fs_extra21.default.removeSync(gitnexusPollutionPath);
|
|
59192
|
+
} catch {
|
|
59193
|
+
}
|
|
59189
59194
|
console.log(kleur_default.green(" \u2713 GitNexus index updated"));
|
|
59190
59195
|
return;
|
|
59191
59196
|
}
|