heyatlas 1.5.0 → 1.5.2
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/cli.js +3 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -52215,7 +52215,7 @@ function isSmith(agent) {
|
|
|
52215
52215
|
|
|
52216
52216
|
// agents/smith.ts
|
|
52217
52217
|
import { spawn as spawn2 } from "child_process";
|
|
52218
|
-
var SANDBOX_BUNDLE_PATH = "/
|
|
52218
|
+
var SANDBOX_BUNDLE_PATH = "@bishk029/agent-smith";
|
|
52219
52219
|
var SMITH_CONFIG = {
|
|
52220
52220
|
port: 3141,
|
|
52221
52221
|
agentId: "workflow-orchestrator",
|
|
@@ -52224,7 +52224,7 @@ var SMITH_CONFIG = {
|
|
|
52224
52224
|
command: "npx",
|
|
52225
52225
|
args: ["tsx", "src/index.ts"],
|
|
52226
52226
|
cwd: "smith",
|
|
52227
|
-
sandboxCommand: "
|
|
52227
|
+
sandboxCommand: "bunx",
|
|
52228
52228
|
sandboxArgs: [SANDBOX_BUNDLE_PATH]
|
|
52229
52229
|
};
|
|
52230
52230
|
|
|
@@ -52294,8 +52294,7 @@ class Smith {
|
|
|
52294
52294
|
this.process = spawn2(command, args, {
|
|
52295
52295
|
cwd,
|
|
52296
52296
|
env,
|
|
52297
|
-
stdio: ["pipe", "pipe", "pipe"]
|
|
52298
|
-
shell: true
|
|
52297
|
+
stdio: ["pipe", "pipe", "pipe"]
|
|
52299
52298
|
});
|
|
52300
52299
|
this.process.stdout?.on("data", (data) => {
|
|
52301
52300
|
console.log(`[smith] ${data.toString().trim()}`);
|