@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 CHANGED
@@ -8576,7 +8576,8 @@ async function installSystemSkills() {
8576
8576
  if (alreadyInstalled)
8577
8577
  continue;
8578
8578
  try {
8579
- await installSkillFromPath(sourcePath);
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 installSkillFromPath(sourcePath);
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sulala/agent-os",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },