@sma1lboy/rove 0.9.67 → 0.9.69
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/dist/cli/index.js +299 -299
- package/dist/cli/kobe-run.js +299 -299
- package/dist/cli/rove-run.js +299 -299
- package/dist/skills/rove/SKILL.md +16 -7
- package/package.json +1 -1
|
@@ -344,7 +344,7 @@ logs, dashboards), don't scatter panes for work `add` should own.
|
|
|
344
344
|
| `rename --task-id ID --title T` | Rename a task |
|
|
345
345
|
| `set-branch --task-id ID --branch B` | Rename its branch |
|
|
346
346
|
| `set-command --task-id ID --command CMD` | Change the engine launch command for the next launch |
|
|
347
|
-
| `set-status --task-id ID --status S` | Set lifecycle
|
|
347
|
+
| `set-status --task-id ID --status S` | Set the lifecycle LABEL (`backlog`/`in_progress`/`in_review`/`done`/`canceled`/`error`). Cosmetic: the row, its Worktree, its branch and its engine all stay. `canceled` does NOT close or clean up anything |
|
|
348
348
|
| `pin --task-id ID [--pinned=false]` | Pin/unpin |
|
|
349
349
|
| `set-active --task-id ID` / `--none` | Change shared active task |
|
|
350
350
|
| `ensure-worktree --task-id ID` | Materialize without starting an engine |
|
|
@@ -353,12 +353,21 @@ logs, dashboards), don't scatter panes for work `add` should own.
|
|
|
353
353
|
| `discover-adoptable --repo PATH` | Find untracked Worktrees |
|
|
354
354
|
| `adopt --repo PATH --worktree PATH` | Import a Worktree |
|
|
355
355
|
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
356
|
+
### "Close this task" means `delete`
|
|
357
|
+
|
|
358
|
+
`delete` is the ONLY verb that ends a task: it removes the row and its
|
|
359
|
+
Worktree, and the git branch survives as the durable record. `set-status
|
|
360
|
+
canceled` is a label — the row, Worktree, branch and engine all stay, so a
|
|
361
|
+
"close" done that way changes nothing the user can see. Reach for `delete`
|
|
362
|
+
whether or not the work merged; an unmerged branch is still on disk
|
|
363
|
+
afterwards, which is what makes this recoverable.
|
|
364
|
+
|
|
365
|
+
There is no "hide the row without deleting" verb (`archive` was removed).
|
|
366
|
+
|
|
367
|
+
**Deleting still needs the user to ask for it in that turn** — say what you
|
|
368
|
+
would remove and wait. `--delete-branch` (or `--force` on a dirty Worktree)
|
|
369
|
+
destroys the recoverable half and needs its own explicit authorization; the
|
|
370
|
+
two flags are never implied by one another.
|
|
362
371
|
|
|
363
372
|
## Issue tracker
|
|
364
373
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@sma1lboy/rove",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.69",
|
|
5
5
|
"description": "Rove — the agent multiplexer for your terminal. Run coding agents on parallel tasks with isolated worktrees and persistent sessions.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"terminal",
|