원클릭으로
docs-audit-review
Reviews documentation fix PRs for completeness and accuracy against their source issues. Acts as a quality gate before merge.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Reviews documentation fix PRs for completeness and accuracy against their source issues. Acts as a quality gate before merge.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Verifies features and decisions align with project constitution. Use when evaluating new features, resolving design conflicts, or ensuring constitutional compliance.
For use when a new issue/task has been identified and needs to be formally captured using the Wingman MCP issue management system. Use this skill to create new issues via the issues_create MCP tool with appropriate metadata and structured content.
Develops project constitutional principles through Socratic questioning. Use when establishing design values, creating project governance, or resolving ambiguous design decisions.
Fixes documentation issues on isolated worktrees with PRs. Processes issues from docs-audit-scan in parallel where possible.
Parallelized documentation audit that scans for completeness, accuracy, consistency, and staleness, then creates implementation-ready fix issues.
Perform comprehensive project housekeeping - update roadmap, reconcile issues with implementation reality, organize completed work, and identify drift. This is a workflow skill that coordinates multiple parallel subagents for efficiency. Use when user says something like "run housekeeping", "do your housekeeping" or "clean up project state".
| name | docs-audit-review |
| description | Reviews documentation fix PRs for completeness and accuracy against their source issues. Acts as a quality gate before merge. |
<required_context>
pr_numbers input from docs-audit-fix (array of PR numbers)gh CLI installed and authenticatedissues_get (with include_body: true)</required_context>
<available_agent_types>
This is a workflow skill -- it coordinates parallel reviewer subagents, one per PR.
</available_agent_types>
Why sequential: Need to map PRs to their source issues before dispatching reviewers.
Task: Build a review manifest mapping each PR to its acceptance criteria.
Approach:
pr_numbers input to get the list of PR numbersgh pr view <number> --json body,title,numberCloses #X / Fixes #X references)issues_get MCP tool (with include_body: true)PR #101:
Issues: [#45, #46]
Acceptance criteria:
- [ ] Fix broken path to gateway/README.md
- [ ] Update MCP tool parameter docs
- [ ] Add missing code example for workflow_run
Output: Review manifest mapping PR numbers to acceptance criteria.
Why parallel: Each PR review is independent -- dispatch all reviewers in a single message.
Launch one reviewer subagent per PR using the Task tool. All Task calls in a single message for true parallelism.
Each reviewer agent receives these instructions:
Reviewer Agent Instructions:
Read the PR diff:
gh pr diff <number>
Check every acceptance criterion: For each criterion from the linked issue:
Check for regressions:
Verify accuracy against current code:
Produce verdict:
If all acceptance criteria are met and no regressions found:
DOCS_REVIEW_PASS
PR #<number>: All [N] acceptance criteria met.
No regressions detected.
If any criteria are not met or regressions found:
DOCS_REVIEW_FAIL
PR #<number>: [M]/[N] acceptance criteria met.
NOT MET:
- <criterion> -- <what is missing or wrong>
REGRESSIONS:
- <description of regression>
Why sequential: Needs results from all reviewer agents to take action.
Task: Process review verdicts and take appropriate action on each PR.
Approach:
3.1 Process Verdicts
For each reviewer result:
DOCS_REVIEW_PASS or DOCS_REVIEW_FAIL status line3.2 Act on Results
For DOCS_REVIEW_PASS:
gh pr review <number> --approve --body "Documentation changes verified against acceptance criteria. All criteria met, no regressions detected."
For DOCS_REVIEW_FAIL:
gh pr review <number> --request-changes --body "Documentation review found issues:
## Unmet Acceptance Criteria
- <criterion> -- <what is missing>
## Regressions
- <regression description>
Please address the above before merging."
3.3 Generate Summary Report
DOCS_AUDIT_REVIEW_COMPLETE
PRs reviewed: [count]
Approved: [count]
Changes requested: [count]
Approved PRs:
#<pr_number> - <title>
PRs needing changes:
#<pr_number> - <title>
- <finding 1>
- <finding 2>
Output: The review result object containing:
approved: array of approved PR numberschangesRequested: array of { prNumber, findings } for PRs that need changessummary: the summary report text<success_criteria>
gh pr review --approvegh pr review --request-changes<error_handling>
Reviewer agent fails to complete:
PR has been merged or closed before review:
Linked issue not found:
Cannot determine pass/fail:
DOCS_REVIEW_FAIL with specific concerns listed</error_handling>