بنقرة واحدة
review
Review current code changes for bugs, regressions, test gaps, and project-guideline violations.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Review current code changes for bugs, regressions, test gaps, and project-guideline violations.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Release a new version of the project.
Inspect git status, draft a commit message that matches the repo's style, and commit staged changes.
Ask focused clarifying questions to resolve ambiguous requirements before planning or implementing work.
Explain code, behavior, architecture, or diffs with concrete references to the relevant files.
Diagnose failing tests, determine whether code or tests are wrong, and make the smallest passing fix.
Refactor existing code while preserving behavior, keeping changes scoped, and verifying with relevant tests.
| name | review |
| description | Review current code changes for bugs, regressions, test gaps, and project-guideline violations. |
Review focus (optional): $ARGUMENTS
Gather change context. Run in parallel:
git status --shortgit diff --stagedgit diffgit ls-files --others --exclude-standardgit log -n 3 --onelineReview both staged and unstaged changes. Treat untracked files as relevant when
they appear related to the user's request, and open them directly because
git diff will not show their contents.
Read project conventions. If AGENTS.md, CLAUDE.md, or
CONTRIBUTING.md exist at the repo root, read them before judging the diff.
Inspect the changed code. Open the files and surrounding code needed to verify behavior. Do not rely only on the diff when control flow, data shape, or tests depend on nearby context.
Review against these checks:
Correctness
Surgical Changes
Simplicity
Testing
Style
gofmt)Report findings first.
file:line references for every finding.Do not apply fixes yourself. Present the review and let the user decide what to fix.
Use this structure:
Keep summaries brief. If there are no findings, the first line should state that no issues were found.