원클릭으로
audit
Review AI-drafted issues for human approval
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review AI-drafted issues for human approval
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
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