yodogawa 1.0.2 → 1.0.3

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.
@@ -19,9 +19,24 @@ auto_execution_mode: 1
19
19
 
20
20
  ### 1. スクリプトの実行
21
21
 
22
- - ドキュメント構造セットアップのために、スクリプト `.windsurf/scripts/setup-docs.sh` を実行してください。
22
+ - ドキュメント構造セットアップのために、環境に応じたスクリプトを実行してください。
23
+
23
24
  ```bash
24
- bash .windsurf/scripts/setup-docs.sh
25
+ # 環境を自動検出してスクリプトを実行
26
+ if [ -d ".agent" ]; then
27
+ SCRIPT_DIR=".agent"
28
+ elif [ -d ".windsurf" ]; then
29
+ SCRIPT_DIR=".windsurf"
30
+ elif [ -d ".cursor" ]; then
31
+ SCRIPT_DIR=".cursor"
32
+ elif [ -d ".claude" ]; then
33
+ SCRIPT_DIR=".claude"
34
+ else
35
+ echo "エラー: AI coding assistant ディレクトリが見つかりません"
36
+ exit 1
37
+ fi
38
+
39
+ bash "$SCRIPT_DIR/scripts/setup-docs.sh"
25
40
  ```
26
41
 
27
42
  ### 2. 結果の確認
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yodogawa",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "CLI to install Yodogawa Slash Commands workflows",
5
5
  "bin": {
6
6
  "yodogawa": "./bin/cli.js"