Agent skill · Backend & API

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/agent/agent-review-civitai-civitai/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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`

What's inside
Steps it walks through
  1. Running Commands
  2. Options
  3. Available Models
  4. Environment Variables
  5. Examples
  6. Code Review
  7. Reviewing Specific Lines
  8. With Context Files
  9. Architecture Feedback
  10. Custom System Prompt
  11. Temperature Control
  12. Using Anthropic Models (Local Subscription)
  13. Quiet Mode (for scripting)
  14. Output
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going