@staff0rd/assist 0.111.0 → 0.113.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 -0
- package/claude/settings.json +3 -0
- package/dist/index.js +1121 -687
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -114,6 +114,13 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
114
114
|
- `assist netframework in-sln <csproj>` - Check whether a .csproj is referenced by any .sln file
|
|
115
115
|
- `assist jira auth` - Authenticate with Jira via API token (saves site/email to ~/.assist/jira.json)
|
|
116
116
|
- `assist jira ac <issue-key>` - Print acceptance criteria for a Jira issue
|
|
117
|
+
- `assist ravendb auth` - Configure a named RavenDB connection (prompts for name, URL, database, op:// secret reference)
|
|
118
|
+
- `assist ravendb auth --list` - List configured RavenDB connections
|
|
119
|
+
- `assist ravendb auth --remove <name>` - Remove a configured connection
|
|
120
|
+
- `assist ravendb set-connection <name>` - Set the default connection for query/collections commands
|
|
121
|
+
- `assist ravendb query [connection] [collection]` - Query a RavenDB collection (outputs JSON to stdout)
|
|
122
|
+
- `assist ravendb query [connection] [collection] --page-size <n> --sort <field> --query <lucene> --limit <n>` - Query with options
|
|
123
|
+
- `assist ravendb collections [connection]` - List collections and document counts in a database
|
|
117
124
|
- `assist complexity <pattern>` - Analyze a file (all metrics if single match, maintainability if multiple)
|
|
118
125
|
- `assist complexity cyclomatic [pattern]` - Calculate cyclomatic complexity per function
|
|
119
126
|
- `assist complexity halstead [pattern]` - Calculate Halstead metrics per function
|
package/claude/settings.json
CHANGED
|
@@ -40,6 +40,9 @@
|
|
|
40
40
|
"Bash(assist jira auth:*)",
|
|
41
41
|
"Bash(assist jira ac:*)",
|
|
42
42
|
"Bash(assist netframework:*)",
|
|
43
|
+
"Bash(assist ravendb query:*)",
|
|
44
|
+
"Bash(assist ravendb collections:*)",
|
|
45
|
+
"Bash(assist ravendb auth --list:*)",
|
|
43
46
|
"Bash(head:*)",
|
|
44
47
|
"Bash(tail:*)",
|
|
45
48
|
"Bash(grep:*)",
|