ソース情報
- リポジトリ
- ahmadrosid/nakama
- ソースの最終更新活動
- 2026年7月12日 05:56
- 検出された SKILL.md の言語
- 英語
- スター
- 282
- フォーク
- 50
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/ahmadrosid/nakama --skill coding-backend-codexコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Review a GitHub PR for unnecessary complexity. For PRs authored by someone else, post short human-sounding inline review comments via gh. For PRs authored by the authenticated gh user ("me"), apply the cuts on the PR branch and push — do not post review comments. Use when the user asks for a lean PR review, /lean-pr-review, /lean-review, or wants over-engineering feedback on a PR.
Produce H.264 MP4 browser video proof for a UI fix, upload it to GitHub user-attachments, and put the URL in a PR description. Use for scroll/ layout/interaction proofs (e.g. /automations expanded-run scrolling), recorded E2E demos, or when a reviewer needs visual evidence on a PR.
Create, schedule, and manage automations. Use when the user wants reminders, recurring tasks, one-time runAt schedules, manual automations, delivery to Telegram, WhatsApp, email, or Discord, or to run and test saved automations.
| 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: