@staff0rd/assist 0.96.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 -2
- package/assist.cli-reads +44 -0
- package/claude/settings.json +0 -1
- package/dist/index.js +1370 -1226
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -92,8 +92,9 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
92
92
|
- `assist devlog next` - Show commits for the day after the last versioned entry
|
|
93
93
|
- `assist devlog skip <date>` - Add a date to the skip list
|
|
94
94
|
- `assist devlog version` - Show current repo name and version info
|
|
95
|
-
- `assist
|
|
96
|
-
- `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`
|
|
97
98
|
- `assist update` - Update assist to the latest version and sync commands
|
|
98
99
|
- `assist vscode init` - Add VS Code configuration files
|
|
99
100
|
- `assist deploy init` - Initialize Netlify project and configure deployment
|
package/assist.cli-reads
CHANGED
|
@@ -1918,6 +1918,11 @@ gh ruleset view
|
|
|
1918
1918
|
gh run list
|
|
1919
1919
|
gh run view
|
|
1920
1920
|
gh run watch
|
|
1921
|
+
gh search code
|
|
1922
|
+
gh search commits
|
|
1923
|
+
gh search issues
|
|
1924
|
+
gh search prs
|
|
1925
|
+
gh search repos
|
|
1921
1926
|
gh secret list
|
|
1922
1927
|
gh ssh-key list
|
|
1923
1928
|
gh status
|
|
@@ -1925,3 +1930,42 @@ gh variable get
|
|
|
1925
1930
|
gh variable list
|
|
1926
1931
|
gh workflow list
|
|
1927
1932
|
gh workflow view
|
|
1933
|
+
git annotate
|
|
1934
|
+
git blame
|
|
1935
|
+
git cat-file
|
|
1936
|
+
git check-attr
|
|
1937
|
+
git check-ignore
|
|
1938
|
+
git check-mailmap
|
|
1939
|
+
git check-ref-format
|
|
1940
|
+
git cherry
|
|
1941
|
+
git count-objects
|
|
1942
|
+
git describe
|
|
1943
|
+
git diff
|
|
1944
|
+
git diff-files
|
|
1945
|
+
git diff-index
|
|
1946
|
+
git diff-tree
|
|
1947
|
+
git for-each-ref
|
|
1948
|
+
git fsck
|
|
1949
|
+
git grep
|
|
1950
|
+
git help
|
|
1951
|
+
git log
|
|
1952
|
+
git ls-files
|
|
1953
|
+
git ls-remote
|
|
1954
|
+
git ls-tree
|
|
1955
|
+
git merge-base
|
|
1956
|
+
git name-rev
|
|
1957
|
+
git range-diff
|
|
1958
|
+
git rev-list
|
|
1959
|
+
git rev-parse
|
|
1960
|
+
git shortlog
|
|
1961
|
+
git show
|
|
1962
|
+
git show-branch
|
|
1963
|
+
git show-index
|
|
1964
|
+
git show-ref
|
|
1965
|
+
git status
|
|
1966
|
+
git var
|
|
1967
|
+
git verify-commit
|
|
1968
|
+
git verify-pack
|
|
1969
|
+
git verify-tag
|
|
1970
|
+
git version
|
|
1971
|
+
git whatchanged
|