用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/compozy/agh --skill coderabbit-review-commit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
AGH runtime and contribution guide. Use for sessions, agents, native tools, skills, memory, network, tasks, capabilities, bundles, QA, docs, and repo work. Do not use for unrelated projects.
Use when the user wants to design, redesign, shape, critique, audit, polish, clarify, distill, harden, optimize, adapt, animate, colorize, extract, or otherwise improve a frontend interface. Covers websites, landing pages, dashboards, product UI, app shells, components, forms, settings, onboarding, and empty states. Handles UX review, visual hierarchy, information architecture, cognitive load, accessibility, performance, responsive behavior, theming, anti-patterns, typography, fonts, spacing, layout, alignment, color, motion, micro-interactions, UX copy, error states, edge cases, i18n, and reusable design systems or tokens. Also use for bland designs that need to become bolder or more delightful, loud designs that should become quieter, live browser iteration on UI elements, or ambitious visual effects that should feel technically extraordinary. Not for backend-only or non-UI tasks.
AGH visual-design authority for production UI, static artifacts, prototypes, and reviews. Use when creating or reviewing an AGH surface or changing tokens, typography, spacing, depth, icons, or motion. Do not use for capture-only verification; use agh-ui-screenshot.
基于 SOC 职业分类
正在显示 SKILL.md
| name | coderabbit-review-commit |
| description | Review exactly one commit with the CodeRabbit CLI in an isolated throwaway worktree. |
| disable-model-invocation | true |
Review exactly one commit — including a non-tip one — with the CodeRabbit CLI. The CLI only diffs base → HEAD, so this skill pins the target commit in a throwaway git worktree (detached HEAD = C) and reviews base = C~1 → HEAD = C. The current branch and working tree are never touched; the worktree is force-removed on every exit path.
Step 1: Resolve the target commit
HEAD~1 (the penultimate commit) unless the user names a commit-ish or SHA.git rev-parse --short <target>.Done when: a concrete short SHA is in hand.
Step 2: Run the review in the background
bash <coderabbit-review-commit-dir>/scripts/review-commit.sh <target><repo>/.coderabbit/reviews/<short-sha>.log and cleans its worktree on exit.CR_REVIEW_OUT (log dir), CR_CONFIG (config file), CR_REVIEW_TYPE (default committed).Done when: the helper is running and its log path is reported.
Step 3: Report the outcome
Done when: the user has the findings and the log location.
coderabbit not in PATH → helper exits 127; the user must install and auth the CLI (coderabbit auth login).Too many files! (commit exceeds CodeRabbit's 300-file cap) → review a subdirectory (coderabbit review --dir <path>) or split the commit.