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 zongtingwei/Bioclaw_Skills_Hub --skill ehr-analysisgit clone --depth 1 https://github.com/zongtingwei/Bioclaw_Skills_HubWrote 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/zongtingwei/bioclaw_skills_hub/ehr-analysis)<a href="https://agentmods.dev/skills/zongtingwei/bioclaw_skills_hub/ehr-analysis"><img src="https://agentmods.dev/badge/skills/zongtingwei/bioclaw_skills_hub/ehr-analysis/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/zongtingwei/bioclaw_skills_hub/ehr-analysis"><img src="https://agentmods.dev/badge/skills/zongtingwei/bioclaw_skills_hub/ehr-analysis.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.00033 | $0.02137 |
| Opus 5 | $0.00016 | $0.01069 |
| Sonnet 5 | $0.00007 | $0.00427 |
| Haiku 4.5 | $0.00003 | $0.00214 |
Grade A, and why
ehr-analysis 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 12d 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 — 226 lines — stays where its author put it; the contents beside it link to each section on GitHub.
EHR Analysis
Version Compatibility
Reference examples assume:
pyhealth1.1.6+ (stable) or 2.0+ (latest, requires Python ≥ 3.12)torch2.0+pandas2.0+
Verify the runtime first:
- Python:
python -c "import pyhealth; print(pyhealth.__version__)" - CLI:
pip show pyhealth - If APIs differ between 1.x and 2.x, consult the installed docs and adapt the pattern accordingly.
Overview
Use this skill when the user needs to:
- load and structure EHR data from MIMIC-III, MIMIC-IV, eICU, OMOP-CDM, or a custom dataset
- define clinical prediction tasks such as mortality, readmission, length of stay, or drug recommendation
- train and evaluate deep learning or ML models on patient visit sequences
- apply medical code normalization, ontology mapping, or tokenization
- calibrate model outputs or generate post-hoc interpretability artifacts
When To Use This Skill
- the data source is a structured EHR database or tabular patient record export
- the task requires longitudinal patient visit sequences as model input
- the user needs benchmark-compatible evaluation metrics for clinical AI
- medical code systems (ICD, ATC, NDC, CPT, CCS) must be normalized or mapped before modeling
Quick Route
- Known EHR source (MIMIC, eICU, OMOP): load with a
pyhealth.datasetsclass, thenset_task. - Custom tabular data: wrap in
SampleBaseDataset, then follow the same pipeline. - Code mapping only: use
pyhealth.medcodeindependently without the full pipeline. - Evaluation only: use
pyhealth.metricsindependently on existing predictions.
Progressive Disclosure
- Read
references/technical_reference.mdfor dataset branching rules, task schema details, model selection guidance, and calibration caveats. - Read
references/commands_and_thresholds.mdfor concrete PyHealth code patterns, recommended thresholds, and output file conventions. - Keep
SKILL.mdas the main execution path and load reference files only when the task or failure mode needs the extra detail.
What ships with it
3 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.
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.
- 12d ago First seen · 226 lines · 33 tokens per session scan A aba1a6f7d750
ehr-analysis is a skill published in the GitHub repository zongtingwei/Bioclaw_Skills_Hub (26 stars, last pushed 5mo ago), licensed MIT. It adds 33 tokens to every session and 2,137 once invoked, about $0.0002 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
jupyter-live-kernel
Iterative Python via live Jupyter kernel (hamelnb).
ilya-sutskever-perspective
A thinking guide based on Ilya Sutskever’s public conversations, research papers, testimony, and recommended sources. It applies that material to AI research direction, technical reasoning, and safety questions.
structure-prediction
Protein structure prediction from sequence. ESMFold-based, single GPU, no MSA needed. Predicts 3D structures with pLDDT confidence scores for drug discovery targets.
scrna-orchestrator
Local Scanpy pipeline for single-cell RNA-seq QC, optional doublet detection, clustering, marker discovery, optional CellTypist annotation, optional latent downstream mode from integrated.h5ad/Xscvi, and optional dataset-level plus within-cluster contrastive marker analysis from raw-count .h5ad or 10x Matrix Market…
scrna-embedding
Local scVI/scANVI-based single-cell latent embedding and batch-aware integration from raw-count .h5ad or 10x Matrix Market input, with stable integrated AnnData export for downstream latent analysis.
bio-workbench
A set of rules for running reproducible bioinformatics analyses, which study biological data with software. It uses small self-contained scripts, recorded inputs and outputs, environment details, and version history so results can be repeated.