@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meraki-digital/agent-init",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Bootstrap repositories with Meraki agent infrastructure",
5
5
  "type": "module",
6
6
  "bin": {
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: `${STANDARDS_DIR}/skills` });
113
+ expectedLinks.push({ path: '.amp/skills', target: `../${STANDARDS_DIR}/skills` });
114
114
  } else if (existsSync('.claude/skills')) {
115
- expectedLinks.push({ path: '.claude/skills', target: `${STANDARDS_DIR}/skills` });
115
+ expectedLinks.push({ path: '.claude/skills', target: `../${STANDARDS_DIR}/skills` });
116
116
  }
117
117
 
118
118
  let allGood = true;