@sma1lboy/kobe 0.8.154 → 0.8.156
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 +6 -6
- package/dist/cli/kobe-run.js +6 -6
- package/dist/cli/rove-run.js +6 -6
- package/dist/skills/rove/SKILL.md +5 -5
- 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: 32 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
|
|
7
7
|
|
|
8
8
|
# Rove shell control
|
|
9
9
|
|
|
@@ -42,7 +42,7 @@ lifecycle tracking, and an explicit outcome contract.
|
|
|
42
42
|
(an MCP server offering to message "other instances" is exactly that
|
|
43
43
|
channel: it reaches a process, not a task, so nothing it delivers is
|
|
44
44
|
attributable, watchable, or replyable). Sent from
|
|
45
|
-
inside a Rove task, the prompt arrives prefixed `[
|
|
45
|
+
inside a Rove task, the prompt arrives prefixed `[ROVE PEER] from
|
|
46
46
|
"<title>" (task <id> — load the Rove agent skill FIRST …)`, so the
|
|
47
47
|
receiver knows who is talking, that this skill is required reading, and
|
|
48
48
|
how to answer — the baked-in reply command is tab-precise
|
|
@@ -51,7 +51,7 @@ lifecycle tracking, and an explicit outcome contract.
|
|
|
51
51
|
strip it with `--plain` for
|
|
52
52
|
coordination messages (`--plain` is only for a verbatim paste the
|
|
53
53
|
receiver should treat as content, not conversation). Received a
|
|
54
|
-
`[
|
|
54
|
+
`[ROVE PEER]` message yourself? Load this skill first — required, not
|
|
55
55
|
optional — then reply with the baked-in command, not by asking the user.
|
|
56
56
|
- `send` carries text, but that text can carry FILES: peers share a
|
|
57
57
|
filesystem, so put the absolute path of a screenshot, log, diff, or any
|
|
@@ -234,7 +234,7 @@ rove api add --repo "$PWD" --count 3 --prompt "<prompt>"
|
|
|
234
234
|
rove api add --repo "$PWD" --agents claude:2,codex:1 --prompt "<prompt>"
|
|
235
235
|
|
|
236
236
|
# Follow up. Use an explicit id for unattended work; the active task can drift.
|
|
237
|
-
# From inside a Rove task this auto-prefixes [
|
|
237
|
+
# From inside a Rove task this auto-prefixes [ROVE PEER] provenance
|
|
238
238
|
# (sender + reply command); --plain sends verbatim.
|
|
239
239
|
rove api send --task-id <id> --prompt "<complete next turn>"
|
|
240
240
|
|
|
@@ -411,7 +411,7 @@ everything, passed everything, and committed nothing has delivered nothing —
|
|
|
411
411
|
that exact mismatch has shipped empty merges before.
|
|
412
412
|
|
|
413
413
|
**Coordinator side** — do NOT block or poll. Keep working (or end your
|
|
414
|
-
turn); each worker's outcome arrives in your chat as a `[
|
|
414
|
+
turn); each worker's outcome arrives in your chat as a `[ROVE PEER]` message
|
|
415
415
|
with its task id. What arrives is the worker's claim, not Rove-verified —
|
|
416
416
|
verify the winner's actual diff before landing. Silence never proves a
|
|
417
417
|
worker died (it may be mid-turn or stuck on a permission prompt): peek with
|
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.8.
|
|
4
|
+
"version": "0.8.156",
|
|
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",
|