Medical-research-skills litbase

Academic paper reading and research development system for biomedical researchers. Finds papers via Semantic Scholar, reads with structured notes, tracks discussion insights, and synthesizes literature into a Research Foundation Document (RFD) for downstream protocol design skills. 8 commands: /setup /feed /read /discuss /recap /update /sync /propose

install
source · Clone the upstream repo
git clone https://github.com/aipoch/medical-research-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aipoch/medical-research-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/awesome-med-research-skills/Evidence Insight/litbase" ~/.claude/skills/aipoch-medical-research-skills-litbase && rm -rf "$T"
manifest: awesome-med-research-skills/Evidence Insight/litbase/SKILL.md
source content

Source: https://github.com/aipoch/medical-research-skills

LitBase

An academic paper reading and research development system running inside Claude Code (or any compatible agent environment). Built for biomedical researchers who want to find papers, build structured reading notes, track discussion insights, and ultimately synthesize their literature base into a research proposal.

Paper source: Semantic Scholar — free, no login required, 200M+ papers across all disciplines.


Quick Start

Step 1 — Edit

config.json
with your research folder path:

{
  "data_dir": "/path/to/your/research/folder",
  "s2_api_key": "optional — leave empty to use free tier",
  "mode": "auto"
}

Step 2 — Open this folder in Claude Code, then type

/setup
.

The setup command configures everything automatically — no terminal commands needed.


Commands

CommandWhen to useWhat it does
/setup
First useGuided research profile setup; auto-configures environment
/feed
DailyUpdates search terms → searches Semantic Scholar → recommends papers
/read
Per paperSubmit a PDF path, DOI, or abstract → generates 4-section structured note
/discuss [keyword]
Deep diveLocate a paper note by author/title/keyword and discuss; auto-records insights
/recap
Weekly reviewReading overview, framework completeness map, next-step recommendations
/update
Direction shiftSync research direction changes to memory and search terms
/sync
MaintenanceCross-document consistency check; literature integrity audit
/propose
Proposal stageSynthesizes reading notes into a Research Foundation Document (RFD) for downstream protocol design

Note Structure

Each paper analysis is structured in four sections:

SectionContent
I. Paper WeightJournal/conference rank, IF, database indexing (SSCI/Scopus/etc.), Q-rank; each author's institution, position, h-index; citation count and yearly average; overall assessment
II. Paper HighlightsMethodological innovation / critique of systemic problems / significance of the research object
III. Transferable ElementsTheory framework, method details, conceptual tools — each tagged to which part of the user's own paper it can support
IV. How to Use in Your PaperLiterature review positioning, suggested citation phrases (English), methodological precedent, research motivation

Research Foundation Document (RFD)

The

/propose
command generates an RFD — a structured synthesis of the user's accumulated literature base. It serves as a standardized upstream input to any downstream protocol design skill.

RFD sections: Study Population & Clinical Context → Focused Research Question (P/E/C/O/D/T) → Theoretical Framework & Mechanistic Basis → Methodological Precedents → Identified Research Gaps → Literature Source Index.

All citations in the RFD are sourced exclusively from the user's confirmed reading list. No fabricated references.


Capability Tiers

LitBase adapts to its runtime environment automatically:

TierEnvironmentPDF readingPaper searchNotes storageState persistence
AWeb Claude, any LLM chatNative uploadWebSearch / WebFetchArtifact outputSession card (paste at session start)
BManus, file-capable agentsClaude Read toolWebFetch → S2 APIFile systemMEMORY.md
COpenClaw / Claude CodeClaude Read tool (+ optional pdftotext)WebFetch → S2 API (+ optional Python)File systemClaude persistent memory

Dependencies

DependencyPurposeRequired?
Python (stdlib)Runs paper search and metadata scriptsOptional — WebFetch fallback available
pdftotext (poppler)PDF text extractionOptional — Claude native PDF reading available
Claude CodeExecutes skill commandsRequired for Tier C

No API key required for Semantic Scholar. An optional free key raises rate limits.


Literature Integrity

All commands follow the rules in

LITERATURE_HARD_RULES.md
:

  • No fabricated PMIDs, DOIs, titles, authors, citation counts, or study data.
  • All citations in notes and proposals must be traceable to user-provided papers.
  • Unverifiable claims are labeled explicitly rather than omitted silently.

File Structure

litbase/
├── SKILL.md                        ← skill manifest (this file)
└── core/                           ← open this folder in Claude Code
    ├── CLAUDE.md                   ← project rules (auto-loaded)
    ├── README.md
    ├── config.json                 ← user config (data_dir, API key, mode)
    ├── search_config.json          ← search terms (maintained by Claude)
    ├── settings.local.json         ← Claude Code permissions template
    ├── install.sh                  ← optional manual setup script
    ├── commands/
    │   ├── setup.md
    │   ├── feed.md
    │   ├── read.md
    │   ├── discuss.md
    │   ├── recap.md
    │   ├── update.md
    │   ├── sync.md
    │   └── propose.md
    ├── references/
    │   ├── LITERATURE_HARD_RULES.md
    │   └── SESSION_CARD_TEMPLATE.md
    ├── scripts/
    │   ├── recommend.py            ← optional: Semantic Scholar search
    │   ├── lookup_paper.py         ← optional: paper metadata query
    │   └── rename_pdfs.py          ← optional: PDF batch rename
    ├── memory/
    │   └── MEMORY.md
    └── notes/
        └── WORKFLOW.md

data_dir/                           ← path set in config.json
  notes/
    reading_list.md
    YYYY-MM-DD/
      recommendations.md
      Author_Year_Keywords/
        Author_Year_Keywords.pdf
        Author_Year_Keywords.md
    recaps/
      YYYY-MM-DD_recap.md
    proposal/
      YYYY-MM-DD_RFD.md