@staff0rd/assist 0.149.0 → 0.149.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.
Files changed (2) hide show
  1. package/dist/index.js +5 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import { Command } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@staff0rd/assist",
9
- version: "0.149.0",
9
+ version: "0.149.1",
10
10
  type: "module",
11
11
  main: "dist/index.js",
12
12
  bin: {
@@ -3190,11 +3190,11 @@ function registerPlanCommands(cmd) {
3190
3190
  cmd.command("phase-done <id> <phase>").description("Signal that a plan phase is complete").action(phaseDone);
3191
3191
  }
3192
3192
  function registerRunCommands(cmd) {
3193
- cmd.command("next").description("Pick and run the next backlog item, or open /draft if none").option("--allow-edits", "Run Claude with acceptEdits permission mode").action(
3194
- (opts) => next({ allowEdits: opts.allowEdits })
3193
+ cmd.command("next").description("Pick and run the next backlog item, or open /draft if none").option("-w, --write", "Run Claude with acceptEdits permission mode").action(
3194
+ (opts) => next({ allowEdits: opts.write })
3195
3195
  );
3196
- cmd.command("run <id>").description("Run a backlog item's plan phase-by-phase with Claude").option("--allow-edits", "Run Claude with acceptEdits permission mode").action(
3197
- (id, opts) => run2(id, { allowEdits: opts.allowEdits })
3196
+ cmd.command("run <id>").description("Run a backlog item's plan phase-by-phase with Claude").option("-w, --write", "Run Claude with acceptEdits permission mode").action(
3197
+ (id, opts) => run2(id, { allowEdits: opts.write })
3198
3198
  );
3199
3199
  }
3200
3200
  function registerBacklog(program2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staff0rd/assist",
3
- "version": "0.149.0",
3
+ "version": "0.149.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {