원클릭으로
rdm-review
Review implementation of an rdm phase or task
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review implementation of an rdm phase or task
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate user documentation from a completed rdm roadmap
Implement the next phase of an rdm roadmap
Create an rdm roadmap with phases for a topic
Work on rdm tasks
| name | rdm-review |
| description | Review implementation of an rdm phase or task |
| allowed-tools | ["Read","Bash","Glob","Grep","Agent"] |
Review the implementation of an rdm phase or task. $ARGUMENTS should be <roadmap-slug> <phase-number> for a phase, or --task <task-slug> for a task.
Parse arguments: determine whether this is a phase review or task review from $ARGUMENTS.
--task, the next argument is a task slug.Read the acceptance criteria:
rdm phase show <phase-number> --roadmap <slug> --project graphql-serverrdm task show <slug> --project graphql-server
Extract the acceptance criteria, steps, and any other requirements from the body.Identify the implementation diff: use git log --oneline -20 and git diff to understand what was recently changed. Identify the commits and files relevant to this phase or task.
Dispatch parallel review agents using the Agent tool. Launch at least two agents concurrently:
Agent 1 — AC Compliance Reviewer:
Agent 2 — Code Quality Reviewer:
Collect and consolidate results from both agents into a single report:
Present the report to the user in a clear, structured format.
Offer to create rdm tasks for any actionable issues found:
rdm task create <slug> --title "Review finding: description" --body "Details." --no-edit --project graphql-server