一键导入
paw-impl-review
Implementation review activity skill for PAW workflow. Reviews implementation for quality, adds documentation, and returns structured verdict.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Implementation review activity skill for PAW workflow. Reviews implementation for quality, adds documentation, and returns structured verdict.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | paw-impl-review |
| description | Implementation review activity skill for PAW workflow. Reviews implementation for quality, adds documentation, and returns structured verdict. |
Execution Context: This skill runs in a subagent session, delegated by the PAW orchestrator. Return structured feedback (pass/fail + issues) to the orchestrator—do not make orchestration decisions or perform git operations.
Review implementation changes for quality and maintainability. Acts as quality gate between implementation and PR creation.
Reference: Follow Core Implementation Principles from
paw-workflowskill.
paw-implement addressed PR comments correctlyFocus on ensuring code is well-documented, readable, and maintainable.
Responsibilities:
Not responsibilities (handled elsewhere):
paw-implement)paw-git-operations)Act as a critical PR reviewer, not just a documentation pass:
Small refactors (do yourself): Remove unused parameters, dead code, extract duplicate utilities
Large refactors (coordinate): Restructuring, major changes → return blocked with reason, specific changes needed, and evidence (file:line references, test output)
Discover and enforce project-specific coding conventions from instruction files.
Discovery: Search for instruction files at repo root and .github/:
AGENTS.md, .github/AGENTS.md.github/copilot-instructions.md*.agent.md in project root or agents/ directory.cursor/rules or similar convention filesExtract and verify:
Enforcement: Non-adherence is a blocking issue, not a suggestion. If instructions specify a required command, failure = BLOCKED.
After review, the PAW agent receives:
Before reviewing code quality, verify the implementation covers all plan items:
### Changes Required, success criteria, and any explicit minimum commitmentsThis check catches partial implementations where the agent implements some items but forgets others, or ships scaffolding where the plan promised concrete deliverables.
Required context:
git diff or git logReview focus:
Allowed improvements:
Constraints:
paw-git-operations artifact staging discipline — check artifact lifecycle mode before staging .paw/ filesWhen reviewing Implementer's response to PR comments:
Required context:
Verification:
blockedConstraints:
Return structured feedback to PAW agent:
PASS: Implementation meets quality criteria, ready for PR
BLOCKED: Implementation needs rework
After returning PASS: The PAW orchestrator will handle push/PR creation (via
paw-git-operations) and then invokepaw-transition. This skill does NOT push or create PRs—it only returns the verdict.
## Review Result: [PASS|BLOCKED]
### Summary
[One-sentence summary of review outcome]
### Tests
- Status: [PASS|FAIL]
- [Details if relevant]
### Commits Made
- [List of commits added during review, if any]
### Issues Found
[For BLOCKED only: specific issues requiring Implementer attention]
### Notes for Reviewer
[Optional: items flagged for human PR reviewer attention]
Orchestrates the PAW Review workflow, coordinating activity skills to analyze PRs and generate comprehensive review feedback.
Shared git mechanics for PAW activity skills including branch naming conventions, strategy-based branching logic, and selective staging discipline.
Bootstrap skill for PAW workflow initialization. Creates WorkflowContext.md, directory structure, and git branch. Runs before workflow skill is loaded.
Workflow status activity skill for PAW workflow. Diagnoses workflow state, recommends next steps, explains PAW process, and optionally posts updates to Issues/PRs.
Pre-PR review activity skill for PAW workflow. Reviews implementation against spec before Final PR creation with configurable single-model, multi-model, or society-of-thought execution.
Implementation activity skill for PAW workflow. Executes plan phases with code changes, documentation phases, and PR review comment handling. One phase per invocation.