@sma1lboy/kobe 0.8.116 → 0.8.118
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 +407 -406
- package/dist/cli/kobe.js +407 -406
- package/dist/cli/rove.js +407 -406
- package/dist/skills/rove/SKILL.md +20 -2
- 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: 25 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
|
|
7
7
|
|
|
8
8
|
# Rove shell control
|
|
9
9
|
|
|
@@ -293,6 +293,23 @@ an unfamiliar engine or an unfamiliar flag, probe it yourself (`<cmd> --help`,
|
|
|
293
293
|
`<cmd> --version`) and only then compose the command. A bad command line
|
|
294
294
|
starts a session that dies or ignores you; Rove will not catch it for you.
|
|
295
295
|
|
|
296
|
+
**Model is a conscious either/or — default to WITHOUT.** Your own model
|
|
297
|
+
knowledge is training-data stale; the user's engine default is fresher than
|
|
298
|
+
your guess, and model ids you have never heard of are routinely valid.
|
|
299
|
+
|
|
300
|
+
- **Without a model (the default):** compose the command with no model flag —
|
|
301
|
+
the session runs on the user's own default for that engine. Choose this
|
|
302
|
+
whenever the user did not name a model this turn.
|
|
303
|
+
- **With a model (explicit request only):** the user named a model → pin it,
|
|
304
|
+
passing their string VERBATIM (`--help` first to confirm the flag exists;
|
|
305
|
+
never "correct" an unfamiliar model id to one you know).
|
|
306
|
+
|
|
307
|
+
```bash
|
|
308
|
+
rove api add --repo "$PWD" --command claude --prompt "…" # user's default model
|
|
309
|
+
rove api add --repo "$PWD" --command "claude --model claude-fable-5" \
|
|
310
|
+
--prompt "…" # user said "use Fable 5" this turn
|
|
311
|
+
```
|
|
312
|
+
|
|
296
313
|
Omit `--command` to use the repo's default engine. `engine-list`'s `protocol`
|
|
297
314
|
field says how much Rove understands about an entry — `generic` means it
|
|
298
315
|
launches fine but Rove reads no history and pre-answers no trust dialog.
|
|
@@ -300,7 +317,8 @@ launches fine but Rove reads no history and pre-answers no trust dialog.
|
|
|
300
317
|
## Parallel-round rules
|
|
301
318
|
|
|
302
319
|
Spawn a parallel round (`add --count N` / `--agents`) only when the user
|
|
303
|
-
requests parallel approaches, comparison, or an
|
|
320
|
+
requests parallel approaches, comparison, or an explicit count.
|
|
321
|
+
Give each round a scoped prompt, report returned IDs, then use
|
|
304
322
|
`collect` to compare. Do not recursively fan out from spawned tasks. Do not
|
|
305
323
|
poll `send` in a tight loop or use it as casual chat; every call is a full
|
|
306
324
|
engine turn.
|
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.118",
|
|
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",
|