Agent skill · Data & Analytics

metric-design

Use when the user has evaluation principles or a dataset but needs help choosing the right graders, designing evaluation metrics, creating LLM-as-judge prompts, combining multiple metrics into a composite score, or building an automated evaluation pipeline. Also use when the user mentions grader selection, metric design, judge prompt engineering, rubric design, evaluation pipeline code, or "how to evaluate [X] automatically." Outputs executable OpenJudge pipeline code.

AgentScope-AI33,120★ · +381/wk · 2 repos on radarProfile →
claude-codeApache-2.0
Install
npx skills add agentscope-ai/OpenJudge --skill 02-metric-design --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 20 KB
Bundled scripts: none
Path: skills/eval_pipeline/02-metric-design/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 764
Language: Python

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

From the SKILL.md

# Metric Design Select, configure, and combine evaluation graders into a working pipeline. You choose the right tool for each evaluation dimension — from zero-cost code checks to LLM judges — and produce executable `GradingRunner` code that runs on OpenJudge. > **Requires OpenJudge** (`pip install py-openjudge`). This skill is intentionally > SDK-centric — grader selection, `GradingRunner`, and aggregators are OpenJudge APIs. The > design/decision logic still applies if you use another harness; only the code does not. ## When to Activate - User has eval dimensions/principles but doesn't know which grader type to use - User wants to write an LLM-as-judge prompt for a specific failure mode - User needs a composite score combining multiple evaluation dimensions - User wants to auto-generate graders from labeled data instead of writing them manually - User's current evaluation is all LLM-based and too expensive/too slow ## Checklist You MUST create a task for each item and complete them in order: 1. **Select grader types** — per dimension, pick the right grader class 2. **Create custom graders** — write judge prompts (4-component) or function graders 3. **Auto-generate if applicable**

What's inside
Steps it walks through
  1. When to Activate
  2. Checklist
  3. Step 1: Select Grader Type Per Dimension
  4. Grader Selection Cheat Sheet
  5. Step 2: Create Custom Graders
  6. LLMGrader: The Four-Component Template
  7. Complete LLMGrader Code
  8. FunctionGrader: Deterministic Checks
  9. Step 3: Auto-Generate Graders (Cold Start)
  10. Zero-shot: SimpleRubricsGenerator
  11. Data-driven: IterativeRubricsGenerator
  12. Step 4: Anti-Pattern Scan
  13. Step 5: Build Pipeline Code
  14. Weight Design Principle
More from OpenJudge
All skills →
About this skill
What does the metric-design skill do?

Use when the user has evaluation principles or a dataset but needs help choosing the right graders, designing evaluation metrics, creating LLM-as-judge prompts, combining multiple metrics into a composite score, or building an automated evaluation pipeline. Also use when the user mentions grader selection, metric design, judge prompt engineering, rubric design, evaluation pipeline code, or "how to evaluate [X] automatically." Outputs executable OpenJudge pipeline code.

How do I install it?

Run `npx skills add agentscope-ai/OpenJudge --skill 02-metric-design --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 agentscope-ai/OpenJudge, a repository with 764 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