spawn-skill 1.3.4 → 1.3.5

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.
Files changed (2) hide show
  1. package/bin/cli.js +2 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -570,8 +570,9 @@ async function askMoltbot(message) {
570
570
  }
571
571
 
572
572
  // Build command based on whether we're using npx or direct path
573
+ // Use --session-id for non-interactive mode
573
574
  let proc;
574
- const baseArgs = ['agent', '--message', message, '--thinking', 'high'${agentFlag}];
575
+ const baseArgs = ['agent', '--message', message, '--thinking', 'high', '--session-id', 'spawn-session'];
575
576
 
576
577
  if (cmd.startsWith('npx ')) {
577
578
  // npx moltbot or npx clawdbot
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spawn-skill",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "Connect your AI agent to Spawn.wtf",
5
5
  "bin": {
6
6
  "spawn-skill": "./bin/cli.js"