@staff0rd/assist 0.162.0 → 0.164.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 -1
- package/claude/CLAUDE.md +2 -0
- package/dist/index.js +653 -552
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
79
79
|
- `assist news` - Start the news web UI showing latest RSS feed items (same as `news web`)
|
|
80
80
|
- `assist news add [url]` - Add an RSS feed URL to the config
|
|
81
81
|
- `assist news web [-p, --port <number>]` - Start a web view of the news feeds (default port 3001)
|
|
82
|
-
- `assist backlog` - Start the backlog web UI (same as `backlog web`)
|
|
82
|
+
- `assist backlog [--dir <path>]` - Start the backlog web UI (same as `backlog web`). `--dir` overrides the directory for backlog file discovery
|
|
83
83
|
- `assist backlog init` - Create an empty assist.backlog.yml
|
|
84
84
|
- `assist backlog list [--status <type>] [-v]` - List all backlog items with status icons
|
|
85
85
|
- `assist backlog add` - Add a new backlog item interactively (prompts for type: story/bug)
|
|
@@ -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
|