@staff0rd/assist 0.120.0 → 0.121.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 +7 -3
- package/claude/settings.json +2 -2
- package/dist/index.js +970 -674
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -80,7 +80,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
80
80
|
- `assist backlog delete <id>` - Delete a backlog item
|
|
81
81
|
- `assist backlog web [-p, --port <number>]` - Start a web view of the backlog (default port 3000)
|
|
82
82
|
- `assist roam auth` - Authenticate with Roam via OAuth (opens browser, saves tokens to ~/.assist.yml)
|
|
83
|
-
- `assist run <name> [params...]` - Run a configured command from assist.yml (positional params are matched to `params` config)
|
|
83
|
+
- `assist run <name> [params...]` - Run a configured command from assist.yml (positional params are matched to `params` config; supports `pre` array of commands to run first)
|
|
84
84
|
- `assist run add` - Add a new run configuration to assist.yml and create a Claude command file
|
|
85
85
|
- `assist config set <key> <value>` - Set a config value (e.g. commit.push true)
|
|
86
86
|
- `assist config get <key>` - Get a config value
|
|
@@ -110,8 +110,12 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
110
110
|
- `assist deploy redirect` - Add trailing slash redirect script to index.html
|
|
111
111
|
- `assist notify` - Show desktop notification from JSON stdin (supports macOS, Windows, WSL)
|
|
112
112
|
- `assist status-line` - Format Claude Code status line from JSON stdin
|
|
113
|
-
- `assist
|
|
114
|
-
- `assist
|
|
113
|
+
- `assist dotnet inspect [sln]` - Run JetBrains inspections on changed .cs files to find dead code
|
|
114
|
+
- `assist dotnet inspect [sln] --ref <ref>` - Inspect .cs files changed in a specific commit (default: HEAD)
|
|
115
|
+
- `assist dotnet inspect [sln] --swea` - Enable solution-wide error analysis (slower but more thorough)
|
|
116
|
+
- `assist dotnet check-locks` - Check if build output files are locked by a debugger
|
|
117
|
+
- `assist dotnet deps <csproj>` - Show .csproj project dependency tree and solution membership
|
|
118
|
+
- `assist dotnet in-sln <csproj>` - Check whether a .csproj is referenced by any .sln file
|
|
115
119
|
- `assist jira auth` - Authenticate with Jira via API token (saves site/email to ~/.assist/jira.json)
|
|
116
120
|
- `assist jira ac <issue-key>` - Print acceptance criteria for a Jira issue
|
|
117
121
|
- `assist jira view <issue-key>` - Print the title and description of a Jira issue
|
package/claude/settings.json
CHANGED
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"Bash(assist jira auth:*)",
|
|
41
41
|
"Bash(assist jira ac:*)",
|
|
42
42
|
"Bash(assist jira view:*)",
|
|
43
|
-
"Bash(assist
|
|
44
|
-
|
|
43
|
+
"Bash(assist dotnet:*)",
|
|
44
|
+
"Bash(assist ravendb query:*)",
|
|
45
45
|
"Bash(assist ravendb collections:*)",
|
|
46
46
|
"Bash(assist ravendb auth --list:*)",
|
|
47
47
|
"Bash(head:*)",
|