@@ -79,7 +79,7 @@ Enter choice [1-2] (default: 1): 2
7979ℹ Downloading GSI-Protocol from GitHub...
8080✓ Downloaded successfully
8181✓ Installed 5 Claude Code commands to ~/.claude/commands
82- ✓ Installed 5 Codex commands to ~/.codex/commands
82+ ✓ Installed 5 Codex commands to ~/.codex/prompts
8383
8484============================================================
8585✓ Installation complete! Total files installed: 10
@@ -117,15 +117,15 @@ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.claude
117117
118118** Codex (OpenAI):**
119119``` bash
120- mkdir -p ~ /.codex/commands
121- cd ~ /.codex/commands
120+ mkdir -p ~ /.codex/prompts
121+ cd ~ /.codex/prompts
122122
123123# 下載所有指令檔案
124- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-auto.md
125- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-spec.md
126- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-arch.md
127- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-impl.md
128- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-verify.md
124+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-auto.md
125+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-spec.md
126+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-arch.md
127+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-impl.md
128+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-verify.md
129129```
130130
131131### 手動專案內安裝
@@ -142,16 +142,16 @@ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.claude
142142wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.claude/commands/sdd-verify.md
143143
144144# Codex
145- mkdir -p .codex/commands
146- cd .codex/commands
147- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-auto.md
148- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-spec.md
149- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-arch.md
150- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-impl.md
151- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-verify.md
145+ mkdir -p .codex/prompts
146+ cd .codex/prompts
147+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-auto.md
148+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-spec.md
149+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-arch.md
150+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-impl.md
151+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-verify.md
152152
153153# 提交到 Git(可選)
154- git add .claude/commands/ .codex/commands /
154+ git add .claude/commands/ .codex/prompts /
155155git commit -m " Add GSI-Protocol workflow commands"
156156```
157157
@@ -168,14 +168,14 @@ ls ~/.claude/commands/ | grep sdd
168168
169169** Codex (全域安裝):**
170170``` bash
171- ls ~ /.codex/commands / | grep sdd
171+ ls ~ /.codex/prompts / | grep sdd
172172```
173173
174174** 專案內安裝:**
175175``` bash
176176ls .claude/commands/ | grep sdd
177177# 或
178- ls .codex/commands / | grep sdd
178+ ls .codex/prompts / | grep sdd
179179```
180180
181181應該看到:
@@ -241,7 +241,7 @@ sdd-verify.md
241241
242242** Codex (OpenAI):**
243243```
244- ~/.codex/commands /
244+ ~/.codex/prompts /
245245├── sdd-auto.md
246246├── sdd-spec.md
247247├── sdd-arch.md
@@ -300,7 +300,7 @@ your-project/
300300
301301### 推薦配置
302302
303- - ✅ ** 全域安裝** :` ~/.claude/commands/ ` 或 ` ~/.codex/commands / ` (所有專案共用)
303+ - ✅ ** 全域安裝** :` ~/.claude/commands/ ` 或 ` ~/.codex/prompts / ` (所有專案共用)
304304- ✅ ** 專案目錄** :只有 ` features/ ` 、` docs/features/ ` 、` src/ ` (生成的程式碼)
305305- ❌ ** 不要** :把整個 GSI-Protocol repo clone 到專案裡
306306
@@ -316,9 +316,9 @@ your-project/
316316** 方式 2:專案內只包含 commands(Git 管理)**
317317``` bash
318318# 在專案內安裝並 commit
319- mkdir -p .claude/commands .codex/commands
319+ mkdir -p .claude/commands .codex/prompts
320320# 複製命令檔案...
321- git add .claude/commands/ .codex/commands /
321+ git add .claude/commands/ .codex/prompts /
322322git commit -m " Add SDD workflow commands"
323323```
324324
@@ -347,7 +347,7 @@ rm -f ~/.claude/commands/sdd-*.md
347347
348348** Codex (OpenAI):**
349349``` bash
350- rm -f ~ /.codex/commands /sdd-* .md
350+ rm -f ~ /.codex/prompts /sdd-* .md
351351```
352352
353353### 專案內安裝
@@ -361,7 +361,7 @@ rm -rf .claude/
361361
362362** Codex (OpenAI):**
363363``` bash
364- rm -rf .codex/commands /sdd-* .md
364+ rm -rf .codex/prompts /sdd-* .md
365365# 或整個目錄
366366rm -rf .codex/
367367```
@@ -384,7 +384,7 @@ rm -rf .codex/
384384
385385** A:** 取決於您的 AI 工具:
386386- 如果使用 Claude Code → 安裝 ` .claude/commands/ `
387- - 如果使用 Codex (OpenAI) → 安裝 ` .codex/commands / `
387+ - 如果使用 Codex (OpenAI) → 安裝 ` .codex/prompts / `
388388- 可以同時安裝兩者,隨時切換使用
389389
390390### Q:Claude Code 和 Codex 的指令內容有差異嗎?
@@ -413,8 +413,8 @@ powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
413413### Q:全域安裝和專案內安裝有什麼區別?
414414
415415** A:**
416- - ** 全域** :` ~/.claude/commands/ ` 或 ` ~/.codex/commands / ` ,所有專案共用,專案保持乾淨
417- - ** 專案內** :` .claude/commands/ ` 或 ` .codex/commands / ` ,指令隨專案走,團隊成員 clone 後就有
416+ - ** 全域** :` ~/.claude/commands/ ` 或 ` ~/.codex/prompts / ` ,所有專案共用,專案保持乾淨
417+ - ** 專案內** :` .claude/commands/ ` 或 ` .codex/prompts / ` ,指令隨專案走,團隊成員 clone 後就有
418418
419419### Q:團隊成員需要每個人都安裝嗎?
420420
@@ -454,12 +454,12 @@ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.claude
454454
455455** 手動全域安裝 - Codex (OpenAI):**
456456``` bash
457- mkdir -p ~ /.codex/commands && cd ~ /.codex/commands
458- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-auto.md
459- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-spec.md
460- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-arch.md
461- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-impl.md
462- wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/commands /sdd-verify.md
457+ mkdir -p ~ /.codex/prompts && cd ~ /.codex/prompts
458+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-auto.md
459+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-spec.md
460+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-arch.md
461+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-impl.md
462+ wget https://raw.githubusercontent.com/CodeMachine0121/GSI-Protocol/main/.codex/prompts /sdd-verify.md
463463```
464464
465465開始使用 GSI-Protocol,讓 AI 幫您寫結構化的程式碼!🚀
0 commit comments