@sma1lboy/kobe 0.5.29 → 0.6.1

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.
Files changed (2) hide show
  1. package/dist/cli/index.js +15495 -44132
  2. package/package.json +4 -7
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.5.29",
4
+ "version": "0.6.1",
5
5
  "description": "TUI orchestrator for Claude Code (codename)",
6
6
  "type": "module",
7
7
  "packageManager": "bun@1.3.13",
@@ -25,17 +25,14 @@
25
25
  },
26
26
  "scripts": {
27
27
  "dev": "env KOBE_DEV=1 bun --preload @opentui/solid/preload --conditions=browser ./src/cli/index.ts",
28
- "dev:test": "bun run scripts/dev-fixture.ts && env KOBE_DEV=1 KOBE_TEST_ENGINE=dev-fake KOBE_HOME_DIR=$PWD/.dev-fixture/home bun --preload @opentui/solid/preload --conditions=browser ./src/cli/index.ts",
29
- "dev:test:reset": "bun run scripts/dev-fixture.ts --reset",
30
- "dev:sandbox": "mkdir -p .dev-sandbox/home && env KOBE_DEV=1 KOBE_HOME_DIR=$PWD/.dev-sandbox/home bun --preload @opentui/solid/preload --conditions=browser ./src/cli/index.ts",
31
- "dev:sandbox:reset": "bun run scripts/dev-sandbox.ts --reset",
28
+ "dev:sandbox": "mkdir -p .dev-sandbox/home && env KOBE_DEV=1 KOBE_HOME_DIR=$PWD/.dev-sandbox/home KOBE_TMUX_SOCKET=kobe-sandbox bun --preload @opentui/solid/preload --conditions=browser ./src/cli/index.ts",
29
+ "dev:sandbox:reset": "env KOBE_TMUX_SOCKET=kobe-sandbox bun ./src/cli/index.ts kill-sessions",
32
30
  "build": "bun run scripts/build.ts",
33
31
  "compile": "bun run scripts/compile.ts",
34
32
  "typecheck": "tsc --noEmit",
35
33
  "test": "bun run test:fast && bun run test:socket",
36
34
  "test:fast": "vitest run --passWithNoTests",
37
- "test:socket": "KOBE_INCLUDE_SOCKET=1 vitest run test/daemon test/orchestrator/bridge.test.ts --pool forks --minWorkers=1 --maxWorkers=1 --passWithNoTests",
38
- "test:behavior": "KOBE_INCLUDE_BEHAVIOR=1 vitest run test/behavior --pool forks --minWorkers=1 --maxWorkers=1 --passWithNoTests",
35
+ "test:socket": "KOBE_INCLUDE_SOCKET=1 vitest run test/daemon --pool forks --minWorkers=1 --maxWorkers=1 --passWithNoTests",
39
36
  "lint": "biome check .",
40
37
  "postinstall": "bun run scripts/check-preview-deps.ts || true",
41
38
  "prepublishOnly": "bun run typecheck && bun run build"