| name | codex-user-context |
| description | cross-agent-bridge family의 raw Codex CLI executor. Codex CLI를 headless로 실행하고 prompt/file/session/sandbox를 제어하는 전용 specialist. bridge.py 리뷰나 full workflow는 cross-agent-bridge를 사용하라. |
Codex User Context
cross-agent-bridge family의 raw Codex CLI execution specialist.
Full workflow가 필요하면 cross-agent-bridge를 먼저 사용하세요. 이 skill은 Codex CLI 직접 실행 전용입니다.
Claude가 Codex CLI를 비대화형(headless) 모드로 호출한다.
API 키 불필요 — OpenAI 계정 로그인만 있으면 동작.
Workflow
scripts/run_codex_user_context.sh로 Codex를 호출한다.
- 기본 모델은
gpt-5.3-codex, 권한 오류 시 gpt-5로 자동 fallback.
--file로 파일 내용을 프롬프트에 첨부할 수 있다.
--sandbox danger-full-access로 네트워크 접근을 허용한다.
--save로 결과를 plans/codex/codex_feedback.md에 기록한다.
--full-auto로 도구 사용 자동 승인 모드를 활성화한다.
- 경로 해석은
--project 우선, 없으면 git root, 마지막으로 현재 디렉토리.
Commands
zsh skills/codex-user-context/scripts/run_codex_user_context.sh "Reply exactly: OK"
zsh skills/codex-user-context/scripts/run_codex_user_context.sh --resume SESSION_ID "프롬프트"
export CODEX_RESUME_SESSION=SESSION_ID
zsh skills/codex-user-context/scripts/run_codex_user_context.sh --resume "프롬프트"
zsh skills/codex-user-context/scripts/run_codex_user_context.sh --file src/app.py "이 코드를 리뷰해줘"
cat src/app.py | zsh skills/codex-user-context/scripts/run_codex_user_context.sh "리뷰해줘"
zsh skills/codex-user-context/scripts/run_codex_user_context.sh --sandbox danger-full-access "외부 API 조사해줘"
zsh skills/codex-user-context/scripts/run_codex_user_context.sh --full-auto --save "설계안 작성해줘"
zsh skills/codex-user-context/scripts/run_codex_user_context.sh --model gpt-5 "코드 리뷰해줘"
zsh skills/codex-user-context/scripts/run_codex_user_context.sh --dry-run "test"
Sandbox Modes
read-only — 기본값, 네트워크 차단, 파일 읽기만
workspace-write — 작업 디렉토리 쓰기 허용
danger-full-access — 네트워크 포함 전체 접근
다른 프로젝트에 설치
cp -r skills/codex-user-context /path/to/other-project/.claude/skills/