@staff0rd/assist 0.230.1 → 0.231.0
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/index.js +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -235,7 +235,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
235
235
|
- `assist sessions` - Start the web dashboard (same as `sessions web`)
|
|
236
236
|
- `assist sessions web [-p, --port <number>]` - Start the web dashboard with Sessions and Backlog tabs, xterm.js terminals (default port 3100)
|
|
237
237
|
- `assist sessions summarise [-f, --force] [-n, --limit <count>]` - Generate one-line summaries for unsummarised Claude sessions (force re-generates all; limit caps how many to process)
|
|
238
|
-
- `assist next` - Alias for `backlog next
|
|
238
|
+
- `assist next` - Alias for `backlog next`
|
|
239
239
|
- `assist draft` (alias: `feat`) - Launch Claude in `/draft` mode, chain into next on `/next` signal
|
|
240
240
|
- `assist bug` - Launch Claude in `/bug` mode, chain into next on `/next` signal
|
|
241
241
|
- `assist refine [id]` - Launch Claude in `/refine` mode to refine a backlog item; prompts for selection when no id given
|
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.0",
|
|
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));
|