@staff0rd/assist 0.162.0 → 0.163.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 -0
- package/claude/CLAUDE.md +2 -0
- package/dist/index.js +383 -295
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -122,6 +122,9 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
122
122
|
- `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
|
|
123
123
|
- `assist cli-hook add <cli>` - Discover a CLI's commands and auto-permit read-only ones
|
|
124
124
|
- `assist cli-hook check <command>` - Check whether a command would be auto-approved by `cli-hook`
|
|
125
|
+
- `assist cli-hook deny` - List all deny rules
|
|
126
|
+
- `assist cli-hook deny add <pattern> <message>` - Add a deny rule for a command pattern
|
|
127
|
+
- `assist cli-hook deny remove <pattern>` - Remove a deny rule by pattern
|
|
125
128
|
- `assist update` - Update assist to the latest version and sync commands
|
|
126
129
|
- `assist vscode init` - Add VS Code configuration files
|
|
127
130
|
- `assist deploy init` - Initialize Netlify project and configure deployment
|
package/claude/CLAUDE.md
CHANGED
|
@@ -9,6 +9,8 @@ When renaming TypeScript files or symbols, use the refactor commands instead of
|
|
|
9
9
|
All default to dry-run; add `--apply` to execute.
|
|
10
10
|
When using extract, name the destination file after the exported function (e.g. `updateWorkerCapacity.ts` for `updateWorkerCapacity`) to satisfy `useFilenamingConvention` lint rules.
|
|
11
11
|
|
|
12
|
+
Do not modify `claude/settings.json` without asking the user first. Only read-only commands should be added to the allow list — write operations (add, remove, set, delete) must require confirmation.
|
|
13
|
+
|
|
12
14
|
When the user mentions a Jira issue key (e.g. `BAD-671`, `PROJ-123`), use these commands to fetch context:
|
|
13
15
|
- `assist jira view <issue-key>` — print the title and description
|
|
14
16
|
- `assist jira ac <issue-key>` — print acceptance criteria
|