← ClaudeAtlas

build-review-mdlisted

Use this skill when the user wants to create or set up a REVIEW.md configuration file for their repository. Trigger for ANY of these: (1) user says "create REVIEW.md", "set up REVIEW.md", or "configure review rules", (2) code-gauntlet Phase 2d detects no REVIEW.md and suggests creating one, (3) user wants to customize what the code-gauntlet skill focuses on or ignores, (4) user asks "how do I configure the reviewer" or "how do I set review rules". Do NOT trigger for: reviewing code (use code-gauntlet), explaining what REVIEW.md does in the abstract, or editing an already-complete REVIEW.md the user is satisfied with. This skill NEVER loads into the main code-gauntlet context — it is a standalone configuration wizard.
liatrio-labs/claude-code-gauntlet · ★ 12 · Code & Development · score 72
Install: claude install-skill liatrio-labs/claude-code-gauntlet
# REVIEW.md Builder Guided wizard that creates a REVIEW.md configuration tailored to the repo's actual languages, frameworks, and priorities. Produces a root REVIEW.md and subdirectory configs only when the multi-stack test justifies them. **This skill produces configuration files, not code review.** Do not run review agents or analyze code for bugs. Stay in configuration mode until exit. --- ## Step 1: Detect Scan the repository to understand what you are configuring. Do this silently — do not ask the user to describe their stack. **Languages** — scan file extensions: - `.ts`, `.tsx` → TypeScript/React - `.js`, `.jsx` → JavaScript - `.py` → Python - `.go` → Go - `.rs` → Rust - `.cs` → C#/.NET - `.java` → Java - `.rb` → Ruby - `.php` → PHP **Frameworks and runtimes** — check for manifest files: - `package.json` → Node/JS/TS ecosystem; read `dependencies` and `devDependencies` for React, Next.js, Vue, Express, NestJS, RTK Query, Zod, Vitest, Jest - `requirements.txt` / `pyproject.toml` / `setup.py` → Python; check for Django, FastAPI, SQLAlchemy, pytest - `Cargo.toml` → Rust; check for tokio, axum, sqlx - `go.mod` → Go; check for gin, echo, gorm - `pom.xml` / `build.gradle` → Java/Kotlin; check for Spring Boot, Hibernate - `*.csproj` / `*.sln` → .NET; check for ASP.NET Core, EF Core, xUnit, NUnit - `Gemfile` → Ruby on Rails **Multi-stack / mono-repo detection** — a repo is multi-stack when it contains multiple package manifest files in different subdirectories (e.g.,