simmer-automaton 0.6.0 → 0.6.1
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 -2
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -228,11 +228,11 @@ async function executeSkills(selectedSlugs, workspaceDir, logger) {
|
|
|
228
228
|
logger.info(`[simmer] Executing ${tasks.length} skills: ${tasks.map((t) => t.slug).join(", ")}`);
|
|
229
229
|
const results = await Promise.allSettled(tasks.map(async (task) => {
|
|
230
230
|
const skillDir = `${cwd}/skills/${task.slug}`;
|
|
231
|
-
const argv = ["python3", `${skillDir}/${task.entrypoint}`, "--live"
|
|
231
|
+
const argv = ["python3", `${skillDir}/${task.entrypoint}`, "--live"];
|
|
232
232
|
try {
|
|
233
233
|
const result = await runtime.system.runCommandWithTimeout(argv, {
|
|
234
234
|
timeoutMs: SKILL_TIMEOUT_MS,
|
|
235
|
-
cwd
|
|
235
|
+
cwd,
|
|
236
236
|
env,
|
|
237
237
|
});
|
|
238
238
|
if (result.code === 0) {
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -283,11 +283,11 @@ async function executeSkills(
|
|
|
283
283
|
const results = await Promise.allSettled(
|
|
284
284
|
tasks.map(async (task) => {
|
|
285
285
|
const skillDir = `${cwd}/skills/${task.slug}`;
|
|
286
|
-
const argv = ["python3", `${skillDir}/${task.entrypoint}`, "--live"
|
|
286
|
+
const argv = ["python3", `${skillDir}/${task.entrypoint}`, "--live"];
|
|
287
287
|
try {
|
|
288
288
|
const result = await runtime.system.runCommandWithTimeout(argv, {
|
|
289
289
|
timeoutMs: SKILL_TIMEOUT_MS,
|
|
290
|
-
cwd
|
|
290
|
+
cwd,
|
|
291
291
|
env,
|
|
292
292
|
});
|
|
293
293
|
if (result.code === 0) {
|