simmer-automaton 0.7.0 → 0.7.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 +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -276,7 +276,7 @@ async function checkAndUpdateSkills(skillUpdates, workspaceDir, logger) {
|
|
|
276
276
|
logger.info(`[simmer] ${skillUpdates.length} skill update(s) available: ${skillUpdates.map((u) => `${u.slug} ${u.current}→${u.latest}`).join(", ")}`);
|
|
277
277
|
for (const update of skillUpdates) {
|
|
278
278
|
try {
|
|
279
|
-
const result = await runtime.system.runCommandWithTimeout(["npx", "clawhub@latest", "install", update.slug], { timeoutMs: INSTALL_TIMEOUT_MS, cwd });
|
|
279
|
+
const result = await runtime.system.runCommandWithTimeout(["npx", "clawhub@latest", "install", update.slug, "--force"], { timeoutMs: INSTALL_TIMEOUT_MS, cwd });
|
|
280
280
|
if (result.code === 0) {
|
|
281
281
|
logger.info(`[simmer] Updated ${update.slug} to ${update.latest}`);
|
|
282
282
|
}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -332,7 +332,7 @@ async function checkAndUpdateSkills(
|
|
|
332
332
|
for (const update of skillUpdates) {
|
|
333
333
|
try {
|
|
334
334
|
const result = await runtime.system.runCommandWithTimeout(
|
|
335
|
-
["npx", "clawhub@latest", "install", update.slug],
|
|
335
|
+
["npx", "clawhub@latest", "install", update.slug, "--force"],
|
|
336
336
|
{ timeoutMs: INSTALL_TIMEOUT_MS, cwd },
|
|
337
337
|
);
|
|
338
338
|
if (result.code === 0) {
|