@staff0rd/assist 0.230.1 → 0.231.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 +1 -1
- package/dist/commands/sessions/web/bundle.js +35 -35
- package/dist/index.js +6 -6
- 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.
|
|
9
|
+
version: "0.231.1",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -5739,8 +5739,8 @@ function registerRewindCommand(cmd) {
|
|
|
5739
5739
|
|
|
5740
5740
|
// src/commands/backlog/registerRunCommand.ts
|
|
5741
5741
|
function registerRunCommand(cmd) {
|
|
5742
|
-
cmd.command("run <id>").description("Run a backlog item's plan phase-by-phase with Claude").option("-w, --write", "Run Claude with auto permission mode").action(async (id, opts) => {
|
|
5743
|
-
await run(id, { allowEdits: opts.write });
|
|
5742
|
+
cmd.command("run <id>").description("Run a backlog item's plan phase-by-phase with Claude").option("-w, --write", "Run Claude with auto permission mode (default)").option("--no-write", "Run Claude without auto permission mode").action(async (id, opts) => {
|
|
5743
|
+
await run(id, { allowEdits: opts.write !== false });
|
|
5744
5744
|
});
|
|
5745
5745
|
}
|
|
5746
5746
|
|
|
@@ -6220,8 +6220,8 @@ function registerWebCommand(cmd) {
|
|
|
6220
6220
|
cmd.command("web").description("Open the backlog tab in the web dashboard").option("-p, --port <number>", "Port to listen on", "3100").action(web2);
|
|
6221
6221
|
}
|
|
6222
6222
|
function registerNextCommand(cmd) {
|
|
6223
|
-
cmd.command("next").description("Pick and run the next backlog item, or open /draft if none").option("-w, --write", "Run Claude with auto permission mode").action(
|
|
6224
|
-
(opts) => next({ allowEdits: opts.write })
|
|
6223
|
+
cmd.command("next").description("Pick and run the next backlog item, or open /draft if none").option("-w, --write", "Run Claude with auto permission mode (default)").option("--no-write", "Run Claude without auto permission mode").action(
|
|
6224
|
+
(opts) => next({ allowEdits: opts.write !== false })
|
|
6225
6225
|
);
|
|
6226
6226
|
}
|
|
6227
6227
|
function registerBacklog(program2) {
|
|
@@ -16965,7 +16965,7 @@ registerVoice(program);
|
|
|
16965
16965
|
registerSessions(program);
|
|
16966
16966
|
registerPrompts(program);
|
|
16967
16967
|
registerDeny(program);
|
|
16968
|
-
program.command("next").description("Alias for backlog next
|
|
16968
|
+
program.command("next").description("Alias for backlog next").action(() => next({ allowEdits: true }));
|
|
16969
16969
|
program.command("draft").alias("feat").description("Launch Claude in /draft mode, chain into next on /next signal").action(() => launchMode("draft"));
|
|
16970
16970
|
program.command("bug").description("Launch Claude in /bug mode, chain into next on /next signal").action(() => launchMode("bug"));
|
|
16971
16971
|
program.command("refine").argument("[id]", "Backlog item ID").description("Launch Claude in /refine mode to refine a backlog item").action((id) => refine(id));
|