@cuewright/skills 0.2.2 → 0.2.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/package.json +1 -1
- package/src/utils/symlink.js +1 -1
package/package.json
CHANGED
package/src/utils/symlink.js
CHANGED
|
@@ -190,7 +190,7 @@ export async function cleanupLegacyDirectories(skillsDir, manifestSkillNames, pr
|
|
|
190
190
|
const referenceFiles = entries.filter(e => e !== 'SKILL.md');
|
|
191
191
|
|
|
192
192
|
if (referenceFiles.length > 0 && !dryRun) {
|
|
193
|
-
const refDir = join(projectRoot, '.claude', 'skills', 'arch', 'references',
|
|
193
|
+
const refDir = join(projectRoot, '.claude', 'skills', 'arch', 'references', cwName);
|
|
194
194
|
try {
|
|
195
195
|
await mkdir(refDir, { recursive: true });
|
|
196
196
|
for (const file of referenceFiles) {
|