@staff0rd/assist 0.211.0 → 0.213.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 -0
- package/allowed.cli-reads +1 -0
- package/dist/allowed.cli-reads +1 -0
- package/dist/index.js +1174 -238
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,11 @@ npm install -g @staff0rd/assist
|
|
|
12
12
|
assist sync
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
+
## Updating
|
|
16
|
+
```bash
|
|
17
|
+
assist update
|
|
18
|
+
```
|
|
19
|
+
|
|
15
20
|
## Local Development
|
|
16
21
|
|
|
17
22
|
```bash
|
|
@@ -83,6 +88,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
83
88
|
- `assist prs fixed <comment-id> <sha>` - Reply with commit link and resolve thread
|
|
84
89
|
- `assist prs wontfix <comment-id> <reason>` - Reply with reason and resolve thread
|
|
85
90
|
- `assist prs comment <path> <line> <body>` - Add a line comment to the pending review
|
|
91
|
+
- `assist review [--no-prompt] [--submit] [--force]` - Run Claude and Codex in parallel to review the current branch. By default, prompts before posting line-bound comments and then prompts again to submit the pending review (defaulting to no). Cached `claude.md` / `codex.md` / `synthesis.md` are reused when present; if any reviewer is re-run, the synthesis is invalidated. `--no-prompt` skips all confirmations. `--submit` defaults the submit prompt to yes (or auto-submits when combined with `--no-prompt`). `--force` clears all cached files and re-runs every phase
|
|
86
92
|
- `assist news` - Start the news web UI showing latest RSS feed items (same as `news web`)
|
|
87
93
|
- `assist news add [url]` - Add an RSS feed URL to the config
|
|
88
94
|
- `assist news web [-p, --port <number>]` - Start a web view of the news feeds (default port 3001)
|
package/allowed.cli-reads
CHANGED