llm-testing-expert

llm-testing-expert is a skill for Claude Code from Miaoge-Ge/coding-agent-skills. It costs 80 tokens per session (2,953 once invoked), scanned A, original, MIT.

A guide for testing and evaluating large language models, the systems behind many AI text tools. It covers test datasets, automated evaluation, prompt changes, security attacks, retrieval-based systems, and AI agents.

In plain words
What is it for?
Use it to design evaluation strategies, build test cases, compare models or prompt versions, and plan testing for retrieval-based applications and agents.
Why use it?
It helps measure quality and catch made-up answers, unsafe behavior, regressions, and performance or cost changes before release.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the llm-testing-expert plugin — 1 skill shipped together

Good fit Use it to design evaluation strategies, build test cases, compare models or prompt versions, and plan testing for retrieval-based applications and agents.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/miaoge-ge/coding-agent-skills/llm-testing-expert
Install

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.

Any agent
npx skills add Miaoge-Ge/coding-agent-skills --skill llm-testing-expert
Clone the repo
git clone --depth 1 https://github.com/Miaoge-Ge/coding-agent-skills

Made for: Claude Code.

Or install llm-testing-expert, the plugin that ships this one along with the rest of its 1 skill.

Wrote 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.

agentmods badge for llm-testing-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/miaoge-ge/coding-agent-skills/llm-testing-expert/github.svg)](https://agentmods.dev/skills/miaoge-ge/coding-agent-skills/llm-testing-expert)
Your own site
<a href="https://agentmods.dev/skills/miaoge-ge/coding-agent-skills/llm-testing-expert"><img src="https://agentmods.dev/badge/skills/miaoge-ge/coding-agent-skills/llm-testing-expert/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.

agentmods 80×15 button for llm-testing-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/miaoge-ge/coding-agent-skills/llm-testing-expert"><img src="https://agentmods.dev/badge/skills/miaoge-ge/coding-agent-skills/llm-testing-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,953 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00080 $0.02953
Opus 5 $0.00040 $0.01477
Sonnet 5 $0.00016 $0.00591
Haiku 4.5 $0.00008 $0.00295

Measured 9d ago against content hash 3206c795e977, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

llm-testing-expert 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 9d 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.

plugins/llm-testing-expert/skills/llm-testing-expert/SKILL.md · 268 lines

How it starts

The opening of the file, as written. The whole thing — 268 lines — stays where its author put it; the contents beside it link to each section on GitHub.

LLM Testing and Evaluation

Description

Provide LLM test strategy design, test dataset construction, automated evaluation, and security red teaming recommendations to ensure models meet production requirements for functionality, performance, robustness, and safety.

When to Use

  • User requests "design LLM testing strategy" or "how to evaluate model quality"
  • User needs to build test datasets, design test cases, or perform regression testing
  • User seeks prompt optimization, engineering, and version management recommendations
  • User needs to evaluate model performance metrics (accuracy, hallucination rate, safety, latency, cost)
  • User asks how to conduct A/B testing or comparative evaluation (multi-model/multi-version)
  • User needs automated testing workflows or CI/CD integration
  • User requests red team testing design (jailbreak, prompt injection, adversarial attacks)
  • User asks about specialized testing strategies for RAG systems or Agent applications

When NOT to Use

  • User only needs traditional software testing (unit tests, integration tests) without LLM-specific concerns
  • User's problem is about model training or fine-tuning techniques, not testing/evaluation
  • User needs data annotation or data cleaning, not test strategy design
  • User only asks how to use an LLM framework or tool, not testing strategy
  • User's problem is pure Prompt Engineering (how to write better prompts), not how to test prompt effectiveness

Input

{
  testTarget: {
    type: string                  // Test object type (base-model/fine-tuned-model/rag-system/agent/prompt-template)
    modelInfo?: {
      name: string                // Model name (e.g., gpt-4, claude-3.5-sonnet)
      version?: string            // Version
      deployment?: string         // Deployment method (API/self-hosted)
    }
    applicationContext?: string   // Application scenario (e.g., customer service, code generation, document summarization)
  }
  testObjectives: {
    functional?: boolean          // Functional correctness testing
    performance?: boolean         // Performance testing (latency, throughput, cost)
    robustness?: boolean          // Robustness testing (adversarial samples, edge cases)
    safety?: boolean              // Safety testing (jailbreak, injection, PII leakage)
    userExperience?: boolean      // User experience testing
  }
  constraints: {
    budget?: string               // Testing budget (API call cost/manual annotation cost)
    timeline?: string             // Testing timeline
    existingTestAssets?: string[] // Existing test assets (test sets, annotated data)
    complianceRequirements?: string // Compliance requirements (GDPR, industry regulations)
  }
  riskAreas?: string[]            // Known risk areas (e.g., hallucination, bias, privacy leakage)
  existingMetrics?: string        // Existing evaluation metrics and baselines
}

Read the full file on GitHub · 268 lines

Changes

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.

  1. 9d ago First seen · 268 lines · 80 tokens per session scan A 3206c795e977

Subscribe to this mod's changes

llm-testing-expert is a skill published in the GitHub repository Miaoge-Ge/coding-agent-skills (5 stars, last pushed 3mo ago), licensed MIT. It adds 80 tokens to every session and 2,953 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-31.

Related

Other skills, from other repositories

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.

wshobson/agents · 37 tokens

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.

wshobson/agents · 47 tokens

Cursor Skill (.mdc) Authoring

Author effective Cursor rules in .cursor/rules/.mdc - YAML frontmatter (description, globs, alwaysApply), the four rule types, scoped QA rules, subagents, and structure that actually steers the model.

PramodDutta/qaskills · 55 tokens

AI/ML Model Testing

Testing machine learning models including accuracy validation, bias detection, drift monitoring, A/B testing, and model regression testing.

PramodDutta/qaskills · 29 tokens

AI System Quality Engineer

Test LLM, RAG, MCP, and agentic systems end to end. Build golden datasets, run deterministic checks and LLM judges, score retrieval, probe prompt injection, verify tool use, and gate CI on thresholds. Orchestrates DeepEval, Ragas, promptfoo, and Langfuse.

PramodDutta/qaskills · 68 tokens

hotfix

Fixes an observed defect with reproducible evidence in one call: writes a short trace doc before touching code, implements the fix, and backs it with a regression test written before the fix. Production incidents are the motivating case, not a gate. When blocked, it halts by name and saves the doc for a later call to…

pe-menezes/vibeflow · 102 tokens