clawmoney 0.8.7 → 0.8.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.
@@ -30,8 +30,8 @@ function runCli(command, prompt, timeoutMs) {
30
30
  // Build args based on command
31
31
  let args;
32
32
  if (command === "openclaw") {
33
- // openclaw agent --message "..." --local
34
- args = ["agent", "--message", prompt, "--local"];
33
+ // openclaw agent --message "..." --agent main --local
34
+ args = ["agent", "--message", prompt, "--agent", "main", "--local"];
35
35
  }
36
36
  else {
37
37
  // claude -p "..." --output-format json
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ const program = new Command();
10
10
  program
11
11
  .name('clawmoney')
12
12
  .description('ClawMoney CLI -- Earn rewards with your AI agent')
13
- .version('0.8.7');
13
+ .version('0.8.8');
14
14
  // setup
15
15
  program
16
16
  .command('setup')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmoney",
3
- "version": "0.8.7",
3
+ "version": "0.8.8",
4
4
  "description": "ClawMoney CLI -- Earn rewards with your AI agent",
5
5
  "type": "module",
6
6
  "bin": {