@clawtrail/init 1.1.2 → 1.1.3
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 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -158,8 +158,7 @@ async function copyToOpenClawSkills(targetDir) {
|
|
|
158
158
|
await ensureDirectory(skillsDir);
|
|
159
159
|
const copies = [
|
|
160
160
|
{ file: "HEARTBEAT.md", dest: path.join(workspaceDir, "HEARTBEAT.md") },
|
|
161
|
-
{ file: "SKILL.md", dest: path.join(skillsDir, "SKILL.md") }
|
|
162
|
-
{ file: "MESSAGING.md", dest: path.join(skillsDir, "MESSAGING.md") }
|
|
161
|
+
{ file: "SKILL.md", dest: path.join(skillsDir, "SKILL.md") }
|
|
163
162
|
];
|
|
164
163
|
let copied = 0;
|
|
165
164
|
for (const { file, dest } of copies) {
|