@sma1lboy/kobe 0.8.138 → 0.8.140
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 +361 -355
- package/dist/cli/kobe-run.js +361 -355
- package/dist/cli/rove-run.js +361 -355
- package/dist/skills/rove/SKILL.md +9 -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: 30 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
|
|
7
7
|
|
|
8
8
|
# Rove shell control
|
|
9
9
|
|
|
@@ -53,6 +53,14 @@ lifecycle tracking, and an explicit outcome contract.
|
|
|
53
53
|
receiver should treat as content, not conversation). Received a
|
|
54
54
|
`[KOBE 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
|
+
- `send` carries text, but that text can carry FILES: peers share a
|
|
57
|
+
filesystem, so put the absolute path of a screenshot, log, diff, or any
|
|
58
|
+
artifact in the prompt and the receiver opens it with its own Read tool —
|
|
59
|
+
images included. An annotated screenshot beats a paragraph describing one;
|
|
60
|
+
prefer "see /path/to/shot.png — the arrow marks the broken card" over
|
|
61
|
+
re-narrating pixels. Paths under the sender's Worktree work too (worktrees
|
|
62
|
+
are world-readable locally); just never expect the receiver to WRITE
|
|
63
|
+
there.
|
|
56
64
|
- `dispatch` stays the dispatcher's verb (deliver-only into an
|
|
57
65
|
already-hosted session; never impersonate the user in someone else's
|
|
58
66
|
terminal).
|
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.140",
|
|
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",
|