@sma1lboy/kobe 0.8.68 → 0.8.69
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 +156 -156
- package/dist/skills/kobe/SKILL.md +13 -2
- 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: 13 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
|
|
7
7
|
|
|
8
8
|
# kobe shell control
|
|
9
9
|
|
|
@@ -85,13 +85,20 @@ kobe api fan-out --repo "$PWD" --agents claude:2,codex:1 --prompt "<prompt>"
|
|
|
85
85
|
# (sender + reply command); --plain sends verbatim.
|
|
86
86
|
kobe api send --task-id <id> --prompt "<complete next turn>"
|
|
87
87
|
|
|
88
|
+
# A task can hold several chat tabs. Enumerate them first (inspect's .tabs is
|
|
89
|
+
# the sidebar's tab snapshot: id, kind, vendor, lastTitle), then address one:
|
|
90
|
+
kobe api inspect --task-id <id>
|
|
91
|
+
kobe api send --task-id <id> --tab tab-3 --prompt "<turn>" # exact alive tab
|
|
92
|
+
kobe api send --task-id <id> --tab new --prompt "<turn>" # fresh engine tab
|
|
93
|
+
|
|
88
94
|
kobe api get-task --task-id <id>
|
|
89
95
|
kobe api collect --task-ids <id1>,<id2>,<id3> --pretty
|
|
90
96
|
kobe api list --pretty
|
|
91
97
|
```
|
|
92
98
|
|
|
93
99
|
`.running` means the task's canonical Hosted PTY engine session is alive.
|
|
94
|
-
`send` reuses it or auto-starts it when absent
|
|
100
|
+
`send` reuses it or auto-starts it when absent; omitting `--tab` targets that
|
|
101
|
+
canonical engine tab.
|
|
95
102
|
|
|
96
103
|
## Terminal panes
|
|
97
104
|
|
|
@@ -108,6 +115,10 @@ kobe api pane-open --placement tab --title logs --command "tail -f app.log"
|
|
|
108
115
|
|
|
109
116
|
# Close panes you opened, by their --title (engine panes are never closed).
|
|
110
117
|
kobe api pane-close --title logs
|
|
118
|
+
|
|
119
|
+
# Toast a one-liner in every attached kobe UI — surface "done / needs input /
|
|
120
|
+
# error" moments without touching any session (kinds get severity styling).
|
|
121
|
+
kobe api notify --title "build green, artifacts in dist/" --kind done
|
|
111
122
|
```
|
|
112
123
|
|
|
113
124
|
Defaults: the caller's own task (`$KOBE_TASK_ID`, then the active task),
|
package/package.json
CHANGED