@sma1lboy/kobe 0.2.1 → 0.2.2
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8280,7 +8280,7 @@ var init_package = __esm(() => {
|
|
|
8280
8280
|
package_default = {
|
|
8281
8281
|
$schema: "https://json.schemastore.org/package.json",
|
|
8282
8282
|
name: "@sma1lboy/kobe",
|
|
8283
|
-
version: "0.2.
|
|
8283
|
+
version: "0.2.2",
|
|
8284
8284
|
description: "TUI orchestrator for Claude Code (codename)",
|
|
8285
8285
|
type: "module",
|
|
8286
8286
|
packageManager: "bun@1.3.13",
|
|
@@ -15617,7 +15617,7 @@ function Chat(props) {
|
|
|
15617
15617
|
if (!id)
|
|
15618
15618
|
return;
|
|
15619
15619
|
const current = permissionMode() ?? "default";
|
|
15620
|
-
const next = current === "default" ? "acceptEdits" : current === "acceptEdits" ? "plan" : "default";
|
|
15620
|
+
const next = current === "default" ? "acceptEdits" : current === "acceptEdits" ? "plan" : current === "plan" ? "bypassPermissions" : "default";
|
|
15621
15621
|
props.orchestrator.setPermissionMode(id, next).catch((err) => {
|
|
15622
15622
|
console.error("[kobe] setPermissionMode failed:", err);
|
|
15623
15623
|
});
|
package/package.json
CHANGED