← ClaudeAtlas

review-difflisted

Use when you want to visualize what changed before review or PR — generates a Markdown review file with C4 architecture diagrams and a code walkthrough of the current git diff. Not a correctness review; for bug-hunting use /code-review.
minhtran3124/agent-harness · ★ 3 · Code & Development · score 62
Install: claude install-skill minhtran3124/agent-harness
# PR Review Markdown Generator Generate a Markdown review file for the current uncommitted git changes (or a specified PR). Save it to `.review/review.md`. ## What to produce The file must contain three sections: ### 1. System Architecture Diagram (C4 Container Level) A single Mermaid flowchart showing the system architecture with the changed/new components highlighted: - Use `flowchart TD` (top-down) for the diagram - Show the request flow from user through frontend to backend - Group unchanged peer components into a single summary node (e.g. "Other 5 scenarios") - Highlight changed components with dark green fill/border for dark theme: `fill:#0d3320,stroke:#238636,stroke-width:3px,color:#aff0b5` - Highlight new components with dark green fill/border and a green circle emoji prefix: `fill:#0d3320,stroke:#238636,stroke-width:3px,color:#aff0b5` - Highlight data sources read by new code with dark blue: `fill:#0d2044,stroke:#388bfd,stroke-width:2px,color:#79c0ff` - Include a legend below the diagram ### 2. Component Detail Flowchart A Mermaid flowchart showing the internal logic flow of the changed component: - Show the decision tree / branching logic - Mark new code paths with dark green and green circle emoji: `fill:#0d3320,stroke:#238636,stroke-width:2px,color:#aff0b5` - Mark removed paths with dark red dashed and red circle emoji: `fill:#3d0f14,stroke:#da3633,stroke-width:2px,stroke-dasharray:5 5,color:#ffa198` - Mark unchanged paths with dark grey: `fill:#1c1c1c,st