소스 정보
- 저장소
- ahmadrosid/nakama
- 최근 소스 활동
- 2026년 7월 12일 05:56
- 감지된 SKILL.md 언어
- 영어
- 스타
- 282
- 포크
- 50
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ahmadrosid/nakama --skill coding-backend-codex명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | coding-backend-codex |
| description | Runtime prompt layer for Codex coding agent runs. |
| disable-model-invocation | true |
| include-body-on-match | true |
You are preparing a coding agent run for Codex, OpenAI's autonomous coding agent CLI, orchestrated via terminal/process tools.
Requires the Codex CLI and a git repository.
npm install -g @openai/codex.OPENAI_API_KEY or Codex OAuth credentials from the Codex CLI login flow.pty=true in terminal calls — Codex is an interactive terminal app.A valid CLI OAuth session may live under ~/.codex/auth.json; do not treat a missing OPENAI_API_KEY alone as proof that Codex auth is missing.
codex exec 'Add dark mode toggle to settings'
For scratch work (Codex needs a git repo):
cd $(mktemp -d) && git init && codex exec 'Build a snake game in Python'
# Start in background with PTY — returns a session id
codex exec --full-auto 'Refactor the auth module'
# Monitor progress
process(action="poll", session_id="<id>")
process(action="log", session_id="<id>")
# Send input if Codex asks a question
process(action="submit", session_id="<id>", data="yes")
# Kill if needed
process(action="kill", session_id="<id>")
| Flag | Effect |
|---|---|
exec "prompt" | One-shot execution, exits when done |
--full-auto | Sandboxed but auto-approves file changes in workspace |
--yolo | No sandbox, no approvals (fastest, most dangerous) |
--sandbox danger-full-access | No Codex sandbox; useful when the host service context breaks bubblewrap |
When invoking the Codex CLI from a service/gateway context, Codex workspace-write sandboxing may fail even when the same command works in an interactive shell. A typical symptom is bubblewrap/user-namespace errors such as setting up uid map: Permission denied or loopback: Failed RTM_NEWADDR: Operation not permitted.
In that context, prefer:
codex exec --sandbox danger-full-access "<task>"
Use process boundaries as the safety layer instead: explicit workdir, clean git status before launch, narrow task prompts, git diff review, targeted tests, and confirmation before committing broad changes.
Clone to a temp directory for safe review:
REVIEW=$(mktemp -d) && git clone https://github.com/user/repo.git $REVIEW && cd $REVIEW && gh pr checkout 42 && codex review --base origin/main
# Create worktrees
git worktree add -b fix/issue-78 /tmp/issue-78 main
git worktree add -b fix/issue-99 /tmp/issue-99 main
# Launch Codex in each (background, pty)
codex --yolo exec 'Fix issue #78: <description>. Commit when done.' # workdir=/tmp/issue-78
codex --yolo exec 'Fix issue #99: <description>. Commit when done.' # workdir=/tmp/issue-99
# After completion, push and create PRs
cd /tmp/issue-78 && git push -u origin fix/issue-78
gh pr create --repo user/repo --head fix/issue-78 --title 'fix: ...' --body '...'
# Cleanup
git worktree remove /tmp/issue-78
# Fetch all PR refs
git fetch origin '+refs/pull/*/head:refs/remotes/origin/pr/*'
# Review multiple PRs in parallel
codex exec 'Review PR #86. git diff origin/main...origin/pr/86' # background
codex exec 'Review PR #87. git diff origin/main...origin/pr/87' # background
# Post results
gh pr comment 86 --body '<review>'
pty=true — Codex is an interactive terminal app and hangs without a PTY.mktemp -d && git init for scratch.exec for one-shots — codex exec "prompt" runs and exits cleanly.--full-auto for building — auto-approves changes within the sandbox.background=true and monitor with the process tool.poll/log, be patient with long-running tasks.When preparing the coding agent instruction for Codex: