Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/thomasreichmann/nexus --skill audit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Build, run, and drive trpc-devtools in the Nexus app to verify UI changes at runtime
Upload a local video or image to GitHub and get a URL that renders as an inline player / image in issue, PR, and comment markdown. Use when posting recorded UI evidence or screenshots.
Run the work skill's self-review phase standalone — 3 parallel review agents (conventions, code quality, reuse) over the current branch diff
SKILL.md 표시 중
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