Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add agentscope-ai/OpenJudge --skill 02-metric-designgit clone --depth 1 https://github.com/agentscope-ai/OpenJudgeWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/agentscope-ai/openjudge/02-metric-design)<a href="https://agentmods.dev/skills/agentscope-ai/openjudge/02-metric-design"><img src="https://agentmods.dev/badge/skills/agentscope-ai/openjudge/02-metric-design/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/agentscope-ai/openjudge/02-metric-design"><img src="https://agentmods.dev/badge/skills/agentscope-ai/openjudge/02-metric-design.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Rogue Agent · line 32 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00088 | $0.04864 |
| Opus 5 | $0.00044 | $0.02432 |
| Sonnet 5 | $0.00018 | $0.00973 |
| Haiku 4.5 | $0.00009 | $0.00486 |
Grade A, and why
metric-design scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 498 lines — stays where its author put it; the contents beside it link to each section on GitHub.
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:
- Select grader types — per dimension, pick the right grader class
- Create custom graders — write judge prompts (4-component) or function graders
- Auto-generate if applicable — use OpenJudge Generator for cold starts
- Run anti-pattern scan — check for Likert, missing few-shot, vague criteria
- Build pipeline code — assemble GradingRunner with graders + aggregators
Step 1: Select Grader Type Per Dimension
For each evaluation dimension, walk this decision tree (first match wins):
1. Can a deterministic rule check this?
→ StringMatchGrader / JsonValidatorGrader / FunctionGrader (zero cost, 100% consistent)
Examples: exact match for classification labels, regex for format checks,
JSON schema validation, keyword presence/absence
2. Does it require semantic understanding of text quality?
→ LLMGrader with built-in class (low cost, pre-optimized)
Examples: CorrectnessGrader (factual match), RelevanceGrader (on-topic check),
HallucinationGrader (faithfulness to context)
3. Does it involve agent behavior (tool calls, planning, memory)?
→ Agent-specific LLMGrader
Examples: ToolSelectionGrader, TrajectoryAccuracyGrader, MemoryAccuracyGrader
4. Does it involve code execution or syntax?
→ CodeExecutionGrader / SyntaxCheckGrader
Examples: test case pass rate, syntax validity, code style checks
5. Does it require external tool calls to verify (web search, database lookup)?
→ AgenticGrader (expensive, use only when necessary)
Examples: fact-checking against live sources, cross-referencing databases
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 498 lines · 88 tokens per session scan A a031f872fc81
metric-design is a skill published in the GitHub repository agentscope-ai/OpenJudge (826 stars, last pushed 4d ago), licensed Apache-2.0. It adds 88 tokens to every session and 4,864 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
tinker-fine-tuning
Provides guidance for fine-tuning LLMs using the Tinker cloud training API from Thinking Machines Lab. Use when running supervised fine-tuning, reinforcement learning (GRPO/PPO), or LoRA training on cloud GPUs via Tinker's managed infrastructure instead of local compute.
llm-as-judge-evaluation
Evaluate LLM outputs using frontier models as judges. Use for pairwise model comparison, quality scoring with custom rubrics, and automated evaluation pipelines. Covers position bias mitigation, statistical significance, and generating preference data for DPO/RLHF.
langsmith-observability
LLM observability platform for tracing, evaluation, and monitoring. Use when debugging LLM applications, evaluating model outputs against datasets, monitoring production systems, or building systematic testing pipelines for AI applications.
ceo-setup
One-time onboarding for the executive/manager commitment workflow — delegation-heavy, meeting prep, decision capture, morning and evening digests. Creates a commitments project and installs two dashboard widgets. After successful setup this skill is excluded from selection until the marker file is deleted.
developer-setup
One-time onboarding for the developer workflow — installs github-workflow missions, creates the commitments workspace, registers per-repo projects, writes calibration memories. After successful setup this skill is excluded from selection until the marker file is deleted.
portfolio
Cross-chain DeFi portfolio discovery, rebalancing suggestions, and NEAR Intent construction. Activates when the user pastes a wallet address or asks about yield/positions/rebalancing. Bootstraps a per-user "portfolio" project, aggregates positions across all the user's addresses inside one project, and offers a…