@staff0rd/assist 0.155.1 → 0.157.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 +4 -0
- package/claude/commands/next.md +12 -0
- package/claude/settings.json +3 -0
- package/dist/index.js +597 -553
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
44
44
|
- `/review-comments` - Process PR review comments one by one
|
|
45
45
|
- `/jira` - View a Jira work item
|
|
46
46
|
- `/journal` - Append a journal entry summarising recent work, decisions, and notable observations
|
|
47
|
+
- `/next` - Signal completion and chain into the next backlog item
|
|
47
48
|
- `/standup` - Summarise recent journal entries as a standup update
|
|
48
49
|
- `/sync` - Sync commands and settings to ~/.claude
|
|
49
50
|
- `/test-cover` - Incrementally increase test coverage by identifying and testing uncovered files
|
|
@@ -174,4 +175,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
174
175
|
- `assist voice devices` - List available audio input devices
|
|
175
176
|
- `assist voice logs [-n <count>]` - Show recent voice daemon log entries
|
|
176
177
|
- `assist next` - Alias for `backlog next -w`
|
|
178
|
+
- `assist draft` - Launch Claude in `/draft` mode, chain into next on `/next` signal
|
|
179
|
+
- `assist bug` - Launch Claude in `/bug` mode, chain into next on `/next` signal
|
|
180
|
+
- `assist signal next` - Write a next signal to chain into `assist next`
|
|
177
181
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Signal completion and chain into the next backlog item
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
You are done with the current session. Write the signal file to terminate this session and chain into the next backlog item.
|
|
6
|
+
|
|
7
|
+
Run:
|
|
8
|
+
```
|
|
9
|
+
assist signal next
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Then tell the user the session is ending and `assist next` will start automatically.
|
package/claude/settings.json
CHANGED
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"Bash(assist backlog comment:*)",
|
|
41
41
|
"Bash(assist backlog comments:*)",
|
|
42
42
|
"Bash(assist backlog add:*)",
|
|
43
|
+
"Bash(assist signal next:*)",
|
|
43
44
|
"Bash(assist transcript summarise:*)",
|
|
44
45
|
"Bash(assist complexity:*)",
|
|
45
46
|
"Bash(assist transcript format:*)",
|
|
@@ -94,6 +95,8 @@
|
|
|
94
95
|
"SlashCommand(/screenshot)",
|
|
95
96
|
"Skill(draft)",
|
|
96
97
|
"SlashCommand(/draft)",
|
|
98
|
+
"Skill(next-backlog-item)",
|
|
99
|
+
"SlashCommand(/next)",
|
|
97
100
|
"Skill(test-cover)",
|
|
98
101
|
"SlashCommand(/test-cover)",
|
|
99
102
|
"Skill(test-review)",
|