@sma1lboy/kobe 0.8.67 → 0.8.68
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 +372 -372
- package/dist/cli/pty-host-node.mjs +1 -0
- package/dist/skills/kobe/SKILL.md +6 -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: 11 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
|
|
7
7
|
|
|
8
8
|
# kobe shell control
|
|
9
9
|
|
|
@@ -105,11 +105,15 @@ headless:
|
|
|
105
105
|
kobe api pane-open --command "btop"
|
|
106
106
|
kobe api pane-open --direction down --command "watch -n1 git status -sb"
|
|
107
107
|
kobe api pane-open --placement tab --title logs --command "tail -f app.log"
|
|
108
|
+
|
|
109
|
+
# Close panes you opened, by their --title (engine panes are never closed).
|
|
110
|
+
kobe api pane-close --title logs
|
|
108
111
|
```
|
|
109
112
|
|
|
110
113
|
Defaults: the caller's own task (`$KOBE_TASK_ID`, then the active task),
|
|
111
114
|
`--placement split`, `--direction right`. Alternate right/down to build a
|
|
112
|
-
grid;
|
|
115
|
+
grid; screen size bounds splitting — a split that would shrink any pane
|
|
116
|
+
below the minimum usable size (20×6 cells) falls back to a tab.
|
|
113
117
|
Panes land in the USER'S live workspace — open them when asked (monitors,
|
|
114
118
|
logs, dashboards), don't scatter panes for work `add`/`fan-out` should own.
|
|
115
119
|
|
package/package.json
CHANGED