@sma1lboy/kobe 0.6.1-experimental.0 → 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.
- package/dist/cli/index.js +2 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -182,7 +182,7 @@ var init_package = __esm(() => {
|
|
|
182
182
|
package_default = {
|
|
183
183
|
$schema: "https://json.schemastore.org/package.json",
|
|
184
184
|
name: "@sma1lboy/kobe",
|
|
185
|
-
version: "0.6.1
|
|
185
|
+
version: "0.6.1",
|
|
186
186
|
description: "TUI orchestrator for Claude Code (codename)",
|
|
187
187
|
type: "module",
|
|
188
188
|
packageManager: "bun@1.3.13",
|
|
@@ -4357,7 +4357,7 @@ function opsPaneCommand(args) {
|
|
|
4357
4357
|
if (args.taskId && args.claudePaneId) {
|
|
4358
4358
|
const inv = args.cliInvocation.map(shellQuote).join(" ");
|
|
4359
4359
|
const vendorFlag = args.vendor ? ` --vendor ${shellQuote(args.vendor)}` : "";
|
|
4360
|
-
return
|
|
4360
|
+
return `KOBE_FILETREE_WATCH=1 ${inv} ops --task-id ${shellQuote(args.taskId)} --worktree ${shellQuote(args.cwd)} ` + `--target-pane ${shellQuote(args.claudePaneId)}${vendorFlag} || { ${fallbackOpsScript(args.cwd)}; }`;
|
|
4361
4361
|
}
|
|
4362
4362
|
return fallbackOpsScript(args.cwd);
|
|
4363
4363
|
}
|
package/package.json
CHANGED