@sma1lboy/kobe 0.8.29 → 0.8.32
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 +392 -391
- package/dist/cli/pty-host-node.mjs +7 -3
- package/package.json +2 -2
|
@@ -236,8 +236,8 @@ function defaultPtyHostPidPath(homeDir = process.env.KOBE_HOME_DIR ?? homedir())
|
|
|
236
236
|
return override;
|
|
237
237
|
return join(homeDir, ".kobe", "pty.pid");
|
|
238
238
|
}
|
|
239
|
-
// ../kobe-
|
|
240
|
-
var
|
|
239
|
+
// ../kobe-plugin-sdk/src/contract.ts
|
|
240
|
+
var DAEMON_CHANNELS = [
|
|
241
241
|
"task.snapshot",
|
|
242
242
|
"issue.snapshot",
|
|
243
243
|
"active-task",
|
|
@@ -253,8 +253,12 @@ var CHANNEL_NAMES = [
|
|
|
253
253
|
"tab.open",
|
|
254
254
|
"engine.lifecycle",
|
|
255
255
|
"notice.event",
|
|
256
|
-
"usage.snapshot"
|
|
256
|
+
"usage.snapshot",
|
|
257
|
+
"ui.prompt"
|
|
257
258
|
];
|
|
259
|
+
|
|
260
|
+
// ../kobe-daemon/src/daemon/channels.ts
|
|
261
|
+
var CHANNEL_NAMES = DAEMON_CHANNELS;
|
|
258
262
|
var CHANNEL_NAME_SET = new Set(CHANNEL_NAMES);
|
|
259
263
|
|
|
260
264
|
// ../kobe-daemon/src/daemon/protocol.ts
|
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.
|
|
4
|
+
"version": "0.8.32",
|
|
5
5
|
"description": "TUI orchestrator for Claude Code (codename)",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"packageManager": "bun@1.3.13",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@biomejs/biome": "1.9.4",
|
|
72
|
-
"@sma1lboy/kobe-daemon": "0.7.
|
|
72
|
+
"@sma1lboy/kobe-daemon": "0.7.12",
|
|
73
73
|
"@tsconfig/bun": "1.0.10",
|
|
74
74
|
"@types/bun": "1.3.14",
|
|
75
75
|
"@types/node": "25.6.2",
|