@sma1lboy/kobe 0.8.83 → 0.8.85
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/README.md +5 -2
- package/dist/cli/index.js +386 -398
- package/dist/cli/kobe.js +957 -0
- package/dist/cli/pty-host-node.mjs +19 -9
- package/dist/cli/rove.js +957 -0
- package/dist/skills/kobe/SKILL.md +7 -4
- package/package.json +5 -3
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: kobe
|
|
3
|
-
description: Use when controlling kobe tasks, parallel coding attempts, hosted agent sessions, task lifecycle, or the daemon-owned issue tracker from a shell.
|
|
3
|
+
description: Use when controlling kobe 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 — `kobe api send`, never a peer/MCP side channel.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- kobe-skill-version:
|
|
6
|
+
<!-- kobe-skill-version: 20 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
|
|
7
7
|
|
|
8
8
|
# kobe shell control
|
|
9
9
|
|
|
@@ -36,8 +36,11 @@ lifecycle tracking, and an explicit outcome contract.
|
|
|
36
36
|
If that tab died it falls back to the dispatcher task's live canonical
|
|
37
37
|
engine tab; nothing alive fails loud (`DISPATCHER_UNREACHABLE`) — it
|
|
38
38
|
never spawns a new engine, so a failed reply is visible, not fake-ok.
|
|
39
|
-
- Messaging another
|
|
40
|
-
through the user, a side file, or a generic peer channel
|
|
39
|
+
- Messaging another agent session on this machine → `send`, and ONLY `send`
|
|
40
|
+
— never relay through the user, a side file, or a generic peer channel
|
|
41
|
+
(an MCP server offering to message "other instances" is exactly that
|
|
42
|
+
channel: it reaches a process, not a task, so nothing it delivers is
|
|
43
|
+
attributable, watchable, or replyable). Sent from
|
|
41
44
|
inside a kobe task, the prompt arrives prefixed `[KOBE PEER] from
|
|
42
45
|
"<title>" (task <id> — load the kobe agent skill FIRST …)`, so the
|
|
43
46
|
receiver knows who is talking, that this skill is required reading, and
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@sma1lboy/kobe",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.85",
|
|
5
5
|
"description": "TUI orchestrator for Claude Code (codename)",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"packageManager": "bun@1.3.13",
|
|
8
8
|
"bin": {
|
|
9
|
-
"kobe": "dist/cli/
|
|
9
|
+
"kobe": "dist/cli/kobe.js",
|
|
10
|
+
"rove": "dist/cli/rove.js"
|
|
10
11
|
},
|
|
11
12
|
"files": ["dist/cli", "dist/web-ui", "dist/skills", "dist/*.wav", "README.md", "LICENSE"],
|
|
12
13
|
"publishConfig": {
|
|
@@ -24,7 +25,8 @@
|
|
|
24
25
|
"bun": ">=1.3.11"
|
|
25
26
|
},
|
|
26
27
|
"scripts": {
|
|
27
|
-
"dev": "KOBE_DEV=1 bun --conditions=browser ./src/cli/
|
|
28
|
+
"dev": "KOBE_DEV=1 bun --conditions=browser ./src/cli/kobe.ts",
|
|
29
|
+
"dev:rove": "ROVE_DEV=1 bun --conditions=browser ./src/cli/rove.ts",
|
|
28
30
|
"dev:mock": "KOBE_DEV=1 bun ./src/tui-react/mock/host.tsx",
|
|
29
31
|
"dev:mock-react": "KOBE_DEV=1 bun ./src/tui-react/mock/host.tsx",
|
|
30
32
|
"dev:mock-react-task-dialogs": "KOBE_DEV=1 bun ./src/tui-react/component/mock-dialogs-host.tsx",
|