@sma1lboy/kobe 0.9.43 → 0.9.44
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 +265 -265
- package/dist/cli/kobe-run.js +265 -265
- package/dist/cli/rove-run.js +265 -265
- package/dist/skills/rove/SKILL.md +7 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ name: rove
|
|
|
3
3
|
description: Use when controlling Rove tasks, parallel coding attempts, hosted agent sessions, task lifecycle, or the daemon-owned issue tracker from a shell. Also the ONLY channel for messaging another agent session on this machine — `rove api send`, never a peer/MCP side channel.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- rove-skill-version:
|
|
6
|
+
<!-- rove-skill-version: 38 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
|
|
7
7
|
|
|
8
8
|
# Rove shell control
|
|
9
9
|
|
|
@@ -106,6 +106,12 @@ attempts. A split isolates nothing at all: it is a layout, for watching
|
|
|
106
106
|
something (logs, `btop`, a test loop) next to the work — never the answer to
|
|
107
107
|
"do this work".
|
|
108
108
|
|
|
109
|
+
One boundary the isolation model does NOT cover: **never `git stash` in a
|
|
110
|
+
managed worktree.** The stash stack lives in the repo's common dir
|
|
111
|
+
(`.git/refs/stash`) and is shared by every linked worktree — two tasks that
|
|
112
|
+
stash in parallel can pop or drop each other's work. Commit instead; a
|
|
113
|
+
commit is per-branch and isolates exactly the way the model promises.
|
|
114
|
+
|
|
109
115
|
### Where does this work land?
|
|
110
116
|
|
|
111
117
|
Inside a Rove session (`$ROVE_TASK_ID` non-empty — check first: it is what
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@sma1lboy/kobe",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.44",
|
|
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",
|