Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

llm-as-judgeLLM AS judge 搜索

Agent Skill

llm-as-judge 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

729

周安装

31

GitHub Stars

1

下载量

255
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill llm-as-judge

简介

llm-as-judge 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理仓库状态和协作事项。

  • 适用于围绕代码变更、仓库状态或协作流程进行信息梳理的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

LLM-as-Judge

Overview

Some quality criteria are inherently subjective — tone of voice, visual aesthetics, UX feel, documentation clarity, code readability. These cannot be verified by deterministic tests. The LLM-as-judge pattern provides structured, repeatable evaluation using an LLM reviewer with defined rubrics, ensuring subjective quality is measured consistently.

Announce at start: "I'm using the llm-as-judge skill to evaluate subjective quality."


Phase 1: Determine Evaluation Method

Goal: Decide whether LLM-as-judge is the right tool.

Decision Table: LLM-as-Judge vs Deterministic Tests

Criterion TypeMethodExample
Objective, measurableDeterministic test"Response time < 200ms"
Structural, verifiableDeterministic test"Returns valid JSON"
Subjective, qualitativeLLM-as-judge"Error messages are friendly and helpful"
Aesthetic, perceptualLLM-as-judge"UI feels clean and modern"
Linguistic, tonalLLM-as-judge"Documentation is clear for beginners"
Holistic, experientialLLM-as-judge"The onboarding flow feels intuitive"

Rule of thumb: If you can write a boolean assertion, use a deterministic test. If evaluation requires judgment, use LLM-as-judge.

STOP — Do NOT proceed to Phase 2 until:

  • Confirmed that criteria are genuinely subjective
  • Deterministic testing has been ruled out
  • Specific artifacts to evaluate are identified

Phase 2: Define Rubric

Goal: Create evaluation dimensions with weights and anchor points.

Actions

  1. Define 3-5 evaluation dimensions
  2. Assign weights (must sum to 1.0)
  3. Define anchor points for each dimension (1=worst, 5=adequate, 10=best)
  4. Set passing threshold

Rubric Structure

DimensionWeightScaleAnchor: 1Anchor: 5Anchor: 10
[Name]0.X1-10[Worst case][Adequate][Excellent]

Threshold Selection Table

Quality LevelThresholdUse For
Minimum viable5.0Internal docs, draft content
Production quality7.0User-facing content, public APIs
Excellence8.5Marketing, critical UX flows

STOP — Do NOT proceed to Phase 3 until:

  • 3-5 dimensions are defined with clear descriptions
  • Weights sum to exactly 1.0
  • Anchor points are specific (not vague)
  • Passing threshold is set before evaluation

Phase 3: Evaluate

Goal: Submit the artifact with rubric to an LLM reviewer.

Review Request Structure

{
  criteria: "Description of what to evaluate and the quality standard",
  artifact: "The content to be evaluated (code, text, UI markup, etc.)",
  rubric: [
    { dimension: "Clarity", weight: 0.3, description: "Is the content easy to understand?" },
    { dimension: "Tone", weight: 0.3, description: "Is the tone appropriate for the audience?" },
    { dimension: "Completeness", weight: 0.2, description: "Does it cover all necessary points?" },
    { dimension: "Engagement", weight: 0.2, description: "Does it hold the reader's interest?" }
  ],
  passing_threshold: 7.0,
  intelligence: "opus"
}

Review Response Structure

{
  scores: [
    { dimension: "Clarity", score: 8, reasoning: "Well-structured with clear headings..." },
    { dimension: "Tone", score: 7, reasoning: "Professional but occasionally too formal..." },
    { dimension: "Completeness", score: 9, reasoning: "Covers all key topics..." },
    { dimension: "Engagement", score: 6, reasoning: "Could use more examples..." }
  ],
  weighted_score: 7.4,
  pass: true,
  summary: "Overall good quality with minor tone and engagement improvements suggested.",
  suggestions: [
    "Add a real-world example in section 3",
    "Use more conversational language in the introduction"
  ]
}

STOP — Do NOT proceed to Phase 4 until:

  • Artifact has been submitted with full rubric
  • Each dimension has been scored independently
  • Reasoning is provided for every score
  • Weighted total is calculated

Phase 4: Iterate or Accept

Goal: Act on the evaluation results.

Result Action Table

ResultActionMax Iterations
Pass (score >= threshold)Accept the artifact, proceedDone
Marginal fail (within 1 point)Apply suggestions, re-evaluate once1
Clear fail (> 1 point below)Significant revision, apply all suggestions2
Repeated fail (3+ attempts)Escalate — rubric or approach may need adjustmentEscalate

STOP — Evaluation complete when:

  • Artifact passes threshold, OR
  • 3 iterations completed and escalation decision made

Common Rubric Templates

Documentation Quality

Clarity (0.3): Is the content easy to understand for the target audience?
  1=incomprehensible  5=adequate but requires re-reading  10=crystal clear
Accuracy (0.3): Is the information technically correct?
  1=factually wrong  5=mostly correct  10=perfectly accurate
Completeness (0.2): Does it cover all necessary topics?
  1=missing critical info  5=covers basics  10=comprehensive
Examples (0.2): Are there sufficient, relevant code examples?
  1=no examples  5=some examples  10=rich, varied examples
Threshold: 7.0

Error Message Quality

Helpfulness (0.4): Does the message help the user fix the problem?
  1=no help at all  5=vague direction  10=exact fix steps
Clarity (0.3): Is the message easy to understand?
  1=cryptic  5=understandable  10=immediately clear
Tone (0.2): Is the tone empathetic and non-blaming?
  1=hostile/blaming  5=neutral  10=empathetic and supportive
Actionability (0.1): Does it suggest a concrete next step?
  1=no suggestion  5=vague suggestion  10=specific actionable step
Threshold: 7.5

Code Readability

Naming (0.3): Are variable/function names descriptive and consistent?
  1=single letters everywhere  5=adequate  10=self-documenting
Structure (0.3): Is the code logically organized?
  1=spaghetti  5=functional  10=elegant and clear
Simplicity (0.2): Is the code as simple as possible (but not simpler)?
  1=over-engineered  5=reasonable  10=minimal and clear
Documentation (0.2): Are complex sections adequately commented?
  1=no comments where needed  5=some comments  10=well-documented why
Threshold: 7.0

UX Copy

Clarity (0.3): Is the copy easy to understand?
  1=confusing  5=understandable  10=immediately clear
Brevity (0.2): Is it concise without losing meaning?
  1=verbose  5=adequate length  10=perfectly concise
Tone (0.2): Does it match the brand voice?
  1=off-brand  5=neutral  10=perfectly on-brand
Actionability (0.2): Do CTAs clearly communicate what happens next?
  1=unclear  5=adequate  10=crystal clear action
Accessibility (0.1): Is the language inclusive and jargon-free?
  1=exclusionary  5=neutral  10=fully inclusive
Threshold: 7.5

Anti-Patterns / Common Mistakes

Anti-PatternWhy It Is WrongCorrect Approach
Using LLM-as-judge for measurable criteriaWastes tokens, less reliable than assertionsUse deterministic tests for anything quantifiable
Vague rubric dimensions ("is it good?")Produces unreliable, inconsistent scoresSpecific dimensions with anchored examples
No passing threshold definedNo way to determine pass/fail objectivelyAlways set threshold before evaluation
Adjusting rubric to pass failing contentDefeats the purpose of quality gatesFix the content, not the rubric
Single evaluation without reasoningCannot improve without understanding whyAlways require per-dimension reasoning
Using weaker model for evaluationLower quality judgmentsUse strongest available model (Opus)
Skipping re-evaluation after changesNo verification that changes improved qualityAlways re-evaluate after revisions

Integration Points

SkillRelationship
acceptance-testingLLM-as-judge handles subjective acceptance criteria
spec-writingSpecs may include subjective quality criteria
code-reviewReadability evaluation during code review
verification-before-completionSubjective validation gate before completion
senior-prompt-engineerPrompt quality evaluation uses LLM-as-judge
tech-docs-generatorDocumentation quality evaluation

Downstream Steering Pattern

+----------+     +----------+     +----------+     +----------+
|  SPECS   |---->|   CODE   |---->|  TESTS   |---->| LLM-AS-  |
|          |     |          |     |(determin)|     |  JUDGE   |
|          |     |          |     |          |     |(subject) |
+----------+     +----------+     +----------+     +----+-----+
                      ^                                  |
                      |          backpressure             |
                      +----------------------------------+

Deterministic tests validate objective criteria. LLM-as-judge validates subjective criteria. Both must pass.


Skill Type

FLEXIBLE — Adapt rubric dimensions and thresholds to context. The pattern structure (define rubric, evaluate, score, iterate) is fixed. Always set the threshold before evaluation, never after.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.49%
按下载量换算98

Claude

30.64%
按下载量换算78

Cursor

18%
按下载量换算46

Gemini CLI

8.99%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills