with one click
commit
コミットを行う。「コミットして」「コミット」などのリクエストで使用。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
コミットを行う。「コミットして」「コミット」などのリクエストで使用。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
任意のプロジェクトに「@claude review で Claude が PR をレビューする」GitHub Actions を一式セットアップする。workflow 雛形の生成・Claude GitHub App 認可・CLAUDE_CODE_OAUTH_TOKEN secret 登録を案内する。「Claude レビュー CI を入れて」「PR レビュー workflow をセットアップ」などで使用。
PR についたレビューコメントを取得し、修正・返信・Resolve し、必要なら再レビュー依頼して完了までループする。レビュアーは Copilot(既定)か Claude(`/pr-review claude`)。「PR コメント対応して」「レビュー対応」などのリクエストで使用。
プロジェクトに spec-do/spec-review/spec-update コマンドをセットアップする。「spec コマンドを入れて」「仕様駆動コマンドをセットアップ」などの依頼で使用。
PR についたレビューコメントを取得し、修正・返信・Resolve し、必要なら Copilot に再レビュー依頼して完了までループする。「PR コメント対応して」「レビュー対応」などのリクエストで使用。
Codex skills や Claude Code skills を点検し、役割の混線、危険な tool 許可、冗長な本文、トリガー説明の弱さを改善する。「skill 改善」「スキルを見直して」「SKILL.md を改善して」などの依頼で使用。
PR 作成を行う。「PR 出して」などのリクエストで使用。
| name | commit |
| description | コミットを行う。「コミットして」「コミット」などのリクエストで使用。 |
| allowed-tools | Read, Grep, Glob, Bash(git status:*), Bash(git diff:*), Bash(git log:*), Bash(git add:*), Bash(git commit:*), Bash(git push:*), Bash(git stash:*), Bash(pnpm:*), Bash(cargo:*) |
git status と git diff でステージ済み・未ステージの変更を確認するgit log で直近のコミットメッセージのスタイルを確認するgit add <ファイル...> でファイルをステージする。git add -A や git add . は使わず具体的なファイル名を指定するAGENTS.md や CLAUDE.md にコミット前チェックの指定があれば必ず実行する。この repository では prek run --all-files、なければ pre-commit run --all-files を実行して通すgit add するgit commit --no-gpg-sign -m "<コミットメッセージ>" でコミットするgit push でプッシュする/tmp/commit_<timestamp>.sh を生成してユーザーに実行してもらう。