@sma1lboy/kobe 0.8.57 → 0.8.59

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.
@@ -3,7 +3,7 @@ name: kobe
3
3
  description: Use when controlling kobe tasks, parallel coding attempts, hosted agent sessions, task lifecycle, or the daemon-owned issue tracker from a shell.
4
4
  ---
5
5
 
6
- <!-- kobe-skill-version: 7 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
6
+ <!-- kobe-skill-version: 8 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
7
7
 
8
8
  # kobe shell control
9
9
 
@@ -31,8 +31,18 @@ lifecycle tracking, and an explicit outcome contract.
31
31
  child the user cannot see or manage.
32
32
  - Following up on a task you started → `send`; waiting on results →
33
33
  `await`; comparing → `collect`; reporting your own verdict → `report`.
34
- - Messaging another live session → `dispatch` (never impersonate the user
35
- in someone else's terminal).
34
+ - Messaging another task's agent → `send`. Sent from inside a kobe task,
35
+ the prompt arrives prefixed `[KOBE PEER] from "<title>" (task <id> —
36
+ reply: …)`, so the receiver knows who is talking and can answer with the
37
+ baked-in reply command — peer conversations need no coordinator and no
38
+ human relay. `--plain` skips the prefix when you truly need a verbatim
39
+ paste. Received a `[KOBE PEER]` message yourself? Reply with its baked-in
40
+ command, not by asking the user — and if you haven't loaded this skill or
41
+ `kobe api schema` yet, do that first (the message points there) before
42
+ improvising verbs.
43
+ - `dispatch` stays the dispatcher's verb (deliver-only into an
44
+ already-hosted session; never impersonate the user in someone else's
45
+ terminal).
36
46
 
37
47
  Your own engine's in-context subagents remain fine for read-only
38
48
  research/exploration inside your task — the boundary is WORK: anything that
@@ -69,6 +79,8 @@ kobe api fan-out --repo "$PWD" --count 3 --prompt "<prompt>"
69
79
  kobe api fan-out --repo "$PWD" --agents claude:2,codex:1 --prompt "<prompt>"
70
80
 
71
81
  # Follow up. Use an explicit id for unattended work; the active task can drift.
82
+ # From inside a kobe task this auto-prefixes [KOBE PEER] provenance
83
+ # (sender + reply command); --plain sends verbatim.
72
84
  kobe api send --task-id <id> --prompt "<complete next turn>"
73
85
 
74
86
  kobe api get-task --task-id <id>
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.57",
4
+ "version": "0.8.59",
5
5
  "description": "TUI orchestrator for Claude Code (codename)",
6
6
  "type": "module",
7
7
  "packageManager": "bun@1.3.13",
@@ -46,7 +46,7 @@
46
46
  "test:fast": "vitest run --passWithNoTests --minWorkers=1 --maxWorkers=8",
47
47
  "test:socket": "KOBE_INCLUDE_SOCKET=1 vitest run test/daemon --pool forks --minWorkers=1 --maxWorkers=4 --passWithNoTests",
48
48
  "test:socket:coverage": "KOBE_INCLUDE_SOCKET=1 KOBE_COVERAGE_DAEMON=1 vitest run test/daemon --coverage --pool forks --minWorkers=1 --maxWorkers=4 --passWithNoTests",
49
- "test:behavior": "KOBE_INCLUDE_BEHAVIOR=1 vitest run test/behavior --pool forks --minWorkers=1 --maxWorkers=1 --passWithNoTests",
49
+ "test:behavior": "KOBE_INCLUDE_BEHAVIOR=1 vitest run test/behavior --pool forks --minWorkers=1 --maxWorkers=1 --retry=2 --passWithNoTests",
50
50
  "test:render": "bun test test/render --coverage --coverage-reporter=text --coverage-reporter=lcov --coverage-dir=coverage-render",
51
51
  "coverage": "vitest run --coverage --passWithNoTests",
52
52
  "bench": "vitest bench --run",