Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

external-llm-reviewexternal LLM 审查

Agent Skill

external-llm-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

198

周安装

8

GitHub Stars

37

下载量

62
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:external-llm-review(external LLM 审查)
来源仓库:https://github.com/majesticlabs-dev/majestic-marketplace
仓库路径:skills/external-llm-review
安装命令:
npx skills add https://github.com/majesticlabs-dev/majestic-marketplace --skill external-llm-review
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/majesticlabs-dev/majestic-marketplace --skill external-llm-review

简介

用于发起外部 LLM 对代码变更的独立审查,提供结构化反馈并与 Claude 评审对比。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • external-llm-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

External LLM Code Review

Audience: Developers seeking second-opinion code reviews from external LLMs. Goal: Invoke external LLM CLIs in sandbox/read-only mode to review code changes, then present structured findings for comparison with Claude's review.

When to Use

  • High-stakes code changes (security, breaking changes, architecture shifts)
  • Validating Claude's code review with diverse AI perspectives
  • Surfacing blind spots through cross-model review
  • When you want explicit control over review focus areas

General Workflow

  1. Determine review scope (uncommitted, staged, branch, specific commit)
  2. Gather the diff and project context (CLAUDE.md, lessons)
  3. Build a review prompt with context, focus areas, and the diff
  4. Execute the external CLI in sandbox/read-only mode
  5. Parse and structure findings by severity

Gathering the Diff

Based on the requested scope:

# Uncommitted changes (default)
git diff HEAD

# Staged only
git diff --cached

# Against base branch
git diff main...HEAD

# Specific commit
git show <sha>

# Specific files
git diff -- path/to/file.rb

Gathering Project Context

# Project conventions
cat CLAUDE.md 2>/dev/null | head -200

# Institutional memory / lessons
ls .agents/lessons/*.md 2>/dev/null && \
  head -50 .agents/lessons/*.md

Lessons provide project-specific patterns and anti-patterns discovered during development.

Building the Review Prompt

Construct a prompt that includes:

## Project Context

<Insert relevant CLAUDE.md sections>

## Project Lessons

<Insert relevant lessons from .agents/lessons/ if available>

## Focus Areas

<Insert user-specified focus areas, or use defaults:>
1. Logic errors and bugs
2. Security vulnerabilities
3. Performance issues
4. Error handling gaps
5. Code clarity and maintainability

## Changes to Review

<Insert git diff>

## Instructions

Review the changes above. For each issue found:
1. Specify the file and line number
2. Describe the issue clearly
3. Suggest a fix if applicable
4. Rate severity: Critical / Important / Suggestion

Provide a final verdict: APPROVE, REQUEST CHANGES, or NEEDS DISCUSSION.

Codex Code Review

Prerequisites

  • Codex CLI installed (codex --version to verify)
  • OpenAI authentication configured (codex login)
  • Git repository with changes to review

Available Models

ModelUse CaseCost
gpt-5.2-codexLatest, high reasoning (default)High
gpt-5.1-codex-maxMaximum thoroughnessHigh
gpt-5.1-codexBalancedMedium
gpt-5.1-codex-miniFast reviewsLow

CLI Execution

codex exec \
  -s read-only \
  -m gpt-5.2-codex \
  -c model_reasoning_effort="xhigh" \
  "<review-prompt>"

For large diffs, pipe via stdin:

cat <<'EOF' | codex exec -s read-only -m gpt-5.2-codex -c model_reasoning_effort="xhigh" -
<review-prompt-content>
EOF

Codex Review Examples

# Basic review (uncommitted changes)
CONTEXT=$(cat CLAUDE.md 2>/dev/null | head -200)
DIFF=$(git diff HEAD)
codex exec -s read-only -m gpt-5.2-codex -c model_reasoning_effort="xhigh" \
  "Review these changes. Context: $CONTEXT. Diff: $DIFF"

# Review with specific focus
codex exec -s read-only -m gpt-5.2-codex -c model_reasoning_effort="xhigh" \
  "Review for security vulnerabilities and SQL injection risks only. Diff: $(git diff HEAD)"

# Review against main branch
DIFF=$(git diff main...HEAD)
codex exec -s read-only -m gpt-5.2-codex -c model_reasoning_effort="xhigh" \
  "Review all changes on this feature branch. $DIFF"

Why codex exec over codex review

Aspectcodex reviewcodex exec (recommended)
PromptCodex's opinionatedCustom, project-aware
ContextNoneCLAUDE.md, lessons
FocusGenericExplicit guidance
FlexibilityLimitedFull control

Codex Error Handling

ErrorResolution
CLI not foundInstall: npm install -g @openai/codex then codex login
Auth failedRun: codex login
No changes foundVerify scope: uncommitted, staged, branch, or commit SHA
Diff too largeReview specific files, break into smaller commits, or use --staged incrementally
Context gathering failedProceed with generic review; note that CLAUDE.md/.agents/lessons/ improve results

Gemini Code Review

Prerequisites

  • Gemini CLI installed (gemini --version to verify)
  • Google authentication configured
  • Git repository with changes to review

Available Models

ModelUse CaseCost
gemini-2.5-flashFast reviewsLow
gemini-2.5-proBalanced reasoningMedium
gemini-3.0-pro-previewLatest Gemini 3 Pro (default)Medium

Parse model from prompt if specified (e.g., "using flash, review..." or "model: gemini-2.5-pro").

CLI Execution

gemini --sandbox --output-format text --model <model> "<review-prompt-with-diff>"

Important flags:

  • --sandbox - Prevents code modifications
  • --output-format text - Plain text output
  • --model <model> - Model to use (default: gemini-3.0-pro-preview)

Gemini Review Examples

# Review unstaged changes
DIFF=$(git diff)
gemini --sandbox --output-format text \
  "Review this code diff for bugs, security issues, and code quality problems. Provide file:line references.

$DIFF"

# Review with focus areas
DIFF=$(git diff --cached)
gemini --sandbox --output-format text "$(cat <<EOF
Review this diff focusing on:
1. SQL injection vulnerabilities
2. N+1 query patterns
3. Missing error handling
4. Breaking API changes

Provide specific file:line references for each issue.

Diff:
$DIFF
EOF
)"

# Review branch changes
DIFF=$(git diff main...HEAD)
gemini --sandbox --output-format text \
  "Review this branch diff for production readiness. Check for bugs, security issues, performance problems, and test coverage gaps.

$DIFF"

# Review specific files if diff is too large
DIFF=$(git diff -- app/models/user.rb)
gemini --sandbox --output-format text "Review this diff:

$DIFF"

Gemini Error Handling

ErrorResolution
CLI not foundInstall and authenticate following official docs
No changes foundVerify scope: unstaged, staged, branch
Diff too largeSplit into smaller chunks, review file-by-file, or summarize large files

Output Format

## [Codex/Gemini] Code Review Results

**Scope:** [uncommitted / staged / base:main / commit:abc123 / files]
**Model:** [model used] (via [Codex/Gemini] CLI)

### Context Used
- CLAUDE.md: [Yes/No - summary of relevant sections]
- Lessons: [Yes/No - count of lessons applied]
- Focus Areas: [List of focus areas]

### Summary
[High-level assessment]

### Issues Found

#### Critical
- **[Issue]** - `file:line` - [Description and fix suggestion]

#### Important
- **[Issue]** - `file:line` - [Description]

#### Suggestions
- **[Suggestion]** - `file:line` - [Description]

### Verdict
[APPROVE / REQUEST CHANGES / NEEDS DISCUSSION]

### Unique Insights
Issues found that might not be in Claude's review:
- [Insight 1]
- [Insight 2]

### Raw Output
<details>
<summary>Full Review</summary>

[Complete unedited response]

</details>

Comparing Results with Claude's Review

When presenting results from external LLMs alongside Claude's review, highlight:

  1. Consensus - Issues both Claude and the external LLM identified
  2. External-only - Issues only the external LLM caught (Claude's blind spots)
  3. Claude-only - Issues only Claude caught (for reference)
  4. Conflicts - Where Claude and the external LLM disagree

Safety Constraints

  • Always use sandbox/read-only mode - No code modifications
  • Truncate large diffs - Don't overwhelm with huge diffs
  • No secrets in prompts - Scrub sensitive data from diffs if needed
  • Verify suggestions - External LLM feedback is one perspective, not authoritative

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.41%
按下载量换算23

Claude

30.61%
按下载量换算19

Cursor

20.52%
按下载量换算13

Gemini CLI

8.6%
按下载量换算5

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills