agent-review
Get external agent review and feedback. Routes Anthropic models through Claude Agent SDK (uses local subscription) and other models through OpenRouter API. Use for code review, architecture feedback, or any external consultation.
npx skills add majiayu000/claude-skill-registry --skill agent-review-civitai-civitai --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Agent Review Get feedback from an external AI agent. Useful for code review, architecture decisions, or getting a second opinion. ## Running Commands ```bash echo "code or prompt" | node .claude/skills/agent-review/query.mjs [options] "Your question" # or node .claude/skills/agent-review/query.mjs --file <path> [options] "Your question" ``` ### Options | Flag | Short | Description | |------|-------|-------------| | `--model <model>` | `-m` | Model or alias (default: gemini) | | `--file <path>` | `-f` | Read input from file instead of stdin | | `--lines <start-end>` | `-l` | Extract specific lines from file (e.g., 50-100) | | `--context <path>` | `-c` | Additional context file (can repeat) | | `--system <prompt>` | `-s` | Custom system prompt | | `--temperature <n>` | `-t` | Temperature 0-1 (default: 0.7) | | `--quiet` | `-q` | Suppress status messages and usage stats | | `--list` | | List available models | | `--json` | | Output raw JSON response | ### Available Models | Model ID | Aliases | Provider | Notes | |----------|---------|----------|-------| | `google/gemini-3-pro-preview` | `gemini`, `g3` | OpenRouter | Default - good for external perspective | | `openai/gpt-5.1-codex`
- Running Commands
- Options
- Available Models
- Environment Variables
- Examples
- Code Review
- Reviewing Specific Lines
- With Context Files
- Architecture Feedback
- Custom System Prompt
- Temperature Control
- Using Anthropic Models (Local Subscription)
- Quiet Mode (for scripting)
- Output
echo "code or prompt" | node .claude/skills/agent-review/query.mjs [options] "Your question" or node .claude/skills/agent-review/query.mjs --file <path> [options] "Your question" Review a file for security issues cat src/server/auth.ts | node .claude/skills/agent-review/query.mjs \ Review with a specific model (using alias) node .claude/skills/agent-review/query.mjs -m gpt -f src/utils/parser.ts \ Review a specific function (lines 50-100) node .claude/skills/agent-review/query.mjs \ Review a single line
What does the agent-review skill do?
Get external agent review and feedback. Routes Anthropic models through Claude Agent SDK (uses local subscription) and other models through OpenRouter API. Use for code review, architecture feedback, or any external consultation.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill agent-review-civitai-civitai --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
