ワンクリックで
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 |