원클릭으로
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 |