Standardized compliance QRA benchmarks against candidate LLMs
Scanned 9/11/2026
Install to Claude Code
npx -y skills add grahama1970/agent-skills --skill benchmark-models --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Benchmark Models?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/grahama1970-benchmark-models)More formats (shields.io, HTML) on the badges page.
---
name: benchmark-models
description: Standardized compliance QRA benchmarks against candidate LLMs
triggers:
- "benchmark models"
- "model comparison"
- "llm benchmark"
allowed-tools:
- Bash
provides:
- benchmark-models
composes:
- scillm
- create-figure
- task-monitor
- agentic-evals
disciplines:
- evaluation-quality
- model-ops
- compliance-security
---
# benchmark-models
Run standardized compliance QRA tests against candidate LLMs to evaluate accuracy, latency, and cost before deploying to the inference pipeline.
## Usage
### Run a single-model benchmark
```bash
./run.sh run --model deepseek-v3 --suite compliance-basic
```
Runs 20 gold-set compliance QRA questions against the specified model via `/scillm`. Outputs a results table with TEST_CASE, EXPECTED, ACTUAL, MATCH, and LATENCY_MS columns, plus summary metrics (accuracy%, latency_p50, latency_p95, estimated_token_cost).
### Compare multiple models
```bash
./run.sh compare --models "deepseek-v3,llama-3.1-70b" --suite compliance-basic
```
Runs the benchmark for each model and outputs a side-by-side comparison table.
### View last report
```bash
./run.sh report
```
Reads the most recent benchmark results from `~/.embry/benchmark_results.json` and renders a summary.
### Dry run (no LLM calls)
```bash
./run.sh run --model deepseek-v3 --suite compliance-basic --dry-run
./run.sh compare --models "deepseek-v3,llama-3.1-70b" --dry-run
```
Outputs the full benchmark scaffold with 20 test cases and mock results. No LLM calls are made.
## Suites
- **compliance-basic**: 20 gold-set QRA questions covering NIST 800-171, AS9100D, CMMC, ITAR, DFARS, DO-178C, MIL-STD, and cross-program compliance drift detection.
## Output
Results are saved to `~/.embry/benchmark_results.json` and printed to stdout. The report includes per-question accuracy and aggregate metrics for model selection decisions.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!