بنقرة واحدة
review
Queue a code review mission (ex: /review https://github.com/owner/repo/pull/42)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Queue a code review mission (ex: /review https://github.com/owner/repo/pull/42)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Decompose a broad topic into linked GitHub issues with a master tracking issue
Fix a tracker issue end-to-end, or batch-queue all open GitHub issues from a repo
Queue a PR rebase mission (ex: /rebase https://github.com/owner/repo/pull/42). A bare rebase only rebases onto the base branch; add --fix to also apply review feedback.
Queue a review then rebase combo for a PR (ex: /rr https://github.com/owner/repo/pull/42)
Ask Kōan a question about a GitHub PR or issue — fetches context and posts an AI reply
Show resolved model config for the active CLI provider
| name | review |
| scope | core |
| group | code |
| emoji | 🔍 |
| description | Queue a code review mission (ex: /review https://github.com/owner/repo/pull/42) |
| version | 1.0.0 |
| audience | hybrid |
| caveman | false |
| github_enabled | true |
| github_context_aware | true |
| commands | [{"name":"review","description":"Queue a code review for one or more PRs/issues. Use --now to queue at the top. Flags: --architecture (SOLID/layering focus), --errors (silent-failure-hunter pass), --comments (comment quality), --plan-url <issue-url> (plan alignment check), --force (review even if closed/merged)","usage":"/review [--now] <github-pr-or-issue-url> [additional-pr-or-issue-url ...] [context] [--architecture] [--errors] [--comments] [--plan-url <issue-url>] [--force] OR /review <github-repo-url> [--limit=N]","aliases":["rv","rereview","re_review"]}] |
| handler | handler.py |
Review diffs are packed to fit a token budget by the diff compressor
(optimizations.review_compressor.token_budget, default 80,000 tokens — the
single knob controlling review diff size). The fetch-time character cap is
derived from that budget (budget × 3.5 chars/token × 4 headroom), so on
large-context models the compressor — not a blind character cut — decides
coverage. When the compressor is disabled, a token-safe backstop (budget × 3.5,
no headroom) truncates the diff so the size guard holds in every config.
Whenever any file is omitted (fetch-time backstop, compressor packing, or
trivial-file triage), the posted review opens with a ⚠️ Partial review block
listing every omitted file, so partial coverage is never silent.