testing-llm-features

testing-llm-features is a skill for Claude Code from jaktestowac/awesome-copilot-for-testers. It costs 108 tokens per session (2,583 once invoked), scanned A, original, MIT.

An automated evaluation suite for features powered by large language models (LLMs), the models used for tasks such as generating text or answering questions. It uses fixed reference cases to check output quality over time.

In plain words
What is it for?
Testing prompts, agents, and retrieval-augmented generation (RAG), where a model answers using retrieved documents; comparing changes with golden cases and wiring checks into tools such as promptfoo, Vitest, or deepeval.
Why use it?
Normal code tests can pass while a prompt, model, or retrieval change makes answers worse. These evaluations make quality regressions visible and can block them in CI.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Testing prompts, agents, and retrieval-augmented generation (RAG), where a model answers using retrieved documents; comparing changes with golden cases and wiring checks into tools such as promptfoo, Vitest, or deepeval.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jaktestowac/awesome-copilot-for-testers/testing-llm-features
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 jaktestowac/awesome-copilot-for-testers --skill testing-llm-features
Clone the repo
git clone --depth 1 https://github.com/jaktestowac/awesome-copilot-for-testers

Made for: Claude Code.

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 testing-llm-features

README.md
[![agentmods](https://agentmods.dev/badge/skills/jaktestowac/awesome-copilot-for-testers/testing-llm-features/github.svg)](https://agentmods.dev/skills/jaktestowac/awesome-copilot-for-testers/testing-llm-features)
Your own site
<a href="https://agentmods.dev/skills/jaktestowac/awesome-copilot-for-testers/testing-llm-features"><img src="https://agentmods.dev/badge/skills/jaktestowac/awesome-copilot-for-testers/testing-llm-features/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 testing-llm-features

Your own site · 80×15
<a href="https://agentmods.dev/skills/jaktestowac/awesome-copilot-for-testers/testing-llm-features"><img src="https://agentmods.dev/badge/skills/jaktestowac/awesome-copilot-for-testers/testing-llm-features.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 108 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,583 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00108 $0.02583
Opus 5 $0.00054 $0.01291
Sonnet 5 $0.00022 $0.00517
Haiku 4.5 $0.00011 $0.00258

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

Security

Grade A, and why

testing-llm-features 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/testing-llm-features/skills/testing-llm-features/SKILL.md · 166 lines

How it starts

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

Testing LLM Features

Use this skill when a product's behaviour depends on a model, and the current verification method is a person looking at output and deciding it seems fine.

The problem is not that LLM output is hard to assert on. It is that the same input produces different output, and a prompt or model change can degrade quality without breaking anything. No test in a normal suite fails. Coverage stays green. The feature just gets worse, and you find out from users.

An eval suite is the unit-test layer for this: a fixed set of cases, run on every change that could affect model behaviour, scored consistently enough that a regression is visible.

When to Use

  • a feature calls a model and there is no automated check on output quality
  • a prompt, model version, temperature, tool list, or retrieval config is about to change
  • a model upgrade is proposed and nobody can say what would regress
  • an agent or chain has grown beyond what manual spot-checks can cover
  • RAG answers are drifting and it is unclear whether retrieval or generation is at fault
  • a CI gate is needed for AI behaviour, not just AI code

Operating Principles

  • Golden cases, not vibes. A case has an input, an expectation, and a scoring rule. "Looks good" is not an expectation.
  • Determinism where you can get it. Pin the model version, set temperature to 0, fix seeds, freeze retrieval snapshots. Non-determinism is a property of the model; it is not an excuse for a non-reproducible test.
  • Test the assertable layer first. Schema conformance, required fields, refusal behaviour, citation presence, tool-call shape, latency and cost. Most feature-breaking regressions are structural, and structural checks are cheap and exact.
  • Rubrics before judges. If an LLM judges the output, it needs a written rubric with a scale, and the judge itself needs validating against human labels. An unrubriced judge is a random number with an API bill.
  • A regression is a new failure on a case that used to pass. That is the gate. An absolute score threshold on a hard case set gates nothing useful.
  • Separate retrieval failures from generation failures. A RAG answer can be wrong because the right document was never retrieved. Score retrieval independently or you will tune the prompt to fix an index problem.
  • Cases are a product artifact. They encode what the feature promises. Review them like code and grow them from real failures.
  • Cost and latency are results. A 12% quality gain for 4× the cost and 3× the latency is a product decision, so report all three.

Read the full file on GitHub · 166 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 166 lines · 108 tokens per session scan A eeb4d4f09791

Subscribe to this mod's changes

testing-llm-features is a skill published in the GitHub repository jaktestowac/awesome-copilot-for-testers (113 stars, last pushed 13d ago), licensed MIT. It adds 108 tokens to every session and 2,583 once invoked, about $0.0005 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.