@staff0rd/assist 0.106.1 → 0.107.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 +2 -0
- package/claude/settings.json +2 -0
- package/dist/index.js +426 -234
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,6 +104,8 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
104
104
|
- `assist status-line` - Format Claude Code status line from JSON stdin
|
|
105
105
|
- `assist netframework deps <csproj>` - Show .csproj project dependency tree and solution membership
|
|
106
106
|
- `assist netframework in-sln <csproj>` - Check whether a .csproj is referenced by any .sln file
|
|
107
|
+
- `assist jira auth` - Authenticate with Jira via API token (saves site/email to ~/.assist/jira.json)
|
|
108
|
+
- `assist jira ac <issue-key>` - Print acceptance criteria for a Jira issue
|
|
107
109
|
- `assist complexity <pattern>` - Analyze a file (all metrics if single match, maintainability if multiple)
|
|
108
110
|
- `assist complexity cyclomatic [pattern]` - Calculate cyclomatic complexity per function
|
|
109
111
|
- `assist complexity halstead [pattern]` - Calculate Halstead metrics per function
|
package/claude/settings.json
CHANGED