用 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