clawmoney 0.9.7 → 0.9.8
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/hub/executor.js +3 -3
- package/package.json +1 -1
package/dist/hub/executor.js
CHANGED
|
@@ -33,9 +33,9 @@ function runCli(command, prompt, timeoutMs, orderId) {
|
|
|
33
33
|
// Build args based on command
|
|
34
34
|
let args;
|
|
35
35
|
if (command === "openclaw") {
|
|
36
|
-
// openclaw agent --message "..." --session-id <order_id> --
|
|
37
|
-
//
|
|
38
|
-
args = ["agent", "--message", prompt, "--session-id", orderId || "hub-task", "--
|
|
36
|
+
// openclaw agent --message "..." --session-id <order_id> --json
|
|
37
|
+
// Route through Gateway (not --local) so skills like nano-banana-pro are available
|
|
38
|
+
args = ["agent", "--message", prompt, "--session-id", orderId || "hub-task", "--json"];
|
|
39
39
|
}
|
|
40
40
|
else {
|
|
41
41
|
// claude -p "..." --output-format json
|