@sma1lboy/kobe 0.5.9 → 0.5.11
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/README.md +26 -2
- package/dist/bin/kobed.js +112 -10
- package/dist/cli/index.js +630 -277
- package/package.json +5 -3
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.
|
|
4
|
+
"version": "0.5.11",
|
|
5
5
|
"description": "TUI orchestrator for Claude Code (codename)",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"packageManager": "bun@1.3.13",
|
|
@@ -31,8 +31,10 @@
|
|
|
31
31
|
"build": "bun run scripts/build.ts",
|
|
32
32
|
"compile": "bun run scripts/compile.ts",
|
|
33
33
|
"typecheck": "tsc --noEmit",
|
|
34
|
-
"test": "
|
|
35
|
-
"test:
|
|
34
|
+
"test": "bun run test:fast && bun run test:socket",
|
|
35
|
+
"test:fast": "vitest run --passWithNoTests",
|
|
36
|
+
"test:socket": "KOBE_INCLUDE_SOCKET=1 vitest run test/daemon test/orchestrator/bridge.test.ts --pool forks --minWorkers=1 --maxWorkers=1 --passWithNoTests",
|
|
37
|
+
"test:behavior": "KOBE_INCLUDE_BEHAVIOR=1 vitest run test/behavior --pool forks --minWorkers=1 --maxWorkers=1 --passWithNoTests",
|
|
36
38
|
"lint": "biome check .",
|
|
37
39
|
"prepublishOnly": "bun run typecheck && bun run build"
|
|
38
40
|
},
|