@staff0rd/assist 0.572.0 → 0.573.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 +1 -0
- package/claude/commands/github.md +4 -4
- package/dist/commands/sessions/web/bundle.js +2 -2
- package/dist/index.js +269 -107
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -134,6 +134,7 @@ Every command supports `--help` for full detail on its flags and behaviour.
|
|
|
134
134
|
- `--verbose` - Per-line log output instead of the stacked-spinner UI (automatic in CI)
|
|
135
135
|
- `assist github commits <org> [--since <date>] [--top <n>] [--json]` - Report commit activity across a GitHub organisation: repos ranked by commits, top committers, and a per-repo author breakdown
|
|
136
136
|
- `assist github issue create --title <title> --body <body> [-R <owner>/<repo>]` - Create a GitHub issue on the current repo (or `-R`'s). There is no What/Why/How template — an issue reports a problem, and the target repo's own issue template is unknowable from here. The title and body are rejected if they reference Claude or an assist backlog item, and in a web session they are previewed for approve/reject first (with inline comments); nothing is created until it is approved. Raw `gh issue create` is denied in favour of this command
|
|
137
|
+
- `assist github issue comment <number> --body <body> [-R <owner>/<repo>]` - Comment on a GitHub issue on the current repo (or `-R`'s); a body of `-` reads it from stdin. The body is rejected if it references Claude or an assist backlog item, and in a web session it is previewed for approve/reject first (with inline comments); nothing is posted until it is approved. Raw `gh issue comment` is denied in favour of this command
|
|
137
138
|
- `assist news add [url]` - Add an RSS feed URL (rendered in the sessions web News tab)
|
|
138
139
|
|
|
139
140
|
### Backlog
|
|
@@ -86,13 +86,13 @@ Keep it concise: no headers, no wall of text, no restating the whole session. If
|
|
|
86
86
|
|
|
87
87
|
Do not mention `assist`, the assist backlog, or any backlog item number in the comment — the GitHub issue is outward-facing and must not leak internal tooling references. Refer to commits, PRs, or the work itself instead.
|
|
88
88
|
|
|
89
|
-
**
|
|
89
|
+
**Post it** through the assist wrapper, which validates the body and, in a web session, opens the preview pane for approve/reject before anything lands:
|
|
90
90
|
|
|
91
91
|
```
|
|
92
|
-
|
|
92
|
+
assist github issue comment <number> -R <owner>/<repo> --body "<comment>" 2>&1
|
|
93
93
|
```
|
|
94
94
|
|
|
95
|
-
Display the result so the user can see it landed.
|
|
95
|
+
Display the result so the user can see it landed. If the command exits non-zero, relay the rejection reason and any inline comments, revise the draft accordingly, and run it again — nothing was posted.
|
|
96
96
|
|
|
97
97
|
## Action: started
|
|
98
98
|
|
|
@@ -122,7 +122,7 @@ List the available actions and their arguments:
|
|
|
122
122
|
|
|
123
123
|
- `/github <owner/repo#number>` or `/github view <ref>` — view an issue (ref optional; falls back to the session item's GitHub issue).
|
|
124
124
|
- `/github associate <ref> [id]` — associate a GitHub issue with a backlog item (id optional; falls back to the session item).
|
|
125
|
-
- `/github update [ref]` — post a concise session-summary comment to the issue (
|
|
125
|
+
- `/github update [ref]` — post a concise session-summary comment to the issue (previewed for approval before posting).
|
|
126
126
|
- `/github started [ref]` — assign the issue to yourself.
|
|
127
127
|
- `/github done [ref]` — close the issue (no assignment change).
|
|
128
128
|
- `/github help` — show this list.
|