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.
- package/bin/cli.js +2 -1
- 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'
|
|
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
|