xtrm-tools 0.5.32 → 0.5.34
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/cli/dist/index.cjs
CHANGED
|
@@ -41043,6 +41043,28 @@ function renderPlanTable(allChanges) {
|
|
|
41043
41043
|
}
|
|
41044
41044
|
console.log("\n" + table.toString() + "\n");
|
|
41045
41045
|
}
|
|
41046
|
+
function printNextSteps() {
|
|
41047
|
+
const c = (s) => kleur_default.cyan(s);
|
|
41048
|
+
const d = (s) => kleur_default.dim(s);
|
|
41049
|
+
const b = (s) => kleur_default.bold(s);
|
|
41050
|
+
console.log(b(" Next steps\n"));
|
|
41051
|
+
console.log(d(" In your project:"));
|
|
41052
|
+
console.log(` ${c("xtrm init")} ${d("initialize beads + gitnexus for this repo")}`);
|
|
41053
|
+
console.log(` ${c("bd prime")} ${d("load session context and available work")}`);
|
|
41054
|
+
console.log(` ${c("bd ready")} ${d("find unblocked issues to work on")}`);
|
|
41055
|
+
console.log(` ${c("bd update <id> --claim")} ${d("claim an issue before editing any file")}`);
|
|
41056
|
+
console.log(` ${c("bd close <id>")} ${d("close when done \u2014 auto-commits")}`);
|
|
41057
|
+
console.log("");
|
|
41058
|
+
console.log(d(" Worktree workflow:"));
|
|
41059
|
+
console.log(` ${c("xt claude")} ${d("launch Claude Code in a sandboxed worktree")}`);
|
|
41060
|
+
console.log(` ${c("xt end --dry-run")} ${d("preview PR title, body, and linked issues")}`);
|
|
41061
|
+
console.log(` ${c("xt end")} ${d("push branch, open PR, clean up worktree")}`);
|
|
41062
|
+
console.log("");
|
|
41063
|
+
console.log(d(" Reference:"));
|
|
41064
|
+
console.log(` ${c("xtrm status")} ${d("check installed vs repo")}`);
|
|
41065
|
+
console.log(` ${c("xtrm docs show")} ${d("browse all documentation")}`);
|
|
41066
|
+
console.log("");
|
|
41067
|
+
}
|
|
41046
41068
|
async function renderSummaryCard(allChanges, totalCount, allSkipped, isDryRun) {
|
|
41047
41069
|
const boxen2 = (await Promise.resolve().then(() => (init_boxen(), boxen_exports))).default;
|
|
41048
41070
|
const hasDrift = allSkipped.length > 0;
|
|
@@ -41471,6 +41493,9 @@ function createInstallCommand() {
|
|
|
41471
41493
|
}
|
|
41472
41494
|
const allSkipped = allChanges.flatMap((c) => c.skippedDrifted);
|
|
41473
41495
|
await renderSummaryCard(allChanges, totalCount, allSkipped, dryRun);
|
|
41496
|
+
if (!dryRun && !backport) {
|
|
41497
|
+
printNextSteps();
|
|
41498
|
+
}
|
|
41474
41499
|
});
|
|
41475
41500
|
installCmd.addCommand(createInstallAllCommand());
|
|
41476
41501
|
installCmd.addCommand(createInstallBasicCommand());
|