@meraki-digital/agent-init 1.0.0 → 1.0.1
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/cli.js +3 -3
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -108,11 +108,11 @@ async function runUpdate() {
|
|
|
108
108
|
{ path: 'instructions', target: `${STANDARDS_DIR}/instructions` },
|
|
109
109
|
];
|
|
110
110
|
|
|
111
|
-
// Detect skills folder
|
|
111
|
+
// Detect skills folder (extra ../ because it's inside .amp/ or .claude/)
|
|
112
112
|
if (existsSync('.amp/skills')) {
|
|
113
|
-
expectedLinks.push({ path: '.amp/skills', target:
|
|
113
|
+
expectedLinks.push({ path: '.amp/skills', target: `../${STANDARDS_DIR}/skills` });
|
|
114
114
|
} else if (existsSync('.claude/skills')) {
|
|
115
|
-
expectedLinks.push({ path: '.claude/skills', target:
|
|
115
|
+
expectedLinks.push({ path: '.claude/skills', target: `../${STANDARDS_DIR}/skills` });
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
let allGood = true;
|