with one click
audit
Review AI-drafted issues for human approval
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Review AI-drafted issues for human approval
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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
| 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