$npx -y skills add KevinSpringer1/conserved-primer-design --skill wetlab-exportUse when an agent must convert selected and pooled primer pairs into order sheets, pooling plans, and 96-well plate maps for wet-lab handoff.
| 1 | # Wet-Lab Export |
| 2 | |
| 3 | Use this only after taxonomy, reference set, specificity, primer QC, panel design, and pool assignment have been reviewed. |
| 4 | |
| 5 | ```bash |
| 6 | python agentskill/scripts/primer_panel_qc.py export-wetlab \ |
| 7 | --panel-json pooled_panel.json \ |
| 8 | --output-dir wetlab_export \ |
| 9 | --prefix VPP \ |
| 10 | --scale 25nm \ |
| 11 | --purification STD \ |
| 12 | --stock-uM 100 \ |
| 13 | --final-nM 100 |
| 14 | ``` |
| 15 | |
| 16 | Outputs: |
| 17 | |
| 18 | - `primer_order.csv` |
| 19 | - `pooling_plan.csv` |
| 20 | - `plate_map_96well.csv` |
| 21 | - `wetlab_export_summary.json` |
| 22 | |
| 23 | Check naming, synthesis scale, purification, and final concentration against the lab SOP before delivery. |