@nahisaho/shikigami 1.1.0 → 1.1.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nahisaho/shikigami",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "GitHub Copilot Agent Skills for Deep Research & Consulting - AI-Powered Research Assistant with 50+ Consulting Frameworks",
5
5
  "keywords": [
6
6
  "github-copilot",
@@ -17,7 +17,9 @@ if (!isNpmInstall) {
17
17
  }
18
18
 
19
19
  const packageDir = path.resolve(__dirname, '..');
20
- const projectRoot = path.resolve(packageDir, '..', '..');
20
+ // For scoped packages (@nahisaho/shikigami), we need to go up 3 levels:
21
+ // scripts -> @nahisaho/shikigami -> @nahisaho -> node_modules -> project root
22
+ const projectRoot = path.resolve(packageDir, '..', '..', '..');
21
23
 
22
24
  const itemsToCopy = [
23
25
  { src: '.github', dest: '.github', type: 'dir' },