Agent skill
codex-review
Codex CLI を使って、noninteractive に code review を依頼し、その結果をもとに next action を考えましょう。
Install this agent skill to your Project
npx add-skill https://github.com/sushichan044/dotfiles/tree/main/.agents/skills/codex-review
SKILL.md
Run a code review non-interactively and decide next steps based on the review results
1. Execute code review
You can use codex review -c model_reasoning_effort="high" -c sandbox_mode="read-only" <...additional args like options or prompt to request review, follow usage below> command to request a code review non-interactively using the Codex CLI.
This allows you to get feedback on your code changes without having to engage in an interactive session.
This review may takes a bit longer time, but it is good So just wait for the review results to come back, do not set timeout.
Detailed Usage:
Usage: codex review [OPTIONS] [PROMPT]
Arguments:
[PROMPT]
Custom review instructions. If `-` is used, read from stdin
Options:
-c, --config <key=value>
Override a configuration value that would otherwise be loaded from `~/.codex/config.toml`. Use a dotted path (`foo.bar.baz`) to override nested values. The `value` portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
Examples: - `-c model="o3"` - `-c 'sandbox_permissions=["disk-full-read-access"]'` - `-c shell_environment_policy.inherit=all`
--uncommitted
Review staged, unstaged, and untracked changes
--base <BRANCH>
Review changes against the given base branch
--enable <FEATURE>
Enable a feature (repeatable). Equivalent to `-c features.<name>=true`
--commit <SHA>
Review the changes introduced by a commit
--disable <FEATURE>
Disable a feature (repeatable). Equivalent to `-c features.<name>=false`
--title <TITLE>
Optional commit title to display in the review summary
-h, --help
Print help (see a summary with '-h')
2. Analyze review results
After executing the code review command, you will receive feedback on your code changes. Analyze the review results to identify any issues or areas for improvement in your code.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
terraform-style-guide
Generate Terraform HCL code following HashiCorp's official style conventions and best practices. Use when writing, reviewing, or generating Terraform configurations.
fix-github-actions-ci
GitHub Actions CI の失敗を調査して修正するためのスキルです。CI ログを分析して失敗箇所・原因を特定し、そのまま修正作業まで行います。
dd-logs
Log management - search, pipelines, archives, and cost control.
golang-safety
Defensive Golang coding to prevent panics, silent data corruption, and subtle runtime bugs. Use whenever writing or reviewing Go code that involves nil-prone types (pointers, interfaces, maps, slices, channels), numeric conversions, resource lifecycle (defer in loops), or defensive copying. Also triggers on questions about nil panics, append aliasing, map concurrent access, float comparison, or zero-value design.
resolve-merge-conflict
現在の branch を分岐元の最新に rebase するときに使う。まず rebase を実行し、止まった conflict を順番に解消して前に進める。長い事前調査を避けて、必要な file だけ見て片付けたいときに使う。
golang-data-structures
Golang data structures — slices (internals, capacity growth, preallocation, slices package), maps (internals, hash buckets, maps package), arrays, container/list/heap/ring, strings.Builder vs bytes.Buffer, generic collections, pointers (unsafe.Pointer, weak.Pointer), and copy semantics. Use when choosing or optimizing Go data structures, implementing generic containers, using container/ packages, unsafe or weak pointers, or questioning slice/map internals.
Didn't find tool you were looking for?