@sma1lboy/kobe 0.8.119 → 0.8.121
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 +10 -10
- package/dist/cli/kobe.js +10 -10
- package/dist/cli/rove.js +10 -10
- package/dist/skills/rove/SKILL.md +18 -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: 26 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
|
|
7
7
|
|
|
8
8
|
# Rove shell control
|
|
9
9
|
|
|
@@ -139,6 +139,23 @@ branch, and which sibling tabs exist" — `.tabs[]` carries each tab's `id`, `ki
|
|
|
139
139
|
`send --tab`. A tab flagged `unregistered: true` is a live session the tab
|
|
140
140
|
snapshot lost; it is addressable like any other.
|
|
141
141
|
|
|
142
|
+
## Fresh worktrees start empty — install before you judge
|
|
143
|
+
|
|
144
|
+
A managed task's worktree is a **brand-new checkout**: no `node_modules`, no
|
|
145
|
+
build artifacts, nothing a lockfile promises. Two consequences:
|
|
146
|
+
|
|
147
|
+
- **A test failure in a fresh worktree may be fake.** Missing dependencies
|
|
148
|
+
masquerade as product bugs ("Could not resolve: react-dom/client" reads
|
|
149
|
+
like a regression, not a missing install). Before reporting any failure as
|
|
150
|
+
real, confirm the repo's install step ran — and when a failure looks
|
|
151
|
+
unrelated to your change, compare against the same command on the base
|
|
152
|
+
branch before believing it.
|
|
153
|
+
- **Repos with an install step should ship `.rove/init.sh`** — it runs once
|
|
154
|
+
per worktree, before the engine, in the worktree (per-user override:
|
|
155
|
+
`rove repo set --init-script`; inspect with `rove repo show`, which lists
|
|
156
|
+
`.rove/init.sh: absent` when unset). Working in a repo that lacks one and
|
|
157
|
+
you just paid the install tax? Suggest adding it.
|
|
158
|
+
|
|
142
159
|
## Discover before calling
|
|
143
160
|
|
|
144
161
|
```bash
|
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.121",
|
|
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",
|