@staff0rd/assist 0.264.3 → 0.266.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 -1
- package/dist/commands/sessions/web/bundle.js +45 -45
- package/dist/index.js +242 -97
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -91,7 +91,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
91
91
|
- `assist prs fixed <comment-id> <sha>` - Reply with commit link and resolve thread
|
|
92
92
|
- `assist prs wontfix <comment-id> <reason>` - Reply with reason and resolve thread
|
|
93
93
|
- `assist prs comment <path> <line> <body>` - Add a line comment to the pending review
|
|
94
|
-
- `assist review [number] [options]` - Run Claude and Codex in parallel to review the open PR for the current branch. The diff is fetched from GitHub (base SHA → head SHA via `gh pr diff`), so stale local base branches don't pollute the review; fails fast if no PR is open. 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.
|
|
94
|
+
- `assist review [number] [options]` - Run Claude and Codex in parallel to review the open PR for the current branch. The diff is fetched from GitHub (base SHA → head SHA via `gh pr diff`), so stale local base branches don't pollute the review; fails fast if no PR is open. By default, prompts before posting line-bound comments and then prompts again to submit the pending review (defaulting to no). Findings whose lines fall outside the diff are skipped with a warning rather than being silently dropped by GitHub. Cached `claude.md` / `codex.md` / `synthesis.md` are reused when present; if any reviewer is re-run, the synthesis is invalidated.
|
|
95
95
|
- `[number]` - Run `gh pr checkout <number>` first, then review that PR's branch. If the checkout fails (dirty working tree, unknown PR number), the review aborts
|
|
96
96
|
- `--no-prompt` - Skip all confirmations
|
|
97
97
|
- `--submit` - Default the submit prompt to yes (or auto-submit when combined with `--no-prompt`)
|