@sulala/agent-os 0.1.13 → 0.1.14
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 +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -8576,7 +8576,8 @@ async function installSystemSkills() {
|
|
|
8576
8576
|
if (alreadyInstalled)
|
|
8577
8577
|
continue;
|
|
8578
8578
|
try {
|
|
8579
|
-
await
|
|
8579
|
+
await mkdir3(skillsDir, { recursive: true });
|
|
8580
|
+
await cp(sourcePath, destPath, { recursive: true });
|
|
8580
8581
|
installed += 1;
|
|
8581
8582
|
} catch (err) {
|
|
8582
8583
|
console.error(`[skills] Install system skill ${id} failed:`, err);
|
package/dist/index.js
CHANGED
|
@@ -12803,7 +12803,8 @@ async function installSystemSkills() {
|
|
|
12803
12803
|
if (alreadyInstalled)
|
|
12804
12804
|
continue;
|
|
12805
12805
|
try {
|
|
12806
|
-
await
|
|
12806
|
+
await mkdir3(skillsDir, { recursive: true });
|
|
12807
|
+
await cp(sourcePath, destPath, { recursive: true });
|
|
12807
12808
|
installed += 1;
|
|
12808
12809
|
} catch (err) {
|
|
12809
12810
|
console.error(`[skills] Install system skill ${id} failed:`, err);
|