@sma1lboy/kobe 0.8.75 → 0.8.76
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 +225 -225
- package/dist/skills/kobe/SKILL.md +8 -3
- package/package.json +1 -1
|
@@ -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:
|
|
6
|
+
<!-- kobe-skill-version: 16 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
|
|
7
7
|
|
|
8
8
|
# kobe shell control
|
|
9
9
|
|
|
@@ -98,8 +98,13 @@ kobe api list --pretty
|
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
`.running` means the task's canonical Hosted PTY engine session is alive.
|
|
101
|
-
`
|
|
102
|
-
|
|
101
|
+
Omitting `--tab` targets a live engine tab (`tab-1` first, then any surviving
|
|
102
|
+
engine tab). Only when the task has NO live session at all does `send`
|
|
103
|
+
auto-start the canonical engine in the task's worktree (`started: true` in
|
|
104
|
+
the result marks that fresh session). If live tabs exist but none resolves
|
|
105
|
+
as an engine, it refuses with `NO_ENGINE_TAB` — address one with `--tab
|
|
106
|
+
tab-N` or spawn one with `--tab new`; it never silently spawns a duplicate
|
|
107
|
+
engine.
|
|
103
108
|
|
|
104
109
|
## Terminal panes
|
|
105
110
|
|
package/package.json
CHANGED