scrumrun 2.6.0 → 2.6.1

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/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ScrumRun gives an agent a small command surface and a precise project memory: what should be done, how each attempt happened, which decisions constrain the code, and why the architecture exists in its current form.
6
6
 
7
- **Package:** `2.6.0` · **Method target:** `2.0.0` · **Runtime:** Node.js `>=22.13.0` · **License:** MIT
7
+ **Package:** `2.6.1` · **Method target:** `2.0.0` · **Runtime:** Node.js `>=22.13.0` · **License:** MIT
8
8
 
9
9
  **New here?** Read the [Quickstart](docs/QUICKSTART.md) — first Run in under 10 minutes, no `SPEC.md` reading required. Full docs map in [`docs/INDEX.md`](docs/INDEX.md).
10
10
 
package/bin/scrumrun.js CHANGED
@@ -52,7 +52,7 @@ Usage:
52
52
  scrumrun sc
53
53
  scrumrun sc <noun> <subject> <action> [args]
54
54
  scrumrun install [all|codex|opencode|claude] [--force]
55
- scrumrun update [all|codex|opencode|claude] [--migrate]
55
+ scrumrun update [all|codex|opencode|claude] [--no-migrate]
56
56
  scrumrun init [--local|--shared] [--lean] [--no-agent-hint] [--force]
57
57
  scrumrun status
58
58
  scrumrun core [--path|--prompt]
@@ -299,7 +299,7 @@ function migrationPreflightOnUpdate({ apply = false } = {}) {
299
299
  return { status: "blocked" };
300
300
  }
301
301
  if (!apply) {
302
- console.log("\nThe project remains unchanged. Apply the verified plan with: npx scrumrun@latest update --migrate");
302
+ console.log("\nThe project remains unchanged. Re-run update to apply the verified plan, or keep opt-out with: npx scrumrun@latest update --no-migrate");
303
303
  return { status: "ready" };
304
304
  }
305
305
  const result = applyRunLedgerMigration(process.cwd());
@@ -325,7 +325,7 @@ function migrationPreflightOnUpdate({ apply = false } = {}) {
325
325
  return { status: "blocked" };
326
326
  }
327
327
  if (!apply) {
328
- console.log("\nThe project remains unchanged. Apply the verified plan with: npx scrumrun@latest update --migrate");
328
+ console.log("\nThe project remains unchanged. Re-run update to apply the verified plan, or keep opt-out with: npx scrumrun@latest update --no-migrate");
329
329
  return { status: "ready" };
330
330
  }
331
331
  const result = applyMigration(process.cwd(), { plan: preview.plan });
@@ -1570,7 +1570,7 @@ function executeRootRoute(route) {
1570
1570
  }
1571
1571
  if (noun === "config" && subject === "update") {
1572
1572
  const target = ["all", "codex", "opencode", "claude"].includes(routeArgs[0]) ? routeArgs[0] : "all";
1573
- return updateInstallation(target, { migrate: routeArgs.includes("--migrate") });
1573
+ return updateInstallation(target, { migrate: !routeArgs.includes("--no-migrate") });
1574
1574
  }
1575
1575
  if (noun === "config" && subject === "init") {
1576
1576
  const localMode = routeArgs.includes("--local");
@@ -2495,7 +2495,7 @@ if (!command || command === "--help" || command === "-h") {
2495
2495
  console.log(`ScrumRun ${version}`);
2496
2496
  } else if (command === "install" || command === "update") {
2497
2497
  const target = ["all", "codex", "opencode", "claude"].includes(args[1]) ? args[1] : "all";
2498
- if (command === "update") updateInstallation(target, { migrate: args.includes("--migrate") });
2498
+ if (command === "update") updateInstallation(target, { migrate: !args.includes("--no-migrate") });
2499
2499
  else install(target, true, { compatibility: false });
2500
2500
  } else if (command === "sc") {
2501
2501
  runRoot(args.slice(1));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scrumrun",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "Evidence-driven Agile runtime and semantic project memory for AI coding agents.",
5
5
  "bin": {
6
6
  "scrumrun": "bin/scrumrun.js",