@staff0rd/assist 0.166.1 → 0.168.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 +1 -1
- package/{assist.cli-reads → allowed.cli-reads} +0 -13
- package/allowed.cli-writes +15 -0
- package/dist/index.js +635 -460
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -119,7 +119,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
119
119
|
- `assist devlog repos` - Show which github.com/staff0rd repos are missing devlog entries
|
|
120
120
|
- `assist devlog skip <date>` - Add a date to the skip list
|
|
121
121
|
- `assist devlog version` - Show current repo name and version info
|
|
122
|
-
- `assist cli-hook` - PreToolUse hook for auto-approving
|
|
122
|
+
- `assist cli-hook` - PreToolUse hook for auto-approving CLI commands (reads from `allowed.cli-reads` and `allowed.cli-writes`, 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> [--tool <tool>]` - Check whether a command would be auto-approved by `cli-hook` (tool defaults to `Bash`)
|
|
125
125
|
- `assist cli-hook deny` - List all deny rules
|
|
@@ -19,27 +19,18 @@ acli jira workitem link list
|
|
|
19
19
|
acli jira workitem search
|
|
20
20
|
acli jira workitem view
|
|
21
21
|
acli jira workitem watcher list
|
|
22
|
-
assist backlog add
|
|
23
|
-
assist backlog comment
|
|
24
22
|
assist backlog comments
|
|
25
|
-
assist backlog done
|
|
26
23
|
assist backlog list
|
|
27
|
-
assist backlog phase-done
|
|
28
|
-
assist backlog plan
|
|
29
24
|
assist backlog show
|
|
30
|
-
assist backlog start
|
|
31
25
|
assist backlog view
|
|
32
26
|
assist cli-hook
|
|
33
|
-
assist commit
|
|
34
27
|
assist complexity
|
|
35
28
|
assist coverage
|
|
36
|
-
assist devlog
|
|
37
29
|
assist dotnet
|
|
38
30
|
assist jira ac
|
|
39
31
|
assist jira auth
|
|
40
32
|
assist jira view
|
|
41
33
|
assist news
|
|
42
|
-
assist notify
|
|
43
34
|
assist prs list-comments
|
|
44
35
|
assist ravendb auth list
|
|
45
36
|
assist ravendb collections
|
|
@@ -49,11 +40,7 @@ assist roam show-claude-code-icon
|
|
|
49
40
|
assist screenshot
|
|
50
41
|
assist seq auth list
|
|
51
42
|
assist seq query
|
|
52
|
-
assist signal next
|
|
53
43
|
assist status-line
|
|
54
|
-
assist sync
|
|
55
|
-
assist transcript format
|
|
56
|
-
assist transcript summarise
|
|
57
44
|
assist verify
|
|
58
45
|
assist voice
|
|
59
46
|
az account list
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
assist backlog add
|
|
2
|
+
assist backlog comment
|
|
3
|
+
assist backlog done
|
|
4
|
+
assist backlog link
|
|
5
|
+
assist backlog phase-done
|
|
6
|
+
assist backlog plan
|
|
7
|
+
assist backlog unlink
|
|
8
|
+
assist backlog start
|
|
9
|
+
assist commit
|
|
10
|
+
assist devlog
|
|
11
|
+
assist notify
|
|
12
|
+
assist signal next
|
|
13
|
+
assist sync
|
|
14
|
+
assist transcript format
|
|
15
|
+
assist transcript summarise
|