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.
npx skills add gkanogiannis/Gigwa-MCP --skill gigwa-import-and-qcgit clone --depth 1 https://github.com/gkanogiannis/Gigwa-MCPWrote 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.
[](https://agentmods.dev/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc)<a href="https://agentmods.dev/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc"><img src="https://agentmods.dev/badge/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc/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.
<a href="https://agentmods.dev/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc"><img src="https://agentmods.dev/badge/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00219 | $0.01514 |
| Opus 5 | $0.00110 | $0.00757 |
| Sonnet 5 | $0.00044 | $0.00303 |
| Haiku 4.5 | $0.00022 | $0.00151 |
Grade A, and why
gigwa-import-and-qc 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Gigwa import + QC
Overview
Load a genotype dataset into a Gigwa instance and immediately check whether the import
is trustworthy. This chains a single import call with the full read-only QC suite and an
import-quality audit, then ends with a clean / not-clean judgement. It drives the
gigwa-mcp MCP server's tools — the tools do the work; this skill sequences them.
When to use / when not
- Use when the user is ingesting new data: a DArTseq SNP/Silico xlsx report or a
.vcf/.vcf.gz, and wants confidence the import worked. - Don't use to re-QC a run that is already imported — use gigwa-qc-triage instead (same QC steps, no import). For diversity/structure after QC passes, use gigwa-diversity-report.
Prerequisites
- The
gigwa-mcpserver is connected andgigwa_server_infosucceeds. - Import writes data, so the server must be authenticated:
GIGWA_USER/GIGWA_PASS(anonymous access is read-only and cannot import). - Input files are on a path the server process can read.
- Decide the target coordinates up front:
module(database),project,run.
Decide the branch
| Input | Tool | Key file param |
|---|---|---|
| DArTseq xlsx (SNP and/or SilicoDArT) | import_dartseq |
snp_xlsx, silico_xlsx |
VCF (.vcf / .vcf.gz) |
import_vcf |
vcf_path |
Optional: genome-anchor DArTseq first
DArTseq tags are unplaced by default. To assign genomic positions, align the tag sequences to a reference before import:
map_dartseq_to_reference(snp_xlsx, reference_fasta, min_mapq=20, preset="sr", backend="auto")→ writesdartseq_positions.csv.- Pass that CSV back as
import_dartseq(..., positions_csv="…/dartseq_positions.csv"), or letimport_dartseq(..., reference_fasta=…)do the alignment inline.
Skip this whole step for VCF (already positioned) or when unplaced markers are fine.
Step-by-step workflow
- Import.
- DArTseq:
import_dartseq(module, project, run, snp_xlsx=…, silico_xlsx=…, ploidy=2, skip_monomorphic=False, clear_project_data=False). - VCF:
import_vcf(vcf_path, module, project, run, ploidy=2). - Long imports: pass
wait=Falseto get a progress token, then poll withget_import_progress(progress_token)and cancel withabort_import(progress_token)if needed.
- DArTseq:
- Confirm counts with
list_variant_sets(). Read back the new run's variant and call-set counts, and capture its exactvariantSetDbId(MODULE§project§run) — every step below needs it. - QC sweep (all take the
variant_set_db_idfrom step 2):qc_call_rate(variant_set_db_id)— worst samples/markers.qc_heterozygosity(variant_set_db_id)— outliers (heed the high-Ho warning: inflated heterozygosity often means contamination or a miscoded import).qc_maf_filter(variant_set_db_id)— how many markers a MAF/missingness filter drops.qc_duplicate_accessions(variant_set_db_id)— clones / mislabelled duplicates.
- Audit with
audit_import_quality(variant_set_db_id)— catches genotype-encoding artifacts (e.g. everything called, no heterozygotes, suspicious monomorphic fraction). - Summarise flagged samples/markers and give a clear verdict on whether the import looks clean.
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.
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.
- 11d ago First seen · 100 lines · 219 tokens per session scan A c5c29efd0074
gigwa-import-and-qc is a skill published in the GitHub repository gkanogiannis/Gigwa-MCP (0 stars, last pushed 2d ago), licensed Apache-2.0. It adds 219 tokens to every session and 1,514 once invoked, about $0.0011 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.
Other skills, from other repositories
instrument-data-to-allotrope
Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…
matlab
Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.
exploratory-data-analysis
Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…
phylogenetics
Build and analyze phylogenetic trees using MAFFT (multiple alignment), IQ-TREE 2 (maximum likelihood), and FastTree (fast NJ/ML). Visualize with ETE3 or FigTree. For evolutionary analysis, microbial genomics, viral phylodynamics, protein family analysis, and molecular clock studies.
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.
mapping-to-snomed
Maps clinical concept spans extracted by OpenMed to SNOMED CT concepts through a USER-SUPPLIED terminology server (the user's own Ontoserver, Snowstorm, or UMLS/UTS), never a bundled vocabulary. Use when the user wants to code findings, disorders, procedures, body structures, or substances to SNOMED CT, run an ECL…