@staff0rd/assist 0.226.0 → 0.227.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/allowed.cli-reads +1 -0
- package/dist/allowed.cli-reads +1 -0
- package/dist/index.js +821 -493
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -130,6 +130,8 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
130
130
|
- `assist backlog phase-done <id> <phase> <summary>` - Signal that a plan phase is complete with a summary (used by orchestrator)
|
|
131
131
|
- `assist backlog rewind <id> <phase> --reason <reason>` - Rewind a backlog item to an earlier phase, setting status to in-progress
|
|
132
132
|
- `assist backlog run <id>` - Run a backlog item's plan phase-by-phase with Claude
|
|
133
|
+
- `assist backlog export [file]` - Export the entire backlog database (all tables, all repos) to a file, or stdout if omitted
|
|
134
|
+
- `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)
|
|
133
135
|
- `assist backlog web [-p, --port <number>]` - Open the backlog tab in the web dashboard (default port 3100)
|
|
134
136
|
- `assist roam auth` - Authenticate with Roam via OAuth (opens browser, saves tokens to ~/.assist.yml)
|
|
135
137
|
- `assist roam show-claude-code-icon` - Forward Claude Code hook activity to Roam local API
|
package/allowed.cli-reads
CHANGED