@nahisaho/shikigami 1.2.7 → 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.
@@ -490,6 +490,9 @@ https://example.com/reference1
490
490
 
491
491
  ## まとめ
492
492
  ## 参考資料
493
+ <!-- URL必須: すべての参考資料にURLを含めること -->
494
+ - [資料名1](https://example.com/url1)
495
+ - [資料名2](https://example.com/url2)
493
496
  ```
494
497
 
495
498
  #### チュートリアル記事
@@ -642,7 +645,9 @@ https://example.com/reference1
642
645
  [まとめ]
643
646
 
644
647
  ## 参考資料
645
- [情報源リスト]
648
+ <!-- URL必須: すべての情報源にURLを含めること -->
649
+ - [情報源1](https://example.com/source1)
650
+ - [情報源2](https://example.com/source2)
646
651
  ```
647
652
 
648
653
  ---
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/AGENTS.md CHANGED
@@ -334,8 +334,14 @@ cd mcp-server && npm start
334
334
 
335
335
  ### Citation(引用)ルール
336
336
 
337
- **すべてのレポートには必ず参考文献セクションを含め、URLを付与すること。**
337
+ **⚠️ すべてのレポートには必ず参考文献/参考資料セクションを含め、URLを付与すること。**
338
338
 
339
+ **禁止事項**:
340
+ - ❌ URLなしの参考文献
341
+ - ❌ 「参考資料: 各種Web記事」のような曖昧な記載
342
+ - ❌ 出典不明のデータ・数値
343
+
344
+ **必須フォーマット**:
339
345
  ```markdown
340
346
  ## 参考文献(References)
341
347
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nahisaho/shikigami",
3
- "version": "1.2.7",
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