Scientific Research Skills — 6 skills connected by a workflow

High-level research methodology skills for AI coding agents.
Not another tool list — each skill encodes a research workflow that takes months to develop.

Existing AI-for-research repos catalog hundreds of tools. This repo encodes the decision-making process that experienced researchers internalize over years — when to skim vs. deep-read, how to position a contribution, which engine for which query.
For AI, not for show — written as agent instructions
Methodology > tool calls — high-level over low-level
Modular — install only what you need
Cross-platform — OpenClaw, Claude Code, Codex

The Six Skills

Tool-integrated requires external APIs  ·  Methodology pure workflow, no dependencies

How the Skills Compose

A typical end-to-end research session uses four to six of these skills in sequence.

DISCOVER UNDERSTAND ORGANIZE & PRODUCE social-media-paper-triage XHS / WeChat / Twitter → arXiv literature-search Multi-engine paper search related-work-survey Define dimensions → taxonomy paper-reading 3-level digest (skim / read / deep) zotero-management Filed, tagged, queued academic-figure-generation Camera-ready figures (PaperBanana) Reading queue feeds back into next search round
Discover — finds candidate papers Understand — turns papers into knowledge Organize & produce — stores or ships output

Install

Each skill is a self-contained folder with a SKILL.md following the open agent skills standard. Drop into any skills directory — auto-discovered, no restart.

# clone
git clone https://github.com/jxtse/scientific-research-skills.git
cd scientific-research-skills

# install all (user-level)
cp -r skills/* ~/.openclaw/skills/

# or pick specific
cp -r skills/literature-search ~/.openclaw/skills/
cp -r skills/paper-reading     ~/.openclaw/skills/
# clone
git clone https://github.com/jxtse/scientific-research-skills.git
cd scientific-research-skills

# user-level (all projects)
cp -r skills/* ~/.claude/skills/

# or project-level (single repo)
cp -r skills/* .claude/skills/
# clone
git clone https://github.com/jxtse/scientific-research-skills.git
cd scientific-research-skills

# user-level (all repos)
cp -r skills/* ~/.agents/skills/

# or project-level
cp -r skills/* .agents/skills/

Dependencies at a Glance

Methodology skills work out of the box. Tool-integrated skills require setup before they run.

SkillWhat to configureWhere to get itRequired?
literature-search One of: TAVILY_API_KEY, EXA_API_KEY, GEMINI_API_KEY, AMINER_API_KEY Semantic Scholar + arXiv work with no key Recommended
paper-reading None None
social-media-paper-triage Jina Reader (no key) covers most URLs. For X / 小红书 / 微信: Agent Reach Jina Reader / xreach / Agent Reach Optional
related-work-survey Inherits literature-search config Configure search first
zotero-management ZOTERO_API_KEY + ZOTERO_USER_ID zotero.org/settings/keys Required
academic-figure-generation Local PaperBanana deployment See skill SKILL.md Required
Configuration etiquette baked into the skills. When an AI agent installs these for you, it is instructed to: check existing env vars first, walk you through one skill at a time, append export lines to your shell profile (not just the current session), and verify each key with a smoke test before moving on. Never write secrets to a git-tracked file.