.claude/skills.nouse/codex/SKILL.md
Delegate to OpenAI Codex CLI when: (1) user explicitly requests it (codex에게 맡겨줘, codex로 해줘, 외주화해줘, codex 실행해줘, codex 리뷰 돌려줘), OR (2) the task requires autonomous repo-scale execution — writing multiple test files, file-level refactoring across many files, bulk edits (type hints, formatting, comments across a directory), or code review with a clear done condition. Do NOT delegate: design/architecture decisions, small edits (under ~20 lines), explanation-only requests, or tasks where Claude needs to reason about context first.
npx skillsauth add taewook486/real-estate-mcp codexInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Delegate to Codex CLI for autonomous repo-scale execution tasks.
Delegate only when ALL of these hold:
Examples that qualify:
codex review)codex login status # expect "Logged in"
If it fails, instruct the user to run codex login.
codex exec \
--cd /path/to/repo \
--sandbox workspace-write \
--full-auto \
--ephemeral \
--json \
-o /tmp/codex-result.txt \
"task instruction"
Fixed option rules:
--cd — always set to project root--sandbox workspace-write — default; allows writes while minimising system impact--ephemeral — prevents session state from leaking between runs-o /tmp/codex-result.txt — saves output for Claude to reviewcodex exec \
--cd "$(pwd)" \
--sandbox workspace-write \
--full-auto \
--ephemeral \
-o /tmp/codex-result.txt \
"task instruction here"
codex review --base main "Review for security, performance, and regression risk. Cite file path and line number."
Or non-interactive:
codex exec review \
--base main \
--ephemeral \
-o /tmp/codex-review.txt \
"Review for security, performance, and regression risk."
cat prompt.txt | codex exec - \
--cd "$(pwd)" \
--sandbox workspace-write \
--full-auto \
--ephemeral \
-o /tmp/codex-result.txt
-o file and summarise results for the user.A good Codex prompt:
inside tests/mcp_server/follow the style of test_apartment_trades.pyall tests must passdo not modify any other files| Symptom | Fix |
|---------|-----|
| codex: command not found | Find the absolute path with which codex and use it |
| Git repo check fails | Set --cd to the repo root, or add --skip-git-repo-check |
| Output file missing | Verify the -o directory exists |
| Permissions concern | Use --sandbox read-only for a dry-run inspection step first |
testing
--- name: worklog description: Update worklog files by moving tasks between todo/doing/done states. Use when recording task progress, starting new work, or marking tasks complete. Requires explicit arguments: worklog [done|doing|todo] [description]. --- # Worklog Update task state in worklog files. Requires explicit arguments. ## Worklog Files - `localdocs/worklog.todo.md` — backlog - `localdocs/worklog.doing.md` — in progress - `localdocs/worklog.done.md` — completed (grouped by date, appen
development
Test-Driven Development workflow. Use for ALL code changes - features, bug fixes, refactoring. TDD is non-negotiable.
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
development
Refactoring assessment and patterns. Use after tests pass (GREEN phase) to assess improvement opportunities.