@staff0rd/assist 0.95.0 → 0.97.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 -3
- package/assist.cli-reads +1971 -0
- package/claude/settings.json +4 -1942
- package/dist/index.js +569 -324
- package/package.json +9 -4
- package/claude/commands/generate-cli-read-verbs.md +0 -22
package/README.md
CHANGED
|
@@ -41,7 +41,6 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
41
41
|
- `/review-comments` - Process PR review comments one by one
|
|
42
42
|
- `/journal` - Append a journal entry summarising recent work, decisions, and notable observations
|
|
43
43
|
- `/standup` - Summarise recent journal entries as a standup update
|
|
44
|
-
- `/generate-cli-read-verbs <cli>` - Discover CLI commands and classify read vs write verbs
|
|
45
44
|
- `/sync` - Sync commands and settings to ~/.claude
|
|
46
45
|
- `/verify` - Run all verification commands in parallel
|
|
47
46
|
- `/transcript-format` - Format meeting transcripts from VTT files
|
|
@@ -93,8 +92,9 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
93
92
|
- `assist devlog next` - Show commits for the day after the last versioned entry
|
|
94
93
|
- `assist devlog skip <date>` - Add a date to the skip list
|
|
95
94
|
- `assist devlog version` - Show current repo name and version info
|
|
96
|
-
- `assist cli-
|
|
97
|
-
- `assist cli-hook
|
|
95
|
+
- `assist cli-hook` - PreToolUse hook for auto-approving read-only CLI commands (reads from `assist.cli-reads`, also auto-approves read-only `gh api` calls). Supports compound commands (`|`, `&&`, `||`, `;`) by checking each sub-command independently
|
|
96
|
+
- `assist cli-hook add <cli>` - Discover a CLI's commands and auto-permit read-only ones
|
|
97
|
+
- `assist cli-hook check <command>` - Check whether a command would be auto-approved by `cli-hook`
|
|
98
98
|
- `assist update` - Update assist to the latest version and sync commands
|
|
99
99
|
- `assist vscode init` - Add VS Code configuration files
|
|
100
100
|
- `assist deploy init` - Initialize Netlify project and configure deployment
|