9 Free Claude Code Skills for Medical Research Workflow

✍️ OpenClawRadar📅 Published: April 16, 2026🔗 Source
9 Free Claude Code Skills for Medical Research Workflow
Ad

A radiology researcher who has used Claude Code daily for about a year has open-sourced a collection of 9 skills designed for medical research workflows. The skills cover most research tasks from literature searching to manuscript preparation and submission.

Available Skills

  • search-lit — Searches PubMed, Semantic Scholar, and bioRxiv. Every citation is verified against the actual API before being included to prevent hallucinated references.
  • check-reporting — Audits manuscripts against reporting guidelines (STROBE, STARD, TRIPOD+AI, PRISMA, ARRIVE, and more). Provides item-by-item PRESENT/PARTIAL/MISSING status.
  • analyze-stats — Generates reproducible Python/R code for diagnostic accuracy, inter-rater agreement, survival analysis, meta-analysis, and demographics tables.
  • make-figures — Creates publication-ready figures at 300 DPI: ROC curves, forest plots, flow diagrams (PRISMA/CONSORT/STARD), Bland-Altman plots, confusion matrices.
  • design-study — Reviews study designs for data leakage, cohort logic issues, and reporting guideline fit before writing begins.
  • write-paper — Full IMRAD manuscript pipeline with 8 phases from outline to submission-ready draft.
  • present-paper — Analyzes papers, finds supporting references, and drafts speaker scripts for journal clubs or grand rounds.
  • grant-builder — Structures grant proposals with significance, innovation, approach, and milestones sections.
  • publish-skill — Meta-skill that helps package your own Claude Code skills for open-source distribution (PII audit, license check).
Ad

Key Design Features

The skills include anti-hallucination citation verification where search-lit never generates references from memory and verifies every DOI/PMID via API. Real checklists for STROBE, STARD, TRIPOD+AI, PRISMA, and ARRIVE are bundled (open-license ones). For copyrighted guidelines like CONSORT, the skill uses its knowledge but directs users to download the official checklist. Skills can call each other — for example, check-reporting can invoke make-figures to generate a missing flow diagram or analyze-stats to fill statistical gaps.

Installation

git clone https://github.com/aperivue/medical-research-skills.git
cp -r medical-research-skills/skills/* ~/.claude/skills/

Restart Claude Code after installation. The skills work with CLI, desktop app, and IDE extensions.

The GitHub repository is available at https://github.com/aperivue/medical-research-skills. The researcher notes that the same skill architecture could be adapted for different research domains, with publish-skill specifically built for that purpose.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

Building a Sub-500ms Voice Agent: Architecture and Performance Insights
Tools

Building a Sub-500ms Voice Agent: Architecture and Performance Insights

A developer built a voice agent from scratch achieving ~400ms end-to-end latency with full STT → LLM → TTS streaming. Key insights include treating voice as a turn-taking problem, using semantic end-of-turn detection, and colocating all components for minimal latency.

OpenClawRadar
Claudeck: Browser UI for Claude Code with Agents, Cost Tracking, and Plugin System
Tools

Claudeck: Browser UI for Claude Code with Agents, Cost Tracking, and Plugin System

Claudeck is a browser-based UI that wraps the Claude Code SDK, featuring autonomous agent orchestration, cost tracking, git worktree isolation, persistent memory, and a plugin system. Install with npx claudeck@latest.

OpenClawRadar
context-link v1.0.0: Local MCP server reduces Claude Code token usage by 91%
Tools

context-link v1.0.0: Local MCP server reduces Claude Code token usage by 91%

context-link v1.0.0 is a local MCP server that indexes codebases with Tree-sitter to serve Claude only the exact symbols, dependencies and structure needed, reducing token usage by 91% in specific cases and 70-80% across full tasks.

OpenClawRadar
Feynman: Open Source Research Agent with Paper-Codebase Audit Tool
Tools

Feynman: Open Source Research Agent with Paper-Codebase Audit Tool

Feynman is an open source research agent CLI that dispatches four subagents in parallel to answer research questions and includes a unique audit tool that compares paper claims against actual codebases. It features one-command installation, MIT license, and runs on pi for agent runtime with alphaxiv for paper search.

OpenClawRadar