xtrm-tools 0.5.35 → 0.5.36
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/cli/dist/index.cjs +36 -1
- package/cli/dist/index.cjs.map +1 -1
- package/cli/package.json +1 -1
- package/config/pi/extensions/pi-serena-compact/index.ts +121 -0
- package/config/pi/extensions/pi-serena-compact/package.json +16 -0
- package/package.json +1 -1
- package/plugins/xtrm-tools/.claude-plugin/plugin.json +1 -1
package/cli/dist/index.cjs
CHANGED
|
@@ -41050,7 +41050,7 @@ function printNextSteps() {
|
|
|
41050
41050
|
console.log(d(" In your project:"));
|
|
41051
41051
|
console.log(` xtrm init ${d("initialize beads + gitnexus for this repo")}`);
|
|
41052
41052
|
console.log(` bd prime ${d("load session context and available work")}`);
|
|
41053
|
-
console.log(`
|
|
41053
|
+
console.log(` bv --robot-triage ${d("graph-aware triage \u2014 find highest-impact work")}`);
|
|
41054
41054
|
console.log(` bd update <id> --claim ${d("claim an issue before editing any file")}`);
|
|
41055
41055
|
console.log(` bd close <id> ${d("close when done \u2014 auto-commits")}`);
|
|
41056
41056
|
console.log("");
|
|
@@ -41387,6 +41387,41 @@ function createInstallCommand() {
|
|
|
41387
41387
|
}
|
|
41388
41388
|
}
|
|
41389
41389
|
}
|
|
41390
|
+
if (!backport) {
|
|
41391
|
+
console.log(t.bold("\n \u2699 bv (beads graph triage)"));
|
|
41392
|
+
const bvOk = (() => {
|
|
41393
|
+
try {
|
|
41394
|
+
(0, import_child_process2.execSync)("bv --version", { stdio: "ignore" });
|
|
41395
|
+
return true;
|
|
41396
|
+
} catch {
|
|
41397
|
+
return false;
|
|
41398
|
+
}
|
|
41399
|
+
})();
|
|
41400
|
+
if (bvOk) {
|
|
41401
|
+
console.log(t.success(" \u2713 bv already installed\n"));
|
|
41402
|
+
} else {
|
|
41403
|
+
let doInstall = effectiveYes;
|
|
41404
|
+
if (!effectiveYes) {
|
|
41405
|
+
const { install } = await (0, import_prompts.default)({
|
|
41406
|
+
type: "confirm",
|
|
41407
|
+
name: "install",
|
|
41408
|
+
message: "Install bv (beads_viewer)? \u2014 graph-aware triage for bd issues",
|
|
41409
|
+
initial: true
|
|
41410
|
+
});
|
|
41411
|
+
doInstall = install;
|
|
41412
|
+
}
|
|
41413
|
+
if (doInstall) {
|
|
41414
|
+
console.log(t.muted("\n Installing bv..."));
|
|
41415
|
+
(0, import_child_process3.spawnSync)("bash", [
|
|
41416
|
+
"-c",
|
|
41417
|
+
"curl -fsSL https://raw.githubusercontent.com/Jaggerxtrm/beads_viewer/main/scripts/install-bv.sh | bash"
|
|
41418
|
+
], { stdio: "inherit" });
|
|
41419
|
+
console.log(t.success(" \u2713 bv installed\n"));
|
|
41420
|
+
} else {
|
|
41421
|
+
console.log(t.muted(" \u2139 Skipped.\n"));
|
|
41422
|
+
}
|
|
41423
|
+
}
|
|
41424
|
+
}
|
|
41390
41425
|
if (!backport) {
|
|
41391
41426
|
console.log(t.bold("\n \u2699 deepwiki (AI-powered repo documentation)"));
|
|
41392
41427
|
const deepwikiOk = isDeepwikiInstalled();
|