code-review is agent-read markdown (skill) from initializ/forge: AI-powered code review for diffs and individual files using LLM analysis.
Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.
What the file says
# Code Review Skill
AI-powered code review that analyzes diffs and individual files for bugs, security issues, style violations, and improvement opportunities. Supports both local git diffs and GitHub pull requests.
## Authentication
Set at least one LLM API key:
```bash
# Option A: Anthropic
export ANTHROPIC_API_KEY="sk-ant-..."
# Option B: OpenAI or any OpenAI-compatible provider (Together, OpenRouter, Groq, ...)
export OPENAI_API_KEY="sk-..."
export OPENAI_BASE_URL="https://api.together.ai/v1" # only when not using openai.com
# Optional: override the model (defaults: claude-sonnet-4-20250514 / gpt-4o)
export REVIEW_MODEL="moonshotai/Kimi-K2.6"
# Optional: force a specific provider when both keys are set
export REVIEW_PROVIDER="openai" # or "anthropic"
```
**Provider selection** (auto-detected when `REVIEW_PROVIDER` is unset):
1. If `REVIEW_PROVIDER` is set, it wins.
2. Else if `REVIEW_MODEL` starts with `claude-` or `anthropic/`, use Anthropic.
3. Else if only one API key is set, use that provider.
4. Else (both keys, no model hint): use OpenAI.
…
Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.
GET https://markdownregistry.com/api/v1/artifacts/art_le7wjjw2zsploogz
GET https://markdownregistry.com/api/v1/resolve?ref=initializ/forge/code-review
GET https://markdownregistry.com/api/v1/blob/a6ab4f738025a57a5e228ae3cc6b77b25cee82f3b00d78f32b9f3fdd01a3c1cd
Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.
initializ/forge · forge-skills/local/embedded/code-plan/SKILL.md · Turn a task description and repository into a structured implementation plan (files to create, files to modify, tests…
initializ/forge · forge-skills/local/embedded/codegen-html/SKILL.md · Scaffold and iterate on standalone Preact + HTM applications with zero build dependencies
basicmachines-co/basic-memory · .agents/skills/code-review/SKILL.md · Use when reviewing Basic Machines code for house style, architecture risk, pre-merge hardening, or whether a change…
block/berd · .agents/skills/code-review/SKILL.md · Senior engineer code review focused on catching issues before they become PR comments. Reviews only changed lines…
sandbaseai/sandbase-harness · examples/basic/skills/code-review/SKILL.md · Reviews a supplied code path or diff for correctness, security, maintainability, and style without executing or…