← ClaudeAtlas

reviewlisted

Pi-native Codeflare /review workflow. Run a full multi-perspective codebase review from 6 specialized subagents, cross-reference findings, filter against architecture decisions and prior triage, optionally verify externally, then triage interactively with the user. Static analysis only - no runtime, build, or test execution.
nikolanovoselec/codeflare · ★ 24 · Code & Development · score 68
Install: claude install-skill nikolanovoselec/codeflare
# Pi Review Workflow This skill is the Pi-native implementation of Codeflare `/review`. The `/review` command injects this skill and appends one line: ``` User command: /review --all|--diff [--deep] [--verify-high] [scope-hint] ``` Parse scope and flags from that line, then run the phases below. This is the user-invoked review workflow, NOT PR-boundary enforcement. Do not run the git-review-pipeline. Review the requested scope and report findings. **Review mode:** static analysis only. Never run builds, tests, or linters - the container has 1 vCPU. Read and analyze code only. ## Pi tool mapping (load-bearing) - **Subagents:** spawn via Pi's `Agent` tool with `subagent_type` set to the agent name (`security-reviewer`, `architect`, `code-reviewer`, `refactor-cleaner`, `tdd-guide`, `doc-updater`, `deep-reviewer`). There is no "Task tool" on Pi. - **Graph queries:** use Pi-native `graphify_query`, `graphify_path`, `graphify_explain`. Never use `mcp__graphify__*` names. When a native tool resolves the wrong root (e.g. it looks at `/home/user/workspace/graphify-out/graph.json` while the active repo is a child), fall back to the CLI with `--graph <repo>/graphify-out/graph.json`: ```bash graphify query "<question>" --graph <repo>/graphify-out/graph.json graphify path "A" "B" --graph <repo>/graphify-out/graph.json graphify explain "X" --graph <repo>/graphify-out/graph.json ``` - **Plan entry:** Pi has no EnterPlanMode primitive. Invoke the `Plan` agent OR produce an ex