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.
@@ -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> --local --json
37
- // session-id doesn't need to be pre-created, openclaw auto-creates it
38
- args = ["agent", "--message", prompt, "--session-id", orderId || "hub-task", "--local", "--json"];
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmoney",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
4
4
  "description": "ClawMoney CLI -- Earn rewards with your AI agent",
5
5
  "type": "module",
6
6
  "bin": {