@sma1lboy/rove 0.8.106 → 0.8.108
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 +81 -81
- package/dist/cli/kobe.js +81 -81
- package/dist/cli/rove.js +81 -81
- package/dist/skills/rove/SKILL.md +9 -4
- package/package.json +1 -1
|
@@ -243,11 +243,14 @@ logs, dashboards), don't scatter panes for work `add`/`fan-out` should own.
|
|
|
243
243
|
| `set-active --task-id ID` / `--none` | Change shared active task |
|
|
244
244
|
| `ensure-worktree --task-id ID` | Materialize without starting an engine |
|
|
245
245
|
| `land --task-id ID [--strategy merge\|squash] [--delete-branch] [--then-archive] [--remove-worktree]` | Merge the task's branch into the base repo's current branch; `--remove-worktree` cleans up the Worktree after (branch stays; dirty/self/base refused, outcome in the result's `worktree` field) |
|
|
246
|
-
| `delete --task-id ID [--force]` |
|
|
246
|
+
| `delete --task-id ID [--force] [--delete-branch]` | Remove task + Worktree; the git branch stays unless `--delete-branch` (and `--force` never implies it) |
|
|
247
247
|
| `discover-adoptable --repo PATH` | Find untracked Worktrees |
|
|
248
248
|
| `adopt --repo PATH --worktree PATH` | Import a Worktree |
|
|
249
249
|
|
|
250
|
-
|
|
250
|
+
Once a task's work is merged, `delete` is the normal cleanup — the branch is
|
|
251
|
+
git's durable record and survives. `archive` remains as a manual "hide the
|
|
252
|
+
row" override. `--delete-branch` (or a dirty-worktree `--force`) still needs
|
|
253
|
+
explicit user authorization.
|
|
251
254
|
|
|
252
255
|
## Issue tracker
|
|
253
256
|
|
|
@@ -316,5 +319,7 @@ rove api archive --task-id <loser2>
|
|
|
316
319
|
```
|
|
317
320
|
|
|
318
321
|
`land` refuses a dirty base checkout; on merge conflict it aborts cleanly and
|
|
319
|
-
returns the conflicted files for manual resolution.
|
|
320
|
-
Worktree
|
|
322
|
+
returns the conflicted files for manual resolution. `delete` removes a loser's
|
|
323
|
+
Worktree but keeps its branch (recoverable); still don't use it — or
|
|
324
|
+
`--delete-branch`, which destroys the history — without explicit user
|
|
325
|
+
authorization.
|
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.8.
|
|
4
|
+
"version": "0.8.108",
|
|
5
5
|
"description": "Rove — the agent multiplexer for your terminal. Run coding agents on parallel tasks with isolated worktrees and persistent sessions.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"packageManager": "bun@1.3.13",
|