@staff0rd/assist 0.152.0 → 0.154.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 +3 -1
- package/claude/settings.json +2 -0
- package/dist/commands/backlog/web/bundle.js +23 -23
- package/dist/index.js +567 -449
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,7 +89,9 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
89
89
|
- `assist backlog delete <id>` - Delete a backlog item
|
|
90
90
|
- `assist backlog show <id>` - Display full detail for a backlog item (alias: `view`)
|
|
91
91
|
- `assist backlog plan <id>` - Display the phased plan for a backlog item
|
|
92
|
-
- `assist backlog
|
|
92
|
+
- `assist backlog comment <id> <text>` - Add a comment to a backlog item
|
|
93
|
+
- `assist backlog comments <id>` - List comments and summaries for a backlog item
|
|
94
|
+
- `assist backlog phase-done <id> <phase> <summary>` - Signal that a plan phase is complete with a summary (used by orchestrator)
|
|
93
95
|
- `assist backlog run <id>` - Run a backlog item's plan phase-by-phase with Claude
|
|
94
96
|
- `assist backlog web [-p, --port <number>]` - Start a web view of the backlog (default port 3000)
|
|
95
97
|
- `assist roam auth` - Authenticate with Roam via OAuth (opens browser, saves tokens to ~/.assist.yml)
|
package/claude/settings.json
CHANGED
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
"Bash(assist backlog view:*)",
|
|
38
38
|
"Bash(assist backlog plan:*)",
|
|
39
39
|
"Bash(assist backlog phase-done:*)",
|
|
40
|
+
"Bash(assist backlog comment:*)",
|
|
41
|
+
"Bash(assist backlog comments:*)",
|
|
40
42
|
"Bash(assist backlog add:*)",
|
|
41
43
|
"Bash(assist transcript summarise:*)",
|
|
42
44
|
"Bash(assist complexity:*)",
|