@staff0rd/assist 0.233.2 → 0.235.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 +522 -433
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -117,6 +117,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
117
117
|
- `assist backlog update-phase <id> <phase> [--add-task <text>] [--edit-task <n> <text>] [--remove-task <n>] [--add-check <text>] [--edit-check <n> <text>] [--remove-check <n>]` - Granular task and manual-check edits using 1-based indices matching `backlog show`: `--add-*` appends (repeatable), `--edit-*` replaces entry n in place, `--remove-*` deletes entry n and renumbers the rest (task ops cannot be combined with `--task`; check ops cannot be combined with `--manual-check`)
|
|
118
118
|
- `assist backlog remove-phase <id> <phase>` - Remove a plan phase from a backlog item
|
|
119
119
|
- `assist backlog next` - Pick and run the next backlog item, or open `/draft` if none remain
|
|
120
|
+
- `assist backlog refine [id]` - Alias for `refine`
|
|
120
121
|
- `assist backlog start <id>` - Set a backlog item to in-progress
|
|
121
122
|
- `assist backlog stop` - Revert all in-progress backlog items to todo and reset their phase to 1
|
|
122
123
|
- `assist backlog done <id>` - Set a backlog item to done
|
|
@@ -132,6 +133,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
132
133
|
- `assist backlog run <id>` - Run a backlog item's plan phase-by-phase with Claude
|
|
133
134
|
- `assist backlog export [file]` - Export the entire backlog database (all tables, all repos) to a file, or stdout if omitted
|
|
134
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)
|
|
135
137
|
- `assist backlog web [-p, --port <number>]` - Open the backlog tab in the web dashboard (default port 3100)
|
|
136
138
|
- `assist roam auth` - Authenticate with Roam via OAuth (opens browser, saves tokens to ~/.assist.yml)
|
|
137
139
|
- `assist roam show-claude-code-icon` - Forward Claude Code hook activity to Roam local API
|