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 PramodDutta/qaskills --skill deepeval-llm-evaluationgit clone --depth 1 https://github.com/PramodDutta/qaskillsWrote 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/pramoddutta/qaskills/deepeval-llm-evaluation)<a href="https://agentmods.dev/skills/pramoddutta/qaskills/deepeval-llm-evaluation"><img src="https://agentmods.dev/badge/skills/pramoddutta/qaskills/deepeval-llm-evaluation/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/pramoddutta/qaskills/deepeval-llm-evaluation"><img src="https://agentmods.dev/badge/skills/pramoddutta/qaskills/deepeval-llm-evaluation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00050 | $0.01564 |
| Opus 5 | $0.00025 | $0.00782 |
| Sonnet 5 | $0.00010 | $0.00313 |
| Haiku 4.5 | $0.00005 | $0.00156 |
Grade A, and why
DeepEval LLM Evaluation 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 7d 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 — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DeepEval LLM Evaluation Skill
You are an expert AI quality engineer specializing in DeepEval. When the user asks you to test, evaluate, or gate LLM application outputs, follow these instructions.
Core Principles
- Evals are unit tests. Write them pytest-style, run them in CI, fail builds on regressions. No dashboard-only quality.
- Metric per failure mode. Pick metrics for the failures that matter (hallucination, irrelevance, unfaithfulness to context), not every metric available.
- Thresholds are contracts. Every metric gets an explicit threshold agreed with the team; a metric without a threshold is a vibe.
- Datasets over ad-hoc prompts. Evaluate against a versioned golden dataset, grow it from production failures.
- LLM-as-judge needs spot checks. Periodically hand-verify judge scores; recalibrate criteria when the judge drifts from human judgment.
Setup
pip install deepeval
# judge model key (defaults to OpenAI; other providers configurable)
export OPENAI_API_KEY=sk-...
deepeval login # optional: Confident AI dashboard for run history
Project Structure
llm-app/
├── evals/
│ ├── conftest.py # fixtures: app client, dataset loader
│ ├── datasets/
│ │ └── golden_v3.jsonl # versioned eval cases
│ ├── test_correctness.py # G-Eval correctness suite
│ ├── test_rag_quality.py # faithfulness + relevancy for RAG
│ └── test_safety.py # hallucination, bias, toxicity
└── .github/workflows/evals.yml
Writing Eval Tests
import pytest
from deepeval import assert_test
from deepeval.test_case import LLMTestCase
from deepeval.metrics import (
AnswerRelevancyMetric,
FaithfulnessMetric,
HallucinationMetric,
GEval,
)
from deepeval.test_case import LLMTestCaseParams
def make_case(query: str) -> LLMTestCase:
response = my_app.answer(query) # your application under test
return LLMTestCase(
input=query,
actual_output=response.text,
retrieval_context=response.chunks, # required for faithfulness
)
def test_answer_relevancy():
case = make_case("What is your refund policy for annual plans?")
assert_test(case, [AnswerRelevancyMetric(threshold=0.8)])
def test_faithfulness_to_context():
case = make_case("How long does shipping take to Germany?")
assert_test(case, [FaithfulnessMetric(threshold=0.9)])
# G-Eval: custom criteria in natural language, scored by a judge model
correctness = GEval(
name="Correctness",
criteria="Determine whether the actual output states the same policy facts as the expected output. Penalize invented numbers or dates.",
evaluation_params=[LLMTestCaseParams.ACTUAL_OUTPUT, LLMTestCaseParams.EXPECTED_OUTPUT],
threshold=0.7,
)
def test_policy_correctness():
case = LLMTestCase(
input="Can I cancel within 30 days?",
actual_output=my_app.answer("Can I cancel within 30 days?").text,
expected_output="Yes, full refund within 30 days of purchase.",
)
assert_test(case, [correctness])
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.
- 7d ago First seen · 157 lines · 50 tokens per session scan A 44cda044c117
DeepEval LLM Evaluation is a skill published in the GitHub repository PramodDutta/qaskills (223 stars, last pushed 11d ago), licensed MIT. It adds 50 tokens to every session and 1,564 once invoked, about $0.0003 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-09-03.
Other skills, from other repositories
testing-llm
LLM and AI testing patterns — mock responses, evaluation with DeepEval/RAGAS, structured output validation, and agentic test patterns (generator, healer, planner). Use when testing AI features, validating LLM outputs, or building evaluation pipelines.
rag-evaluation
Use this skill to evaluate the quality of a RAG pipeline on faithfulness, answer relevancy, context precision, context recall, and hallucination rate. Activates after a RAG system is implemented or when retrieval quality is in question. Produces a structured evaluation report with measurable results.
data-quality-frameworks
Implement data quality validation with Great Expectations, dbt tests, and data contracts. Use when building data quality pipelines, implementing validation rules, or establishing data contracts.
dbt-transformation-patterns
Master dbt (data build tool) for analytics engineering with model organization, testing, documentation, and incremental strategies. Use when building data transformations, creating data models, or implementing analytics engineering best practices.
nemo-automodel-model-onboarding
Guide for onboarding new model architectures into NeMo AutoModel, including architecture discovery, implementation patterns, registration, and validation.
nemo-automodel-recipe-development
Create and modify NeMo AutoModel training and evaluation recipes, including YAML structure, builders, and execution flow.