@nahisaho/shikigami 1.2.8 → 1.2.9

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/.vscode/mcp.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "shikigami": {
4
4
  "type": "stdio",
5
5
  "command": "node",
6
- "args": ["${workspaceFolder}/shikigami/mcp-server/dist/index.js"]
6
+ "args": ["${workspaceFolder}/mcp-server/dist/index.js"]
7
7
  }
8
8
  }
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nahisaho/shikigami",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
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",
package/scripts/cli.js CHANGED
File without changes
package/scripts/init.js CHANGED
@@ -20,9 +20,7 @@ const itemsToCopy = [
20
20
  { src: 'AGENTS.md', dest: 'AGENTS.md', type: 'file' },
21
21
  ];
22
22
 
23
- const itemsToCreate = [
24
- { dest: 'reports', type: 'dir' },
25
- ];
23
+ const itemsToCreate = [];
26
24
 
27
25
  /**
28
26
  * Recursively copy directory
@@ -75,7 +73,6 @@ This command copies SHIKIGAMI files to your current directory:
75
73
  - .vscode/ (MCP configuration)
76
74
  - mcp-server/ (MCP server source)
77
75
  - AGENTS.md (Workflow documentation)
78
- - reports/ (Output directory)
79
76
  `);
80
77
  }
81
78