Chatbot QA Roundtrip Validate

Chatbot QA Roundtrip Validate is a skill for Claude Code from GuitarAlchemist/ga. It costs 98 tokens per session (1,531 once invoked), scanned A, original, MIT.

A read-only checker for a chatbot quality-testing loop. It reruns a set of prompts and compares the result with the previous measurement.

In plain words
What is it for?
Use it before committing chatbot changes to return a pass or reject decision based on the measured results and changed files.
Why use it?
It prevents a proposed code change from being accepted when chatbot quality drops, required checks fail, or protected files were changed.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Good fit Use it before committing chatbot changes to return a pass or reject decision based on the measured results and changed files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/guitaralchemist/ga/chatbot-qa-roundtrip-validate
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 GuitarAlchemist/ga --skill chatbot-qa-roundtrip-validate
Clone the repo
git clone --depth 1 https://github.com/GuitarAlchemist/ga

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 Chatbot QA Roundtrip Validate

README.md
[![agentmods](https://agentmods.dev/badge/skills/guitaralchemist/ga/chatbot-qa-roundtrip-validate/github.svg)](https://agentmods.dev/skills/guitaralchemist/ga/chatbot-qa-roundtrip-validate)
Your own site
<a href="https://agentmods.dev/skills/guitaralchemist/ga/chatbot-qa-roundtrip-validate"><img src="https://agentmods.dev/badge/skills/guitaralchemist/ga/chatbot-qa-roundtrip-validate/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 Chatbot QA Roundtrip Validate

Your own site · 80×15
<a href="https://agentmods.dev/skills/guitaralchemist/ga/chatbot-qa-roundtrip-validate"><img src="https://agentmods.dev/badge/skills/guitaralchemist/ga/chatbot-qa-roundtrip-validate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,531 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.00098 $0.01531
Opus 5 $0.00049 $0.00766
Sonnet 5 $0.00020 $0.00306
Haiku 4.5 $0.00010 $0.00153

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

Security

Grade A, and why

Chatbot QA Roundtrip Validate 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.

.claude/skills/chatbot-qa-roundtrip-validate/SKILL.md · 145 lines

How it starts

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

/chatbot-qa-roundtrip-validate

The contract the chatbot /auto-optimize loop calls before every commit. Returns pass / reject per the v2 plan's Harness-Engine rollback wiring.

This skill is intentionally read-only — it runs the oracle, checks the diff, and returns a verdict. It never edits code, never touches the oracle, never modifies the baseline. That's /auto-optimize's job to react to (revert if reject, commit if pass).

Inputs

Input Source
before_metric pass_pct from the previous oracle run (loop history tail)
after_metric pass_pct from the oracle run just performed
diff_paths git diff --name-only HEAD — what the proposed edit changed
baseline_path state/quality/chatbot-qa/baseline.json (for gates)

In practice the loop passes the first three as values; the skill loads the baseline itself.

Verdict rubric

The skill returns pass if all four conditions hold; reject otherwise. Reject diagnostics include the failing condition by name so the loop can record a learning rather than just retry.

1. Metric did not regress

after_metric - before_metric >= -regression_threshold

where regression_threshold defaults to 0.02 per the baseline's _harness.rollback_metadata.regression_threshold field. A drop equal to or smaller than the threshold is tolerated as noise; anything larger is a reject (metric_regression).

2. Canonical-trace gate did not break

pwsh Scripts/compare-trace-to-canonical.ps1 -Sweep
# exit 0 = matched; exit 1 = at least one signature regression

If the sweep exits non-zero, reject with trace_shape_regression. The full diagnostic from the sweep is captured into the loop history.

3. No protected path modified

$baseline = Get-Content state/quality/chatbot-qa/baseline.json -Raw | ConvertFrom-Json
$protected = $baseline.scope_boundary.protected
$changed = git diff --name-only HEAD
foreach ($p in $changed) {
    foreach ($glob in $protected) {
        if ($p -like $glob) {
            return @{ verdict = 'reject'; reason = 'protected_path_modified'; path = $p; glob = $glob }
        }
    }
}

Read the full file on GitHub · 145 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 · 145 lines · 98 tokens per session scan A 59fc364bab5d

Subscribe to this mod's changes

Chatbot QA Roundtrip Validate is a skill published in the GitHub repository GuitarAlchemist/ga (2 stars, last pushed yesterday), licensed MIT. It adds 98 tokens to every session and 1,531 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-31.

Related

Other skills, from other repositories

research-engineer

An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.

davila7/claude-code-templates · 43 tokens

tika-eval-compare

Compare extracts from two Tika builds over a corpus to detect regressions in content, encoding, exceptions, and embedded-document handling. Use for "compare before/after extracts", "eval this change against the corpus".

apache/tika · 50 tokens

neuron-evaluation-engineer

Create and run AI evaluations with datasets, assertions, and output drivers in Neuron AI. Use this skill whenever the user mentions evaluation, testing AI systems, creating evaluators, dataset-driven testing, assertion-based validation, or wants to measure AI system performance. Also trigger for tasks involving…

neuron-core/neuron-ai · 77 tokens

jetson-validate-image

Use after jetson-flash-image to run static BSP checks, on-target smoke/regression tests on a flashed DUT, or both. Not for build or flash steps. Triggers: validate bsp, on-target validation.

NVIDIA/skills · 50 tokens

atmos-validation

Validate Atmos projects, components, arbitrary JSON Schema inputs, EditorConfig, and GitHub Actions; use affected-file selection and native CI annotations.

cloudposse/atmos · 31 tokens

skill-benchmark

Benchmark AI skill effectiveness by measuring implementation quality against legacy constraints.

HoangNguyen0403/agent-skills-standard · 16 tokens