@sma1lboy/kobe 0.8.79 → 0.8.80
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 +166 -166
- package/dist/skills/kobe/SKILL.md +6 -1
- 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: 19 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
|
|
7
7
|
|
|
8
8
|
# kobe shell control
|
|
9
9
|
|
|
@@ -107,6 +107,7 @@ the first row that fits:
|
|
|
107
107
|
| "split", "side by side", "keep an eye on X while…" | a new region in the CURRENT tab | `kobe api pane-open --command "…"` |
|
|
108
108
|
| names a tab: "tell the agent in tab 3" | that exact tab | `kobe api send --task-id <id> --tab tab-3 --prompt "…"` |
|
|
109
109
|
| a LOCATION word: "in this workspace/worktree/checkout", "on this branch", "here", "same task" | THIS task, a NEW Terminal Tab | `kobe api send --task-id "$KOBE_TASK_ID" --tab new --prompt "…"` |
|
|
110
|
+
| names an ENGINE for the same files: "let codex take over here", "try this one with claude instead" | THIS task, a new tab pinned to that engine | `kobe api send --task-id "$KOBE_TASK_ID" --tab new --vendor codex --prompt "…"` |
|
|
110
111
|
| **anything else — no row above matched** | a NEW task — new worktree + branch | `kobe api add --repo "$PWD" --prompt "…"` |
|
|
111
112
|
|
|
112
113
|
Order is the tiebreak: a count ("3 ways in this workspace") beats a location
|
|
@@ -174,6 +175,10 @@ kobe api send --prompt "succeeded: <one line> (branch <final branch>)"
|
|
|
174
175
|
kobe api inspect --task-id <id>
|
|
175
176
|
kobe api send --task-id <id> --tab tab-3 --prompt "<turn>" # exact alive tab
|
|
176
177
|
kobe api send --task-id <id> --tab new --prompt "<turn>" # fresh engine tab
|
|
178
|
+
# Same worktree, DIFFERENT agent — the API twin of the TUI's ctrl+e pick. The
|
|
179
|
+
# engine is pinned to that tab (survives restarts, unaffected by a later
|
|
180
|
+
# set-vendor) and the task's own vendor is left alone. --tab new only.
|
|
181
|
+
kobe api send --task-id <id> --tab new --vendor codex --prompt "<turn>"
|
|
177
182
|
|
|
178
183
|
kobe api get-task --task-id <id>
|
|
179
184
|
kobe api collect --task-ids <id1>,<id2>,<id3> --pretty
|
package/package.json
CHANGED