clawdock 0.2.6 → 0.2.7
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/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -438,9 +438,10 @@ program.command("run <bundle>").description("Pull and run an agent locally").opt
|
|
|
438
438
|
authProfiles[provider] = { type: "api-key", apiKey };
|
|
439
439
|
fs.writeFileSync(authProfilesPath, JSON.stringify(authProfiles, null, 2));
|
|
440
440
|
}
|
|
441
|
+
const introMessage = "Hello! I just pulled you from ClawDock. Introduce yourself.";
|
|
441
442
|
const child = spawn(
|
|
442
443
|
runtimeBin,
|
|
443
|
-
["agent", "--agent", agentName, "--
|
|
444
|
+
["agent", "--agent", agentName, "--local", "-m", introMessage],
|
|
444
445
|
{
|
|
445
446
|
stdio: "inherit",
|
|
446
447
|
env: { ...process.env },
|