소스 정보
- 저장소
- merceralex397-collab/codex-claude-integration
- 최근 소스 활동
- 2026년 2월 1일 12:38
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/merceralex397-collab/codex-claude-integration --skill codex-config명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | codex-config |
| description | View and modify Codex plugin settings for this session |
| user-invocable | true |
| allowed-tools | ["Read","Write","Bash"] |
Manage Codex plugin settings. View current configuration, override settings for the session, or edit the settings file.
/codex-config - Show current settings/codex-config <key>=<value> - Set value for this session/codex-config reset - Reset to file defaults/codex-config edit - Open settings file for editing/codex-config create - Create settings file from template/codex-config # Show all settings
/codex-config model=gpt-5.1-codex-max # Override model
/codex-config reasoning_effort=high # Override reasoning
/codex-config gates.enabled=test,lint # Set active gates
/codex-config reset # Reset session overrides
/codex-config create # Create settings file
Check if user settings file exists:
python scripts/settings_loader.py --check
Load and display current effective settings:
python scripts/settings_loader.py --json
Format output as a readable summary:
Codex Plugin Settings
=====================
Settings file: ~/.claude/codex-settings.toml [exists/not found]
Defaults:
model: gpt-5.2-codex
reasoning_effort: medium
verbosity: normal
Quality Gates:
enabled: test, lint
max_retries: 3
auto_iterate: true
Profiles:
quick: gpt-5.1-codex-mini (low reasoning)
standard: gpt-5.2-codex (medium reasoning)
deep: gpt-5.1-codex-max (high reasoning)
review: gpt-5.2 (medium reasoning)
Parse the argument and explain that the override applies to the current session only. Note: Session overrides are held in conversation context and need to be passed to subsequent /codex calls.
Display confirmation:
Session override set:
model = gpt-5.1-codex-max
This override applies to the current session only.
To make it permanent, run: /codex-config edit
Clear any session overrides and confirm:
Session overrides cleared.
Using settings from: ~/.claude/codex-settings.toml
cp <plugin_dir>/config/codex-settings.toml ~/.claude/codex-settings.toml
Created settings file: ~/.claude/codex-settings.toml
Edit this file to customize your Codex plugin settings.
| Setting | Values | Description |
|---|---|---|
model | gpt-5.2-codex, gpt-5.1-codex-max, gpt-5.1-codex-mini, gpt-5.2 | Default model |
reasoning_effort | low, medium, high, xhigh | Default reasoning level |
verbosity | quiet, normal, verbose | Output detail level |
| Setting | Values | Description |
|---|---|---|
enabled | Array of: test, lint, typecheck, security | Which gates to run |
max_retries | 1-10 | Retries per failing gate |
auto_iterate | true/false | Continue after gate failure |
Each profile can override:
model: Which Codex model to usereasoning_effort: How much reasoning to applytimeout: Max seconds to wait~/.claude/codex-settings.toml
This file is user-specific and is not overwritten by plugin updates.
These flags override settings for a single call:
| Flag | Effect |
|---|---|
--model=<model> | Override model |
--reasoning=<level> | Override reasoning effort |
--profile=<name> | Use specific profile |
--no-iterate | Skip quality gates |
--verbose | Show detailed output |
--quiet | Minimal output |