Scientific Agent Skills is a collection of 156 ready-to-use skill definitions that extend AI coding agents (Claude Code, Cursor, Codex, Google Antigravity, and other hosts supporting the open Agent Skills standard) into research assistants for science. Each skill packages documentation, code examples, and best practices for a specific scientific library, database, or workflow. It's built for computational biologists, cheminformaticians, data scientists, and research engineers who already use an AI coding agent and want it to handle domain-specific tasks reliably instead of guessing API syntax from scratch.
The skills span genomics, single-cell analysis, drug discovery, proteomics, clinical research, medical imaging, materials science, geospatial analysis, and lab automation. Rather than replacing what the agent can already do with any Python package or API, these skills give it curated, version-aware guidance for the tools and databases scientists use most.
Use this if you run an AI coding agent for research tasks and want it to reliably drive specific scientific packages or databases: pulling variant data from ClinicalTrials.gov, running a Scanpy single-cell pipeline, screening compounds with RDKit, or querying UniProt without hand-writing boilerplate each time. It also fits labs that want a shared, version-pinned set of workflows so multiple team members get the same agent behavior across projects.
It's a good fit for exploratory data analysis, prototyping bioinformatics pipelines, drafting evidence-based research documents, and integrating agents with lab platforms like Benchling or Opentrons.
It is not a substitute for domain expertise or regulatory sign-off. The README is explicit that clinical, diagnostic, and regulatory skills produce draft artifacts for qualified human review, not certification, treatment decisions, or deployment-ready outputs. If you need a production diagnostic system, an accredited method validation, or patient-specific clinical decisions, this repo gives you research-support scaffolding, not a finished regulated product.
The most common path is the npx installer, which works with supported hosts like Claude Code, Codex, Gemini CLI, Google Antigravity, and Cursor:
npx skills add K-Dense-AI/scientific-agent-skills
If you use the GitHub CLI (v2.90.0+), install with gh skill:
# Browse and install interactively
gh skill install K-Dense-AI/scientific-agent-skills
# Install a specific skill directly
gh skill install K-Dense-AI/scientific-agent-skills scanpy
# Target a specific agent host
gh skill install K-Dense-AI/scientific-agent-skills --agent cursor
You can pin to a release tag or commit SHA for reproducible installs:
gh skill install K-Dense-AI/scientific-agent-skills --pin v2.59.0
Keep installed skills current with:
gh skill update --all
For hosts without a built-in installer (OpenClaw, NemoClaw, Pi, Hermes, and others), clone the repo directly into the host's skill directory:
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git ~/.agents/skills/scientific-agent-skills # user-level
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git .agents/skills/scientific-agent-skills # project-level
Confirm the exact install path and any host-specific frontmatter requirements against your agent's current documentation, since conventions vary across hosts.