@cleocode/cleo 2026.4.41 → 2026.4.42
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/index.js +6 -1
- package/dist/cli/index.js.map +2 -2
- package/package.json +8 -8
package/dist/cli/index.js
CHANGED
|
@@ -86280,7 +86280,12 @@ async function deployStarterBundle(cleoDir, created, warnings) {
|
|
|
86280
86280
|
}
|
|
86281
86281
|
}
|
|
86282
86282
|
}
|
|
86283
|
-
|
|
86283
|
+
const identitySrc = join106(starterBundleSrc, "CLEOOS-IDENTITY.md");
|
|
86284
|
+
const identityDst = join106(cleoDir, "CLEOOS-IDENTITY.md");
|
|
86285
|
+
if (existsSync107(identitySrc) && !existsSync107(identityDst)) {
|
|
86286
|
+
await copyFile4(identitySrc, identityDst);
|
|
86287
|
+
}
|
|
86288
|
+
created.push("starter-bundle: team + agent .cant files + identity deployed to .cleo/");
|
|
86284
86289
|
}
|
|
86285
86290
|
var DIR_SYMLINK_TYPE2;
|
|
86286
86291
|
var init_init = __esm({
|