Codex CLI 설치

Codex CLI용 Agent Skills를 설치하고 설정하는 방법을 알아보세요.

사전 요구사항

  • Codex CLI 설치됨
  • Node.js 18 이상
  • Codex 설정 파일

설치

1단계: 스킬 추가

bash
codex config add-skill owner/skill-repo

예시:

bash
codex config add-skill openai/code-review

2단계: 설치 확인

bash
codex config list-skills

3단계: 스킬 사용

이제 모든 Codex 세션에서 스킬이 활성화됩니다.

설정

수동 설정

~/.codex/config.json 편집:

json
{
  "skills": [
    "https://github.com/owner/skill-repo"
  ]
}

프로젝트별 스킬

프로젝트에 .codex/config.json 생성:

json
{
  "skills": [
    "https://github.com/owner/project-skill"
  ]
}

스킬 업데이트

bash
codex config update-skills

스킬 제거

bash
codex config remove-skill owner/skill-repo

다음 단계