@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.
@@ -251,6 +251,7 @@ var DAEMON_CHANNELS = [
251
251
  "transcript.activity",
252
252
  "session.deliver",
253
253
  "tab.open",
254
+ "tab.close",
254
255
  "engine.lifecycle",
255
256
  "notice.event",
256
257
  "usage.snapshot",
@@ -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: 10 — bump in lockstep with KOBE_SKILL_VERSION (src/lib/skill-install.ts). -->
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; splits nest at most 4 levels deep and fall back to a tab past that.
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@sma1lboy/kobe",
4
- "version": "0.8.67",
4
+ "version": "0.8.68",
5
5
  "description": "TUI orchestrator for Claude Code (codename)",
6
6
  "type": "module",
7
7
  "packageManager": "bun@1.3.13",