@staff0rd/assist 0.106.1 → 0.108.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 +6 -1
- package/claude/settings.json +3 -0
- package/dist/commands/news/web/bundle.js +66 -0
- package/dist/index.js +738 -298
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -59,12 +59,15 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
59
59
|
- `assist sync` - Copy command files to `~/.claude/commands`
|
|
60
60
|
- `assist commit status` - Show git status and diff
|
|
61
61
|
- `assist commit <message>` - Commit staged changes with validation
|
|
62
|
-
- `assist commit <files
|
|
62
|
+
- `assist commit <message> [files...]` - Stage files and create a git commit with validation
|
|
63
63
|
- `assist prs` - List pull requests for the current repository
|
|
64
64
|
- `assist prs list-comments` - List all comments on the current branch's pull request
|
|
65
65
|
- `assist prs fixed <comment-id> <sha>` - Reply with commit link and resolve thread
|
|
66
66
|
- `assist prs wontfix <comment-id> <reason>` - Reply with reason and resolve thread
|
|
67
67
|
- `assist prs comment <path> <line> <body>` - Add a line comment to the pending review
|
|
68
|
+
- `assist news` - Start the news web UI showing latest RSS feed items (same as `news web`)
|
|
69
|
+
- `assist news add [url]` - Add an RSS feed URL to the config
|
|
70
|
+
- `assist news web [-p, --port <number>]` - Start a web view of the news feeds (default port 3001)
|
|
68
71
|
- `assist backlog` - Start the backlog web UI (same as `backlog web`)
|
|
69
72
|
- `assist backlog init` - Create an empty assist.backlog.yml
|
|
70
73
|
- `assist backlog list [--status <type>] [-v]` - List all backlog items with status icons
|
|
@@ -104,6 +107,8 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
104
107
|
- `assist status-line` - Format Claude Code status line from JSON stdin
|
|
105
108
|
- `assist netframework deps <csproj>` - Show .csproj project dependency tree and solution membership
|
|
106
109
|
- `assist netframework in-sln <csproj>` - Check whether a .csproj is referenced by any .sln file
|
|
110
|
+
- `assist jira auth` - Authenticate with Jira via API token (saves site/email to ~/.assist/jira.json)
|
|
111
|
+
- `assist jira ac <issue-key>` - Print acceptance criteria for a Jira issue
|
|
107
112
|
- `assist complexity <pattern>` - Analyze a file (all metrics if single match, maintainability if multiple)
|
|
108
113
|
- `assist complexity cyclomatic [pattern]` - Calculate cyclomatic complexity per function
|
|
109
114
|
- `assist complexity halstead [pattern]` - Calculate Halstead metrics per function
|
package/claude/settings.json
CHANGED
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"Bash(assist cli-hook:*)",
|
|
30
30
|
"Bash(assist sync:*)",
|
|
31
31
|
"Bash(assist verify:*)",
|
|
32
|
+
"Bash(assist news:*)",
|
|
32
33
|
"Bash(assist backlog list:*)",
|
|
33
34
|
"Bash(assist backlog start:*)",
|
|
34
35
|
"Bash(assist backlog done:*)",
|
|
@@ -36,6 +37,8 @@
|
|
|
36
37
|
"Bash(assist complexity:*)",
|
|
37
38
|
"Bash(assist transcript format:*)",
|
|
38
39
|
"Bash(assist voice:*)",
|
|
40
|
+
"Bash(assist jira auth:*)",
|
|
41
|
+
"Bash(assist jira ac:*)",
|
|
39
42
|
"Bash(assist netframework:*)",
|
|
40
43
|
"Bash(head:*)",
|
|
41
44
|
"Bash(tail:*)",
|