@staff0rd/assist 0.234.0 → 0.236.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/dist/index.js +4479 -4371
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -133,6 +133,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
133
133
|
- `assist backlog run <id>` - Run a backlog item's plan phase-by-phase with Claude
|
|
134
134
|
- `assist backlog export [file]` - Export the entire backlog database (all tables, all repos) to a file, or stdout if omitted
|
|
135
135
|
- `assist backlog import [file]` - Restore the entire backlog database from a dump (file or stdin), faithfully replacing all data; prompts for confirmation (use `-y, --yes` to skip; required when reading from stdin)
|
|
136
|
+
- `assist backlog move-repo <old-origin> [new-origin]` - Retag all items from one origin to another after a repo rename; the new origin defaults to the current repo's remote, both accept URL or `git@` forms, and a bare repo name works for the old origin when unambiguous. Prompts for confirmation (use `-y, --yes` to skip)
|
|
136
137
|
- `assist backlog web [-p, --port <number>]` - Open the backlog tab in the web dashboard (default port 3100)
|
|
137
138
|
- `assist roam auth` - Authenticate with Roam via OAuth (opens browser, saves tokens to ~/.assist.yml)
|
|
138
139
|
- `assist roam show-claude-code-icon` - Forward Claude Code hook activity to Roam local API
|
|
@@ -240,6 +241,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
240
241
|
- `assist draft` (alias: `feat`) - Launch Claude in `/draft` mode, chain into next on `/next` signal
|
|
241
242
|
- `assist bug` - Launch Claude in `/bug` mode, chain into next on `/next` signal
|
|
242
243
|
- `assist refine [id]` - Launch Claude in `/refine` mode to refine a backlog item; prompts for selection when no id given
|
|
244
|
+
- `assist review-comments [number]` - Launch Claude in `/review-comments` mode to process PR review comments (single session, no chaining); when a PR number is supplied, checks out that PR via `gh pr checkout` first
|
|
243
245
|
- `assist signal next [id]` - Write a next signal to chain into `assist next`; when `id` is supplied, the parent launcher runs that backlog item directly
|
|
244
246
|
|
|
245
247
|
When `commit.pull` is enabled in config, `assist draft`, `assist bug`, `assist refine`, `assist next`, and `assist backlog run` run `git pull --ff-only` before doing anything else; if the pull fails the command aborts. `assist next` pulls once per invocation, not per item in its loop.
|