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 TianGzlab/OmicsClaw --skill literaturegit clone --depth 1 https://github.com/TianGzlab/OmicsClawWrote 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/tiangzlab/omicsclaw/literature)<a href="https://agentmods.dev/skills/tiangzlab/omicsclaw/literature"><img src="https://agentmods.dev/badge/skills/tiangzlab/omicsclaw/literature.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Rogue Agent · line 3 Skill modifies its own code, configuration, or behavior at runtime. Self-modification enables an agent to escalate privileges, disable safety constraints, or install persistent backdoors.Fix: Prevent the skill from modifying its own code, SKILL.md, or configuration files. Treat skill files as read-only at runtime.
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.00058 | $0.01209 |
| Opus 5 | $0.00029 | $0.00605 |
| Sonnet 5 | $0.00012 | $0.00242 |
| Haiku 4.5 | $0.00006 | $0.00121 |
Grade A, and why
literature 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 8d 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.
literature
When to use
The user provides a scientific paper reference (PDF path, URL, DOI, PubMed ID, or raw text excerpt) and wants OmicsClaw to extract GEO accessions, dataset metadata, and (optionally) download referenced GEO datasets — so a downstream analysis skill can be invoked on real data.
--input-type defaults to auto (sniffs from input shape).
--no-download skips the GEO download step (metadata only).
For dispatching a NL query to an analysis skill use orchestrator.
For scaffolding a new skill from a paper use omics-skill-builder.
Inputs & Outputs
Inputs
- Input kinds:
file,freeform - File types:
.pdf
Outputs
extracted_metadata.jsonreport.mdresult.json<--data-dir>/<GSEid>/...- Produces artifact
literature.dataset_handoffasextracted_metadata.json(json)
Flow
- Parse
--input(or--demo); raiseparser.error('the following arguments are required: --input (unless --demo is used)')atliterature_parse.py:38when missing. - Detect input type (URL / DOI / PubMed / PDF / text) via
--input-type autoor honour the explicit value. - Call
parse_input(skills/literature/core/parser.py); fetch / parse content. - Call
extract_metadata(skills/literature/core/extractor.py) → identify GEO accessions, dataset metadata, study type. - If GEO accessions found AND not
--no-download: calldownload_geo_dataset(skills/literature/core/downloader.py) → save to--data-dir. - Write
extracted_metadata.json(literature_parse.py:80) +report.md(:193) +result.json(:147).
Gotchas
--inputREQUIRED unless--demo— usesparser.error(exit 2).literature_parse.py:38callsparser.error('the following arguments are required: --input (unless --demo is used)'). Different from most file-pipeline skills which raiseValueError.--input-type autoheuristics are positional, not URL-aware.core/parser.py:35-55checks the bare-DOI regex^10\.\d{4,}/\S+first; URLs always hit thestartswith("http")branch and resolve tourl, even when they wrap a DOI (https://doi.org/10.1038/...). For PDF / file paths use--input-type fileexplicitly —Path.exists()has to succeed for auto-detection to pickfile.- GEO download requires internet access.
download_geo_datasetissues HTTP requests to GEO FTP. Air-gapped runs must pass--no-downloador the run will hang / time out. - PDF parsing requires
pypdf/ similar. If the PDF parser dependency is missing, the run errors out — verifyskills/literature/requirements.txtis satisfied. extracted_metadata.jsonis atoutput_dir/ROOT, nottables/. This skill does NOT follow thetables/<file>.csvconvention used by analysis skills.- Empty / unparseable input ⇒ exit 1 (not 2).
literature_parse.py:64callssys.exit(1)on internal parse failure (distinct from theparser.errorexit-2 path for missing args).
What ships with it
11 files 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.
- core/__init__.py 39 B runs code
- core/downloader.py 5.0 KB runs code
- core/extractor.py 11 KB runs code
- core/parser.py 3.6 KB runs code
- INDEX.md 744 B
- literature_parse.py 8.7 KB runs code
- references/methodology.md 2.4 KB
- references/output_contract.md 1.2 KB
- references/parameters.md 300 B
- requirements.txt 53 B
- skill.yaml 1.3 KB
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.
- 8d ago First seen · 100 lines · 58 tokens per session scan A a5ae01bb5336
literature is a skill published in the GitHub repository TianGzlab/OmicsClaw (160 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 58 tokens to every session and 1,209 once invoked, about $0.0003 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-30.
Other skills, from other repositories
markitdown
Convert heterogeneous documents and selected URIs to Markdown with Microsoft MarkItDown for text analysis, search, and LLM/RAG ingestion. Covers safe local conversion, streams, Office/PDF/data formats, batch workflows, plugins, vision OCR, Azure extraction, and the official MCP server.
alterlab-markitdown
Convert files and Office documents to clean, LLM-friendly Markdown with Microsoft MarkItDown (markitdown CLI/Python), supporting PDF, DOCX, PPTX, XLSX, images (EXIF + OCR), audio (transcription), HTML, CSV, JSON, XML, ZIP archives, EPUB e-books, and YouTube transcript URLs, with optional AI image descriptions. Use…
sec-report
SEC (size-exclusion chromatography) analysis with peak detection, oligomer classification, and publication-quality PDF report generation via Typst templates. Triggers on "SEC", "size exclusion", "chromatography", "oligomer analysis", "protein assembly", "SEC report".
report-template
Publication-quality PDF report generation using Typst templates. Produces professional scientific reports with colored section bands, styled tables, figure captions, callout boxes, and page headers/footers.
ai-science-vision-rag
ColPali-style Vision RAG: embed rendered PDF pages, retrieve via ColBERT MaxSim, feed top-k pages to Qwen2-VL, no OCR. Use for PDF/document QA over figures and tables, multimodal retrieval, or Recall@k/MRR eval.
liteparse
Local document and PDF parsing that returns spatial text with bounding boxes. Use for extracting text from PDFs, DOCX, Office files, and images; running OCR on scans; producing layout-preserved JSON for RAG; batch-ingesting folders of papers; or rendering pages to PNG for multimodal agents. Distinguishing capabilities…