ワンクリックで
pwrl-review-report
Generate comprehensive review report and determine final approval status.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate comprehensive review report and determine final approval status.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Extract, classify, deduplicate, structure, and save learnings from code, commits, tasks, and documentation
Create structured implementation plans with three tiers (Fast/Standard/Deep). Pure skill pipeline orchestrator—no agent routing.
Review code changes through 4-phase micro-skill pipeline (scope, prepare, analyze, report)
Execute implementation work efficiently through 4-phase micro-skill pipeline
Verify repository state and confirm session completion before committing.
Create a clear session commit with state and next steps. Orchestrates checkpoint and commit micro-skills, optionally chains to pwrl-learnings.
SOC 職業分類に基づく
| name | pwrl-review-report |
| description | Generate comprehensive review report and determine final approval status. |
| argument-hint | [analyze artifact from pwrl-review-analyze] |
Purpose: Final phase of review workflow. Generates comprehensive, human-readable report from analysis findings, determines approval verdict, and collects user sign-off before code is ready to merge.
Expects artifact from pwrl-review-analyze with:
analyze_id: YYYY-MM-DD-UNN-analyze
findings:
code_quality: [list]
security: [list]
tests: [list]
documentation: [list]
integration: [list]
critical_issues: [count]
major_issues: [count]
minor_issues: [count]
recommendation: approved | request-changes | rejected
Emit report artifact. See artifact-schemas.md for the complete schema.
Artifact stored for merge/deployment workflow.
Check that input artifact has:
analyze_idIf verification fails:
Code Quality Section:
Security Section:
Test Coverage Section:
Documentation Section:
Integration Section:
Score formula:
Quality Score = (Quality% × 0.3) + (Security% × 0.3) + (Coverage% × 0.2) + (Docs% × 0.2)
Interpretation:
See verdict-criteria.md for the complete decision matrix, quality score formula, and verdict determination logic.
Write clear explanation:
APPROVED Example:
This code change is well-structured and thoroughly tested. All security checks passed,
coverage meets required threshold (92% ≥ 80%), and documentation is complete.
Ready to merge.
REQUEST CHANGES Example:
The implementation is mostly solid, but has 4 major issues that should be addressed
before merging:
1. Test coverage (78%) is below required threshold (80%)
2. SQL query needs parameterization (security MAJOR)
3. README missing documentation for new API
4. One edge case not covered in tests
Please fix these items and resubmit for review.
REJECTED Example:
This code has critical blockers that must be addressed before proceeding:
1. Potential SQL injection vulnerability (CRITICAL security)
2. Build fails due to missing dependency
Please resolve these issues and discuss the approach with the team before resubmitting.
Format for clarity:
════════════════════════════════════════════════════════════
CODE REVIEW REPORT
════════════════════════════════════════════════════════════
VERDICT: [APPROVED | REQUEST CHANGES | REJECTED]
─────────────────────────────────────────────────────────
📊 QUALITY METRICS
Code Quality: ████████░░ 85%
Security: ██████████ 100%
Test Coverage: ███████░░░ 75%
Documentation: █████████░ 90%
─────────────────────────────
OVERALL SCORE: ████████░░ 87%
🔴 Critical Issues: 1
🟠 Major Issues: 2
🟡 Minor Issues: 3
─────────────────────────────────────────────────────────
[Full findings sections with file:line details]
─────────────────────────────────────────────────────────
✓ APPROVED for merge
Ready to proceed!
════════════════════════════════════════════════════════════
Ask user to sign off:
Question: Do you approve this code change for merge?
Options:
- Approve: Code is good to go; proceed with merge
- Changes: Request changes from implementer; explain issues
- Clarify: Need more information before deciding
If Approve:
user_approval: trueready_to_merge: trueIf Changes:
request-changesIf Clarify:
Create final report artifact with:
Emit artifact for merge/deployment workflow.
See error-and-testing.md for comprehensive error recovery strategies, prevention tactics, and test coverage expectations for this phase.