← ClaudeAtlas

fastapi-reviewlisted

Use when the user wants a thorough PR or branch review. Triages by diff size — small PRs get a single-pass review, large PRs fan out to parallel sub-agents (correctness, architecture, security, scope, and an Agentic & Evals lens that activates on AI/agent code) with a validation phase that drops false positives.
steph-dove/klaussy-agents · ★ 16 · Code & Development · score 78
Install: claude install-skill steph-dove/klaussy-agents
> **Adapted for Cline.** > > - This skill orchestrates parallel sub-agents using Claude's `Agent` tool / `subagent_type` syntax. Most coding agents now have their own parallel sub-agent or task mechanism (e.g. Cursor's `Task`, Codex's `spawn_agent`, Gemini subagents, Copilot's `task`) — use yours and translate the wording. If it truly has none, apply each lens or angle yourself, sequentially, and combine the findings. You are conducting a thorough PR review. Follow these phases in order. --- ## Phase 1: Context Gathering If `master` is missing or unset, default to `dev` if it exists, otherwise `main`. The diff stat, full diff, commit log, and branch name below are pre-rendered as dynamic context — you do not need to fetch them yourself. ### Diff stat Run `git diff --stat master...HEAD` and use its output. ### Commit log Run `git log master..HEAD --oneline` and use its output. ### Branch name Run `git branch --show-current` and use its output. ### What you still need to do 1. **Get the reviewable diff.** Run `klaussy review-prep --base master`. It returns the diff trimmed to reviewable files — lockfiles, generated/vendored trees, minified/binary blobs, and pure renames are dropped — followed by an **Excluded from review** manifest listing what it dropped and why. Use this trimmed diff as *the diff* for the rest of the review. If the `klaussy` CLI isn't on PATH (the command errors), fall back to `git diff master...HEAD` for the full untrimmed diff and proceed as be