What problem does it solve? Self-reviewing code with full project context normalizes away unclear responsibilities, hidden assumptions, and reinvented wheels. This Skill runs a cold-read review of all files changed since main, catching design drift and logic issues that the original author overlooks. ## Core Features & Use Cases - Four-pass review pipeline: architectural sweep of the full codebase, per-file design review, per-unit logic review, and a holistic diff review. - Cold-read framing: isolated single-file calls via llm -a ensure the reviewer model has no prior context, surfacing weak contracts, unclear naming, and unnecessary complexity. - Structured report output: writes flagged findings to docs/appendix/reviews/YYYY-MM-DD-<basename>.md and appends to an index, without modifying any code. - Use Case: After finishing a feature branch, run the review to get a junior-developer comprehension check on every changed Go or Python file before opening a pull request. ## Quick Start Run the review-code skill on all files changed since main to generate a flagged findings report.