$npx -y skills add KevinSpringer1/conserved-primer-design --skill validation-reportUse when an agent must combine taxonomy, accession manifest, specificity, primer QC, and panel reports into a reproducible design release report.
| 1 | # Validation Report |
| 2 | |
| 3 | Use this as the final release gate before reporting a primer or tNGS panel as ready for review. |
| 4 | |
| 5 | ```bash |
| 6 | python agentskill/scripts/primer_panel_qc.py validation-report \ |
| 7 | --taxonomy-report taxonomy_report.json \ |
| 8 | --accession-manifest accession_manifest.json \ |
| 9 | --primer-qc primer_qc.json \ |
| 10 | --specificity-report specificity_report.json \ |
| 11 | --panel-json pooled_panel.json \ |
| 12 | --output validation_report.md \ |
| 13 | --json-output validation_report.json |
| 14 | ``` |
| 15 | |
| 16 | The report must preserve input paths, statuses, counts, warnings, and release-gate notes. Do not hide failed sections; fix upstream inputs instead. |