@staff0rd/assist 0.149.5 → 0.151.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/settings.json +2 -0
- package/dist/index.js +2913 -2856
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
33
33
|
|
|
34
34
|
## Claude Commands
|
|
35
35
|
|
|
36
|
+
- `/bug` - File a bug with reproduction steps, expected and actual behavior
|
|
36
37
|
- `/comment` - Add pending review comments to the current PR
|
|
37
38
|
- `/commit` - Commit only relevant files from the session
|
|
38
39
|
- `/devlog` - Generate devlog entry for the next unversioned day
|
|
@@ -49,6 +50,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
49
50
|
- `/test-review` - Review existing tests for quality, coverage gaps, and adherence to conventions
|
|
50
51
|
- `/inspect` - Run .NET code inspections on changed files
|
|
51
52
|
- `/screenshot` - Capture a screenshot of a running application window
|
|
53
|
+
- `/raven` - Query and manage RavenDB connections and collections
|
|
52
54
|
- `/seq` - Query Seq logs from a URL or filter expression
|
|
53
55
|
- `/verify` - Run all verification commands in parallel
|
|
54
56
|
- `/transcript-format` - Format meeting transcripts from VTT files
|
|
@@ -85,6 +87,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
85
87
|
- `assist backlog start <id>` - Set a backlog item to in-progress
|
|
86
88
|
- `assist backlog done <id>` - Set a backlog item to done
|
|
87
89
|
- `assist backlog delete <id>` - Delete a backlog item
|
|
90
|
+
- `assist backlog show <id>` - Display full detail for a backlog item (alias: `view`)
|
|
88
91
|
- `assist backlog plan <id>` - Display the phased plan for a backlog item
|
|
89
92
|
- `assist backlog phase-done <id> <phase>` - Signal that a plan phase is complete (used by orchestrator)
|
|
90
93
|
- `assist backlog run <id>` - Run a backlog item's plan phase-by-phase with Claude
|
|
@@ -168,4 +171,5 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
168
171
|
- `assist voice status` - Check voice daemon status and recent events
|
|
169
172
|
- `assist voice devices` - List available audio input devices
|
|
170
173
|
- `assist voice logs [-n <count>]` - Show recent voice daemon log entries
|
|
174
|
+
- `assist next` - Alias for `backlog next -w`
|
|
171
175
|
|
package/claude/settings.json
CHANGED
|
@@ -33,6 +33,8 @@
|
|
|
33
33
|
"Bash(assist backlog list:*)",
|
|
34
34
|
"Bash(assist backlog start:*)",
|
|
35
35
|
"Bash(assist backlog done:*)",
|
|
36
|
+
"Bash(assist backlog show:*)",
|
|
37
|
+
"Bash(assist backlog view:*)",
|
|
36
38
|
"Bash(assist backlog plan:*)",
|
|
37
39
|
"Bash(assist backlog phase-done:*)",
|
|
38
40
|
"Bash(assist backlog add:*)",
|