ai-agents-validation-and-qa

ai-agents-validation-and-qa is a skill for Claude Code from rjmurillo/ai-agents. It costs 126 tokens per session (4,206 once invoked), scanned B, original, MIT.

A testing guide for AI-agent code that defines what counts as proof, where tests belong, how to check coverage, and when quality checks may be skipped.

In plain words
What is it for?
Use it to plan tests, verify runtime behavior with failure cases, collect coverage evidence, and handle end-of-session quality checks.
Why use it?
It prevents agents from treating an unverified claim as a completed change and helps avoid tests that never run or fail to catch errors.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions AGENTS.md.

Part of the project-toolkit plugin — 113 skills, 26 commands, 33 agents, 4 hooks shipped together

Good fit Use it to plan tests, verify runtime behavior with failure cases, collect coverage evidence, and handle end-of-session quality checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rjmurillo/ai-agents/ai-agents-validation-and-qa
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 rjmurillo/ai-agents --skill ai-agents-validation-and-qa
Clone the repo
git clone --depth 1 https://github.com/rjmurillo/ai-agents

Made for: Claude Code.

Or install project-toolkit, the plugin that ships this one along with the rest of its 113 skills, 26 commands, 33 agents, 4 hooks.

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 ai-agents-validation-and-qa

README.md
[![agentmods](https://agentmods.dev/badge/skills/rjmurillo/ai-agents/ai-agents-validation-and-qa/github.svg)](https://agentmods.dev/skills/rjmurillo/ai-agents/ai-agents-validation-and-qa)
Your own site
<a href="https://agentmods.dev/skills/rjmurillo/ai-agents/ai-agents-validation-and-qa"><img src="https://agentmods.dev/badge/skills/rjmurillo/ai-agents/ai-agents-validation-and-qa/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 ai-agents-validation-and-qa

Your own site · 80×15
<a href="https://agentmods.dev/skills/rjmurillo/ai-agents/ai-agents-validation-and-qa"><img src="https://agentmods.dev/badge/skills/rjmurillo/ai-agents/ai-agents-validation-and-qa.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 126 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,206 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Agent Snooping · line 188
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.00126 $0.04206
Opus 5 $0.00063 $0.02103
Sonnet 5 $0.00025 $0.00841
Haiku 4.5 $0.00013 $0.00421

Measured 6d ago against content hash 7f4849e7e18a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade B, and why

ai-agents-validation-and-qa scanned grade B with 1 finding 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 6d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (tests/test_structure_ai_agents_validation_and_qa.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Enumerates other installed skillsmediumAgent snooping

Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.

ls tests/skills/ .claude/skills/prose-self-check/tests/ # both skill-test locations alive
.claude/skills/ai-agents-validation-and-qa/SKILL.md · 193 lines

How it starts

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

ai-agents Validation and QA

This repo runs verification-based governance: a claim is true when a gate, test, or command output says it is, not when an agent asserts it. This skill defines the evidence bar for code changes, where tests live and how they are collected, the anti-pattern canon (each entry paid for by a real incident), and the QA gate semantics at session end.

Audience: a zero-context contributor (human or model) about to write, run, or skip tests in this repository.

Triggers

  • what counts as evidence
  • how do I test this change
  • run skill tests
  • can I skip QA

Scope Boundaries

You want Use instead
Triage a red CI check or a blocked push ai-agents-debugging-playbook
Measure drift, budgets, telemetry, coverage trends ai-agents-diagnostics-toolkit
Probe an external tool's runtime behavior empirically ai-agents-empirical-probe-toolkit
Understand which gates a change class triggers ai-agents-change-control
Session-log mechanics beyond the QA row .claude/rules/session-logs.md

Process

Phase 1: Internalize the evidence bar

.agents/governance/TESTING-RIGOR.md is BLOCKING for code changes (its own Status line, TESTING-RIGOR.md:5). The bar, per function you add or change:

Requirement Concretely
Positive test Valid input produces the expected output
Negative test Invalid input produces the language's idiomatic error, asserted
Edge tests Whitespace, empty, None, wrong type
Every error branch Each raise / error-return path exercised
Every conditional branch Including branches that only change user-facing strings
Mocked I/O No live subprocess, API, or file dependencies in unit tests
CLI contract argv-failure exits, exit codes, stdout vs --output tested
Coverage proof 100% block coverage on changed files (see Phase 4)

Read the full file on GitHub · 193 lines

Files

What ships with it

1 file 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. 6d ago Changed 7f4849e7e18a
  2. 7d ago First seen · 193 lines · 126 tokens per session scan B 9d6ab64f7789

Subscribe to this mod's changes

ai-agents-validation-and-qa is a skill published in the GitHub repository rjmurillo/ai-agents (45 stars, last pushed today), licensed MIT. It adds 126 tokens to every session and 4,206 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 1 finding (enumerates other installed skills). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.