Clinical Decision-Support Research & Evaluation Artifacts
Builds and validates research-only CDS artifacts—GRADE evidence profiles, aggregate cohort tables, survival plans, model/biomarker evaluations, and de-identification checklists—with a hard no-patient-care boundary.
Data & AnalyticsAdvanced★ 33,030⑂ 3,248AI score 9/10Last updated: Aug 9, 2026
What it does
- Drafts and validates research, evaluation, and governance documentation for clinical decision-support work.
- Pairs each need with a JSON template and a dependency-free Python checker: intended-use statements, GRADE evidence profiles, aggregate model/biomarker evaluation, aggregate cohort tables, survival analysis plans, decision-logic traceability matrices, and de-identification checklists.
- Enforces a required artifact header (purpose, intended users, limitations, human-review roles, citations, monitoring/change control, and a visible "Not for patient care" statement).
- Applies a strict data gate: aggregate or synthetic input only, no patient rows, no identifiers, no network calls, no API keys.
- Refuses diagnosis, treatment recommendations, dosing, triage, and any live clinical operation, routing such requests to licensed professionals.
Who it's for
- Clinical researchers, biostatisticians, and epidemiologists
- Teams validating medical AI models or biomarkers who need transparent, reviewable documentation
- Regulatory/quality staff assembling governance, traceability, and change-control records
- Not for anyone building an actual bedside or point-of-care tool—the skill explicitly refuses that.
Examples
- GRADE evidence profile: fill risk of bias, inconsistency, indirectness, and source IDs per outcome, then run
evidence_profile_check.pyto catch missing judgments or broken citation links (it never computes certainty for you). - Aggregate model evaluation: supply confusion-matrix counts and calibration bins to generate a report with Wilson intervals, subgroup differences, and explicit small-cell suppression.
- Cohort table + privacy review: set a minimum cell threshold, generate the aggregate shell with primary and complementary suppression, then use the de-identification checklist to escalate free text, dates, and rare combinations.
- Survival plan review: verify time zero, competing events, censoring, estimand, horizon, and proportional-hazards checks are pre-specified via
survival_plan_validator.py.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/K-Dense-AI/scientific-agent-skills/HEAD/skills/clinical-decision-support/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/clinical-decision-support folder from the GitHub repo K-Dense-AI/scientific-agent-skills into my ~/.claude/skills/clinical-decision-support/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git && mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/clinical-decision-support ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal (Terminal on macOS/Linux, WSL or Git Bash on Windows).
- Confirm Python 3.11+ is available:
python3 --version. - Clone the repository:
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git - Copy the skill into place:
mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/clinical-decision-support ~/.claude/skills/ - Restart Claude Code and confirm
clinical-decision-supportappears in your skills list. - Smoke-test the helpers from the skill directory:
python3 scripts/validate_cds_artifact.py --help - Optionally run the bundled tests:
python3 -m unittest discover -s tests/clinical-decision-support -p 'test_*.py' - When using it, feed only synthetic or aggregate data—never patient-level records.
View source on GitHub ↗License: MIT