갈피노트
Back to Home
iOS Development • 2026년 4월 1일

설치도 귀찮아서 AI에게 맡기고, AI는 또 그걸 알아서 해주는 세상

#claudecode #codex #plugin

잘 정리된 문서 하나만 있다면, AI에게 맡겨서 설치하는건 너무나도 쉬운 세상이 되었다.

며칠 전 claude code에서 사용 가능한 codex 플러그인이 발표되었다.

참고 문서는 GeekNews다.

https://news.hada.io/topic?id=28023

귀찮아서 나는 이 링크를 그냥 claude code에게 던져주었다.

그 결과 그냥 복붙.

링크 안의 설치 방법을 읽고 몇 번의 에러 후에 뚝딱 설치해주었다.

❯ 기능추가요청을 하기 전에 이 링크를 확인해서 plugin을 설치해주겠어?                                                                              
                                                                                                                                                

⏺ 링크가 메시지에 포함되어 있지 않습니다. 어떤 링크인지 공유해 주시겠어요?

❯ 링크를 안줬네. https://news.hada.io/topic?id=28023

⏺ Fetch(https://news.hada.io/topic?id=28023)
⎿  Received 54.4KB (200 OK)

⏺ OpenAI의 Claude Code용 Codex 플러그인이네요. 코드 리뷰, 버그 수정 위임 등이 가능한 플러그인입니다. 설치하겠습니다.

⏺ Bash(claude plugins install github:openai/codex-plugin-cc 2>&1)
⎿  Error: Exit code 1
Installing plugin "github:openai/codex-plugin-cc"...
✘ Failed to install plugin "github:openai/codex-plugin-cc": Plugin "github:openai/codex-plugin-cc" not found in any configured marketplace

⏺ Bash(claude plugins 2>&1 | head -30)
⎿  Usage: claude plugin|plugins [options] [command]

 Manage Claude Code plugins                                                                                                                   
 … +18 lines (ctrl+o to expand)                    
                                                                                                                                              

⏺ Bash(claude plugins marketplace 2>&1)
⎿  Error: Exit code 1
Usage: claude plugin marketplace [options] [command]

 Manage Claude Code marketplaces                   
                                                                                                                                              
 Options:                                                                                                                                     
   -h, --help                  Display help for command
                                                                                                                                              
 Commands:                                
   add [options] <source>      Add a marketplace from a URL, path, or GitHub
 … +6 lines (ctrl+o to see all)

⏺ Bash(claude plugins marketplace list 2>&1)
⎿  Configured marketplaces:

   ❯ claude-plugins-official                                                                                                                  
 … +4 lines (ctrl+o to expand)                                                        
                                                                                                                                              

⏺ OpenAI marketplace가 등록되어 있지 않아서 실패했습니다. GitHub repo를 marketplace로 추가한 뒤 설치하겠습니다.

⏺ Bash(claude plugins marketplace add github:openai/codex-plugin-cc 2>&1)
⎿  Error: Exit code 1
✘ Invalid marketplace source format. Try: owner/repo, https://..., or ./path

⏺ Bash(claude plugins marketplace add openai/codex-plugin-cc 2>&1)
⎿  Adding marketplace...
Cloning via SSH: git@github.com:openai/codex-plugin-cc.git
Refreshing marketplace cache (timeout: 120s)…
… +4 lines (ctrl+o to expand)
⎿  (timeout 30s)

⏺ Marketplace가 추가되었습니다. 이제 플러그인을 설치하겠습니다.

⏺ Bash(claude plugins install codex-plugin-cc 2>&1)
⎿  Error: Exit code 1
Installing plugin "codex-plugin-cc"...
✘ Failed to install plugin "codex-plugin-cc": Plugin "codex-plugin-cc" not found in any configured marketplace

⏺ Bash(claude plugins install codex-plugin-cc@openai-codex 2>&1)
⎿  Error: Exit code 1
Installing plugin "codex-plugin-cc@openai-codex"...
✘ Failed to install plugin "codex-plugin-cc@openai-codex": Plugin "codex-plugin-cc" not found in marketplace "openai-codex"

⏺ Fetch(https://github.com/openai/codex-plugin-cc)
⎿  Received 337.7KB (200 OK)

⏺ marketplace는 이미 추가했으니, 플러그인 이름이 codex였네요. 설치하겠습니다.

⏺ Bash(claude plugins install codex@openai-codex 2>&1)
⎿  Installing plugin "codex@openai-codex"...
✔ Successfully installed plugin: codex@openai-codex (scope: user)

⏺ 설치 완료되었습니다! 플러그인을 활성화하기 위해 리로드하겠습니다.

⏺ Bash(claude plugins list 2>&1)
⎿  Installed plugins:

   ❯ codex@openai-codex                                                                                                                       
 … +43 lines (ctrl+o to expand)                                                       
                                                                                                                                              

⏺ Codex 플러그인 설치 완료되었습니다! (v1.0.2, enabled)

현재 세션에서 사용하려면 /reload-plugins를 실행하셔야 합니다. Codex에 로그인이 안 되어 있다면 !codex login도 필요합니다.

다음 슬래시 커맨드들을 사용하실 수 있습니다:

  • /codex:review — 코드 리뷰
  • /codex:adversarial-review — 비판적 코드 리뷰
  • /codex:rescue — 버그 조사/수정 위임
  • /codex:status / /codex:result — 작업 현황/결과 조회

기능 추가 요청을 이어서 말씀해 주세요!

이렇게 command에서 내가 명령어 복사-붙여넣기할 필요 없이 플러그인 설치 완료.

다들 아는 거겠지만, 이후에 내가 어떤걸 해야하는지도 다 나와있다.

몇 달마다 반복하는 말버릇을 요새는 매일같이 하고 있다.

세상 참... 많이 좋아졌다.

Comments