一键导入
create-review-checklist
Generate review checklists for different change types. Use to customize review focus based on what was changed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate review checklists for different change types. Use to customize review focus based on what was changed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run section orchestrators to coordinate multi-component workflows. Use when starting work on a section.
Validate agent YAML frontmatter and configuration. Use before committing agent changes or in CI.
Reply to PR review comments using the correct GitHub API endpoint. Use when responding to inline code review feedback (not gh pr comment).
Run Mojo tests using mojo test command. Use when executing tests or verifying test coverage.
Track implementation progress against plan. Use to monitor component delivery and identify blockers.
Check agent configuration coverage across hierarchy levels and phases. Use to ensure complete agent system coverage.
| name | create-review-checklist |
| description | Generate review checklists for different change types. Use to customize review focus based on what was changed. |
| category | review |
| mcp_fallback | none |
Generate customized review checklists based on type of change.
# Detect change type from PR
gh pr diff <pr> --name-only | grep -E "\\.mojo$|\\.py$|\\.md$|test_"
# Categorize changes
gh pr diff <pr> | head -100 | grep "^[+-]" | wc -l # Changed lines
# Get file counts by type
gh pr diff <pr> --name-only | sed 's/.*\.//' | sort | uniq -c
Mojo Implementation:
*.mojo or *.🔥Python Code:
*.pyTests:
test_*.py, test_*.mojoDocumentation:
*.md, docstrings, commentsConfiguration:
*.toml, *.yaml, .yaml, *.jsonMojo Implementation Checklist:
__init__ use out self^Python Code Checklist:
Test Code Checklist:
Documentation Checklist:
Configuration Checklist:
Report checklist with:
PR changing Mojo code + Tests + Docs:
Critical (must fix):
High (should fix):
Medium (nice to have):
Low (optional):
| Problem | Solution |
|---|---|
| Mixed change types | Create separate checklists for each type |
| Unclear type | Inspect files to determine type |
| Complex change | Break into multiple checklists |
| Specialized domain | Add domain-specific items to template |
| New pattern | Create new checklist template |