@staff0rd/assist 0.216.1 → 0.217.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 -2
- package/claude/commands/next.md +1 -1
- package/dist/index.js +539 -498
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
53
53
|
- `/review-comments` - Process PR review comments one by one
|
|
54
54
|
- `/jira` - View a Jira work item
|
|
55
55
|
- `/journal` - Append a journal entry summarising recent work, decisions, and notable observations
|
|
56
|
-
- `/next` - Signal completion and chain into the next backlog item
|
|
56
|
+
- `/next [id]` - Signal completion and chain into the next backlog item; pass an `id` to run a specific item directly (falls back to the picker if the id is missing, done, won't-do, or blocked)
|
|
57
57
|
- `/standup` - Summarise recent journal entries as a standup update
|
|
58
58
|
- `/sync` - Sync commands and settings to ~/.claude
|
|
59
59
|
- `/test-cover` - Incrementally increase test coverage by identifying and testing uncovered files
|
|
@@ -103,6 +103,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
103
103
|
- `assist backlog remove-phase <id> <phase>` - Remove a plan phase from a backlog item
|
|
104
104
|
- `assist backlog next` - Pick and run the next backlog item, or open `/draft` if none remain
|
|
105
105
|
- `assist backlog start <id>` - Set a backlog item to in-progress
|
|
106
|
+
- `assist backlog stop` - Revert all in-progress backlog items to todo and reset their phase to 1
|
|
106
107
|
- `assist backlog done <id>` - Set a backlog item to done
|
|
107
108
|
- `assist backlog wontdo <id> [reason]` - Set a backlog item to won't do
|
|
108
109
|
- `assist backlog delete <id>` - Delete a backlog item
|
|
@@ -218,5 +219,5 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
218
219
|
- `assist draft` (alias: `feat`) - Launch Claude in `/draft` mode, chain into next on `/next` signal
|
|
219
220
|
- `assist bug` - Launch Claude in `/bug` mode, chain into next on `/next` signal
|
|
220
221
|
- `assist refine [id]` - Launch Claude in `/refine` mode to refine a backlog item; prompts for selection when no id given
|
|
221
|
-
- `assist signal next` - Write a next signal to chain into `assist next`
|
|
222
|
+
- `assist signal next [id]` - Write a next signal to chain into `assist next`; when `id` is supplied, the parent launcher runs that backlog item directly
|
|
222
223
|
|
package/claude/commands/next.md
CHANGED