Agent Skill
2/7/2026

review-codex

Review code changes using Codex CLI. Use this skill when the user wants to review implemented code, uncommitted changes, or specific commits using the codex review command. Triggers on requests like "review my changes with codex", "codex review", or "review this commit".

K
ksato8710
0GitHub Stars
2Views
npx skills add ksato8710/skills-and-subagents

SKILL.md

Namereview-codex
DescriptionReview code changes using Codex CLI. Use this skill when the user wants to review implemented code, uncommitted changes, or specific commits using the codex review command. Triggers on requests like "review my changes with codex", "codex review", or "review this commit".

Skills and Subagents

Claude Code / Codex CLI 向けスキルとサブエージェントの管理リポジトリ

License: MIT

Skills and Subagents Overview


Why -- なぜこのリポジトリが必要か

Claude Code や Codex CLI のスキル定義は各プロジェクトに散在しがちで、再利用や品質管理が困難になります。このリポジトリは、スキルとサブエージェントを 一元管理・パッケージング・配布 するためのハブとして機能します。

標準化された SKILL.md フォーマットにより、スキルの目的・使い方・前提条件を明確に定義し、プロジェクト横断で再利用可能にします。

Features

  • スキルパッケージング -- 標準化された .skill パッケージ形式でスキルを配布
  • Codex CLI レビュー統合 -- review-codex スキルによる Codex CLI を活用したコードレビュー自動化
  • 標準 SKILL.md フォーマット -- 目的・使い方・前提条件を統一形式で定義
  • 簡単インストール -- claude config add コマンドで即座にスキルを追加可能

Tech Stack

項目技術
スキル定義Markdown (SKILL.md)
パッケージ形式.skill ディレクトリ
対応ツールClaude Code, Codex CLI
配布方式Git clone + claude config add

Getting Started

Prerequisites

  • Claude Code -- Anthropic の公式 CLI
  • Codex CLI (任意) -- review-codex スキル使用時に必要

Installation

# リポジトリをクローン
git clone https://github.com/ksato8710/skills-and-subagents.git
cd skills-and-subagents

# (任意) npm パッケージを利用するスキルがある場合
npm install

# スキルを Claude Code に登録
claude config add skills /path/to/skills-and-subagents/skills/review-codex

# 動作確認
claude # Claude Code を起動し /review-codex を実行

Environment Variables

特別な環境変数は不要です。スキルは Claude Code / Codex CLI の既存設定に依存します。

Architecture

skills-and-subagents/
├── skills/                          # スキル定義
│   └── review-codex.skill/         #   Codex CLI レビュースキル
│       └── SKILL.md                #     スキル定義ファイル
└── README.md                        # 本ファイル

Key Files

ファイル役割
skills/review-codex.skill/SKILL.mdCodex CLI レビュースキルの定義・使用方法・前提条件

Commands

review-codex スキル

コマンド説明
/review-codex未コミットの変更をレビュー
/review-codex --base mainmain ブランチからの差分をレビュー
/review-codex --commit abc123特定コミットの変更をレビュー

スキル管理

# スキルの登録
claude config add skills /path/to/skills-and-subagents/skills/review-codex

# 登録済みスキルの確認
claude config list skills

# スキルの削除
claude config remove skills review-codex

スキル作成ガイド

新しいスキルを追加する場合は、以下の構造に従ってください:

skills/
└── your-skill-name.skill/
    └── SKILL.md       # 必須: スキル定義

SKILL.md には以下を含めてください:

  1. スキル名と概要 -- 一文で何をするスキルか
  2. 前提条件 -- 必要なツールや環境
  3. 使用方法 -- コマンド例と引数の説明
  4. 出力 -- スキル実行後の結果

Deploy

本リポジトリはサービスとしてのデプロイは不要です。各プロジェクトが claude config add skills でローカルパスを指定してスキルを参照します。

Testing

スキルの動作検証は Claude Code セッションで実施:

  1. claude config add skills ./skills/review-codex でスキルを登録
  2. テスト用の変更を作成し /review-codex を実行
  3. レビュー出力が期待通りであることを確認

Related Projects

プロジェクト関係
Product Hubプロダクトエコシステム管理基盤・スキルカタログ管理
openclaw-configOpenClaw エージェント設定 (86 スキル管理)
codex-cli-configCodex CLI ホーム設定

Changelog

日付変更内容
2026-02review-codex スキルのパッケージ化 (.skill 形式)
2026-01初期リポジトリ作成、SKILL.md フォーマット策定

Roadmap

  • スキルテンプレートジェネレーターの追加
  • スキルバージョニング機能
  • Product Hub スキルカタログとの自動同期 (standards/skill-catalog/)
  • サブエージェント定義の追加
  • スキル依存関係管理

Contributing

新しいスキルの追加や既存スキルの改善を歓迎します。

  1. skills/ 配下に .skill ディレクトリを作成
  2. SKILL.md を標準フォーマットで記述
  3. Pull Request を作成

License

MIT License

Skills Info
Original Name:review-codexAuthor:ksato8710