用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
正在显示 SKILL.md
| name | review |
| description | Unified code review router. Detects patterns, proposes reviewers, spawns Use when this capability is needed. |
| metadata | {"author":"davidabeyer"} |
quick: Auto-detect target. Skip to Phase 3 with code-quality-auditor only.
full:
| Input | Action |
|---|---|
123 or PR #123 | gh pr diff 123 |
file.py | git diff HEAD -- file.py |
| (none) | git diff HEAD |
Extract: files changed, file types, line counts.
quick: Skip pattern analysis. Use code-quality-auditor only.
full: Scan diff for signals → map to reviewers:
| Signal | Reviewer |
|---|---|
sqlite3, cursor.execute | sqlite-reviewer |
subprocess, Popen, os.system | subprocess-reviewer |
Path(, os.path, open( | path-security-reviewer |
os.environ, getenv, API keys | configuration-auditor |
try:, except, raise | error-handling-reviewer |
BaseModel, Field(, validator | schema-reviewer |
hooks/, PreToolUse | hook-reviewer |
test_, pytest, assert | test-quality-auditor |
Enum, status transitions | state-machine-reviewer |
tmux, TUI widgets | tui-reviewer |
requests, httpx, API calls | api-client-reviewer |
| Large loops, recursion | performance-auditor |
input(, args., CLI args | input-validation-reviewer |
Always: code-quality-auditor
Build: detected (pre-checked) + available (unchecked).
quick: Skip AskUserQuestion. Use detected reviewers automatically.
full:
AskUserQuestion(questions=[{
"question": "Which reviewers?",
"header": "Review",
"options": [
{"label": "code-quality (Recommended)", "description": "Quality, antirez style"},
{"label": "sqlite-reviewer", "description": "Detected: SQL in diff"},
# ... detected first, then available
],
"multiSelect": True
}])
Profiles: --quick (quality only), --thorough (all detected + test), --security (security + path + input + config)
quick: Review diff yourself applying code-quality checks. Report findings inline.
full: ALL in SINGLE message (parallel):
Task(subagent_type="code-quality-auditor", model="sonnet", run_in_background=True,
prompt=f"Review diff:\n{diff}")
Task(subagent_type="sqlite-reviewer", model="sonnet", run_in_background=True,
prompt=f"Review diff:\n{diff}")
Wait for all. Collect outputs.
quick: Present findings inline with verdict. Skip formal synthesis.
full:
REVIEW: {target} | {N} findings | {reviewers}
─────────────────────────────────────────────
P0 - Blocking
file.py:42 [sqlite] SQL injection risk
P1 - Should Fix
file.py:15 [quality] Function >50 lines
─────────────────────────────────────────────
Verdict: PASS | FIX_REQUIRED | BLOCKED
Verdict: P0>0 → BLOCKED, P1>2 → FIX_REQUIRED, else PASS
- Always include code-quality-auditor - Detected = pre-checked, available = unchecked - Spawn ALL in single message - P0 blocks, no exceptionsConverted and distributed by TomeVault — claim your Tome and manage your conversions.