@staff0rd/assist 0.236.0 → 0.237.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/allowed.cli-reads +2 -0
- package/dist/allowed.cli-reads +2 -0
- package/dist/index.js +13 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -107,7 +107,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
107
107
|
|
|
108
108
|
- `assist backlog [--dir <path>]` - Open the backlog tab in the web dashboard (same as `backlog web`). `--dir` overrides the directory used to resolve the current repository's git origin
|
|
109
109
|
- `assist backlog init` - Create an empty backlog
|
|
110
|
-
- `assist backlog list [--status <type>] [-a, --all] [--all-repos] [-v]` - List backlog items with status icons (alias: `ls`). Defaults to the current repository's todo/in-progress items; `--all` includes done/wontdo, `--all-repos` lists items across all repositories
|
|
110
|
+
- `assist backlog list [--status <type>] [-a, --all] [--all-repos] [-v]` - List backlog items with status icons (alias: `ls`). Defaults to the current repository's todo/in-progress items; `--all` includes done/wontdo, `--all-repos` lists items across all repositories. Also available as the top-level shortcut `assist list` / `assist ls` with the same flags
|
|
111
111
|
- `assist backlog add` - Add a new backlog item interactively (prompts for type: story/bug)
|
|
112
112
|
- `assist backlog add --name <n> --type <t> --desc <d> --ac <criterion...>` - Add a backlog item from CLI options (used by `/draft`)
|
|
113
113
|
- `assist backlog add-phase <id> <name> --task <t...> [--manual-check <c...>] [--position <pos>]` - Add a phase (appends by default; `--position` inserts at a 1-indexed position)
|
package/allowed.cli-reads
CHANGED
package/dist/allowed.cli-reads
CHANGED
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.237.0",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -9686,6 +9686,17 @@ function registerLaunch(program2) {
|
|
|
9686
9686
|
program2.command("refine").argument("[id]", "Backlog item ID").description("Launch Claude in /refine mode to refine a backlog item").action((id) => refine(id));
|
|
9687
9687
|
}
|
|
9688
9688
|
|
|
9689
|
+
// src/commands/registerList.ts
|
|
9690
|
+
function registerList(program2) {
|
|
9691
|
+
program2.command("list").alias("ls").description("Alias for backlog list").option(
|
|
9692
|
+
"--status <type>",
|
|
9693
|
+
"Filter by status (todo, in-progress, done, wontdo)"
|
|
9694
|
+
).option("-a, --all", "Include done/wontdo items").option("--all-repos", "List items across all repositories").option("-v, --verbose", "Show all item details").option("--dir <path>", "Override directory for backlog file discovery").action((options2) => {
|
|
9695
|
+
setBacklogDir(options2.dir);
|
|
9696
|
+
return list2(options2);
|
|
9697
|
+
});
|
|
9698
|
+
}
|
|
9699
|
+
|
|
9689
9700
|
// src/commands/mermaid/index.ts
|
|
9690
9701
|
import { mkdirSync as mkdirSync8, readdirSync as readdirSync5 } from "fs";
|
|
9691
9702
|
import { resolve as resolve10 } from "path";
|
|
@@ -17093,6 +17104,7 @@ registerMermaid(program);
|
|
|
17093
17104
|
registerPrs(program);
|
|
17094
17105
|
registerRoam(program);
|
|
17095
17106
|
registerBacklog(program);
|
|
17107
|
+
registerList(program);
|
|
17096
17108
|
registerVerify(program);
|
|
17097
17109
|
registerRefactor(program);
|
|
17098
17110
|
registerReview(program);
|