一键导入
check-rico-pr
Prepare and review a Rico Hunt PR. Check branch scope, diff size, commit style, tests, build, and CI readiness per AGENTS.md and CLAUDE.md rules.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Prepare and review a Rico Hunt PR. Check branch scope, diff size, commit style, tests, build, and CI readiness per AGENTS.md and CLAUDE.md rules.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | check-rico-pr |
| description | Prepare and review a Rico Hunt PR. Check branch scope, diff size, commit style, tests, build, and CI readiness per AGENTS.md and CLAUDE.md rules. |
| triggers | ["user","model"] |
| allowed-tools | ["read","grep","exec"] |
Prepare and review a Rico Hunt PR. This skill is read-only — it reports issues and gives a checklist, but it does not commit, push, merge, or deploy.
Before creating the PR, verify each item:
main.cd apps/web && npm run build passes.# Latest main
bash -c "git fetch origin main && git log --oneline -5"
# Diff size and files
git diff --stat main...HEAD
git diff --name-only main...HEAD
# Recent commits
git log --oneline -10
gh pr create with the standard Rico body (Summary, Test plan, Generated with Devin).git push --force, git merge, or gh pr merge without explicit approval.Accessibility audit for Rico Hunt. Run contrast checks and review alt text, focus states, ARIA labels, and keyboard navigation in frontend code.
Read-only audit of Rico Hunt AI provider routing. Verify RICO_AI_PROVIDER env var, fallback chain, and provider health without calling live AI APIs.
Verify Rico Hunt authentication rules. Check JWT cookie usage, signup role enforcement, protected route isolation, and no request body user_id.
Verify Rico Hunt chat flow. Inspect public chat session isolation, rate limits, authenticated chat routing, and public session prefixing.
Read-only database health check for Rico Hunt. Verify DATABASE_URL connectivity, key tables, and row counts without exposing user data or mutating anything.
Verify Rico Hunt required environment variables are set without exposing values. Check backend, frontend, and admin/dev env vars.