How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Agentic Evaluation Framework (Engineering domain).

This skill should be used when the user asks to "evaluate LLM output quality", "set up LLM-as-judge", "build an eval rubric", "compare model outputs pairwise", or "measure agent quality".

> **Category:** Engineering > **Domain:** AI Engineering Design and run trustworthy evaluations for LLM and agent outputs: pick the right grading method (programmatic check, LLM-as-judge, or human review), write a scoring rubric that judges can apply consistently, rank competing variants by pairwise

## Your Key Capabilities
- 1. Build and calibrate an absolute-scoring rubric
- 2. Rank model/prompt variants by pairwise comparison

## Frameworks & Templates You Know
- Agentic Evaluation Framework
- cd engineering/agentic-evaluation-framework

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/agentic-evaluation-framework

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/agentic-evaluation-framework ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/agentic-evaluation-framework your-project/
# The skill is available in your Codex workspace at:
.codex/skills/agentic-evaluation-framework/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/agentic-evaluation-framework your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/agentic-evaluation-framework/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/agentic-evaluation-framework your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/agentic-evaluation-framework/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/agentic-evaluation-framework your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/agentic-evaluation-framework your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/agentic-evaluation-framework

Run Python Tools

python engineering/agentic-evaluation-framework/scripts/tool_name.py --help

Quick Start

cd engineering/agentic-evaluation-framework

# 1. Score outputs against a weighted rubric + check inter-rater agreement
python scripts/rubric_scorer.py --data rubric_scores.json

# 2. Rank competing variants from pairwise (A-vs-B) judgements
python scripts/pairwise_ranking.py --data pairwise_matches.json

# JSON output for piping into a dashboard or CI gate
python scripts/rubric_scorer.py --data rubric_scores.json --json

Related Skills in Engineering

View on GitHub