@nahisaho/shikigami 1.16.3 → 1.16.5

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/AGENTS.md CHANGED
@@ -768,28 +768,40 @@ cd mcp-server && npm start
768
768
 
769
769
  ### 新規プロジェクト開始ワークフロー
770
770
 
771
+ > **⛔ 絶対ルール**: プロジェクトフォルダは**必ず`npx shikigami new`コマンドで作成**すること。
772
+ > **手動でフォルダを作成することは禁止**。mkdirコマンドやファイル操作でのフォルダ作成は行わない。
773
+
771
774
  **「新しいプロジェクトを開始」「新規リサーチを開始」「○○について調べて」と言われた場合**:
772
775
 
773
776
  1. **プロジェクト名を確認**(なければユーザーに質問)
774
- 2. **CLIコマンドを実行**: `npx shikigami new <プロジェクト名>`
777
+ 2. **⚠️ 必ずCLIコマンドを実行**: `npx shikigami new <プロジェクト名>`
775
778
  3. **生成されたディレクトリを確認**: `outputs/project-XXX-<名前>/`
776
779
  4. **manifest.yamlを確認・編集**(必要に応じて)
777
780
  5. **Phase 0(ナレッジ継承)** → **Phase 1(目的探索)** へ進む
778
781
 
779
782
  **プロジェクトフォルダ命名規則**:
780
783
  ```
781
- project-XXX[-name]/
784
+ outputs/project-XXX[-name]/
782
785
  ```
783
786
 
784
787
  | パターン | コマンド | 結果 |
785
788
  |---------|---------|------|
786
- | 名前なし | `npx shikigami new` | `project-001/` |
787
- | 名前あり | `npx shikigami new ai-market` | `project-001-ai-market/` |
789
+ | 名前なし | `npx shikigami new` | `outputs/project-001/` |
790
+ | 名前あり | `npx shikigami new ai-market` | `outputs/project-001-ai-market/` |
788
791
 
792
+ - **保存場所**: 必ず `outputs/` ディレクトリ配下(ルート直下は禁止)
789
793
  - `XXX`: 3桁の自動連番(001, 002, 003...)
790
794
  - `name`: 英数字・ハイフンのみ(スペース・日本語不可)
791
795
  - 既存プロジェクトをスキャンして次の番号を自動決定
792
796
 
797
+ **❌ 禁止される命名**:
798
+ | 禁止パターン | 理由 |
799
+ |-------------|------|
800
+ | `ai-for-science-proposal/` | 連番なし、outputs/配下でない |
801
+ | `Project-15/` | 小文字でない、3桁パディングなし |
802
+ | `my-research/` | 連番なし、outputs/配下でない |
803
+ | ルート直下にフォルダ作成 | 必ずoutputs/配下に作成 |
804
+
793
805
  **コマンド例**:
794
806
  ```bash
795
807
  npx shikigami new ai-market-research
package/CHANGELOG.md CHANGED
@@ -5,6 +5,22 @@ All notable changes to SHIKIGAMI will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.16.5] - 2026-01-18
9
+
10
+ ### Changed
11
+
12
+ - **postinstall.js**: `npm install`時に`outputs/`ディレクトリを自動作成しないよう変更
13
+ - プロジェクト作成は`npx shikigami new`で明示的に行う設計に統一
14
+
15
+ ## [1.16.4] - 2026-01-18
16
+
17
+ ### Changed
18
+
19
+ - **AGENTS.md**: プロジェクトフォルダ作成ルールを強化
20
+ - ⛔ CLIコマンド必須、手動フォルダ作成を明確に禁止
21
+ - `outputs/` パス必須を明記
22
+ - 禁止される命名パターンのテーブルを追加
23
+
8
24
  ## [1.16.3] - 2026-01-18
9
25
 
10
26
  ### Added
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nahisaho/shikigami-mcp-server",
3
- "version": "1.16.3",
3
+ "version": "1.16.5",
4
4
  "description": "SHIKIGAMI MCP Server - Deep Research tools with search fallback mechanism",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nahisaho/shikigami",
3
- "version": "1.16.3",
3
+ "version": "1.16.5",
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",
@@ -28,9 +28,9 @@ const itemsToCopy = [
28
28
  { src: 'AGENTS.md', dest: 'AGENTS.md', type: 'file' },
29
29
  ];
30
30
 
31
- const itemsToCreate = [
32
- { dest: 'outputs', type: 'dir' },
33
- ];
31
+ // Note: outputs/ directory is NOT created automatically.
32
+ // Use `npx shikigami new <name>` to create project directories.
33
+ const itemsToCreate = [];
34
34
 
35
35
  /**
36
36
  * Recursively copy directory