@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuewright/skills",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "CLI installer for the Cuewright skills framework",
5
5
  "type": "module",
6
6
  "engines": {
@@ -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', unprefixed);
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) {