con un clic
audit
Review AI-drafted issues for human approval
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Review AI-drafted issues for human approval
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
End-to-end validate a merged PR or feature against the dev environment — UI + DB assertions with screenshots
Work on a ready GitHub issue (implement, test, commit, PR)
Groom GitHub issues from needs-details to ready
Verify whether a groomed issue is still accurate
Visually compare design options (colors, tokens, variants) in a live preview
Basado en la clasificación ocupacional SOC
| name | audit |
| description | Review AI-drafted issues for human approval |
This command helps review issues labeled ai-drafted and either approve them for implementation or request changes.
Current AI-drafted issues:
!gh issue list --label ai-drafted --json number,title --limit 10 2>/dev/null || echo "Could not fetch issues"
Issues with ai-drafted label were groomed by the /groom command. They have:
But the AI's decisions haven't been verified by a human yet.
Issue number: $ARGUMENTS
If an issue number was provided above (not empty):
If no issue number was provided:
Fetch issues with ai-drafted label:
gh issue list --label ai-drafted --json number,title --limit 20
If no issues found, inform the user and exit.
Present the issues and ask the user to select which ones to audit
For each selected issue:
Fetch full issue details:
gh issue view <number> --json number,title,body,labels
Present the issue content clearly formatted:
Optionally research context if user asks:
Use the review checklist from .claude/skills/audit/templates/review-criteria.md:
Ask the user for a verdict with these options (in this order):
ai-drafted label, issue is ready for implementationai-draftedneeds-details, remove ready and ai-draftedBased on user's verdict:
Approve:
gh issue edit <number> --remove-label ai-drafted
Approve with edits:
gh issue edit <number> --body "<updated body>"gh issue edit <number> --remove-label ai-draftedSend back for re-grooming:
gh issue edit <number> --remove-label ai-drafted --remove-label ready --add-label needs-details
Optionally add a comment explaining what needs to change:
gh issue comment <number> --body "Sent back for re-grooming: <reason>"
Skip:
After all issues are processed, provide a summary:
/groom - no subagents needed