Agent skill · Code Review & Quality

00-build-evaluation-skill

Create a reusable skill for evaluating fine-tuned models, benchmarking performance, and detecting quality regressions

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill 00-build-evaluation-skill --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Path: skills/ai-llm/00-build-evaluation-skill/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

# Build Your Evaluation Skill Before learning about model evaluation, you will build the skill that captures that knowledge. This skill-first approach means every concept you learn gets encoded into a reusable asset that becomes part of your Digital FTE toolkit. When you fine-tune a model, how do you know it actually improved? A model might generate fluent text that completely misses the point. Evaluation frameworks provide systematic methods to measure what matters: accuracy, format compliance, reasoning quality, and safety. By the end of this chapter, you will have a skill that guides evaluation decisions for any fine-tuned model. ## Step 1: Clone Skills Lab Fresh Every chapter starts with a clean environment. This prevents state pollution from previous work and ensures reproducible results. ```bash # Navigate to your workspace cd ~/workspace # Clone fresh skills-lab (or reset if exists) if [ -d "skills-lab-llmops" ]; then rm -rf skills-lab-llmops fi git clone https://github.com/panaversity/skills-lab.git skills-lab-llmops cd skills-lab-llmops # Create chapter directory mkdir -p llmops-evaluation cd llmops-evaluation ``` **Output:** ``` Cloning into 'skills-lab-llmops'... remote:

What's inside
Steps it walks through
  1. Step 1: Clone Skills Lab Fresh
  2. Step 2: Write Your LEARNING-SPEC.md
  3. Step 3: Fetch Official Documentation
  4. Step 4: Create Your Initial Skill
  5. Step 5: Verify Skill Works
  6. Skill Evolution Map
  7. Try With AI
  8. Prompt 1: Review Your LEARNING-SPEC
  9. Prompt 2: Expand the Skill Framework
  10. Prompt 3: Connect to Task API
  11. Safety Note
Ships with 1 file
  • metadata.json
Commands it runs
Navigate to your workspace
cd ~/workspace
Clone fresh skills-lab (or reset if exists)
if [ -d "skills-lab-llmops" ]; then
rm -rf skills-lab-llmops
fi
git clone https://github.com/panaversity/skills-lab.git skills-lab-llmops
cd skills-lab-llmops
Create chapter directory
mkdir -p llmops-evaluation
More from claude-skill-registry
All skills →
About this skill
What does the 00-build-evaluation-skill skill do?

Create a reusable skill for evaluating fine-tuned models, benchmarking performance, and detecting quality regressions

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill 00-build-evaluation-skill --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