| 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"] |
check-rico-pr
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.
PR checklist
Before creating the PR, verify each item:
1. Scope
2. Branch and commits
3. Tests and build
4. Code review
Commands to run
bash -c "git fetch origin main && git log --oneline -5"
git diff --stat main...HEAD
git diff --name-only main...HEAD
git log --oneline -10
If the user asks to create the PR
- Ensure all checklist items pass.
- Use
gh pr create with the standard Rico body (Summary, Test plan, Generated with Devin).
- Do not auto-merge or push without explicit approval.
Safety constraints
- Never run
git push --force, git merge, or gh pr merge without explicit approval.
- Never deploy from this skill.
- Never mutate Neon, Stripe, or any production service.
- If the diff is too large or mixes unrelated changes, stop and ask the user to split it.