/ Verzeichnis / Playground / scientific-agent-skills
● Community K-Dense-AI ⚡ Sofort

scientific-agent-skills

von K-Dense-AI · K-Dense-AI/scientific-agent-skills

133 domain-expert skills covering bioinformatics, drug discovery, clinical data, ML, and scientific writing — Claude becomes a credible research collaborator.

A library of Agent Skills for scientific workflows. Each sub-skill (BioPython, RDKit, Scanpy, DeepChem, PyMC, PubMed lookup, etc.) ships its own SKILL.md with usage patterns and references. With the bundle installed, Claude stops guessing at bioinformatics APIs and instead follows the domain's actual idioms, tool names, and data formats.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

scientific-agent-skill.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "scientific-agent-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/K-Dense-AI/scientific-agent-skills",
        "~/.claude/skills/scientific-agent-skills"
      ],
      "_inferred": true
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "scientific-agent-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/K-Dense-AI/scientific-agent-skills",
        "~/.claude/skills/scientific-agent-skills"
      ],
      "_inferred": true
    }
  }
}

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "scientific-agent-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/K-Dense-AI/scientific-agent-skills",
        "~/.claude/skills/scientific-agent-skills"
      ],
      "_inferred": true
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "scientific-agent-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/K-Dense-AI/scientific-agent-skills",
        "~/.claude/skills/scientific-agent-skills"
      ],
      "_inferred": true
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "scientific-agent-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/K-Dense-AI/scientific-agent-skills",
        "~/.claude/skills/scientific-agent-skills"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

~/.config/zed/settings.json
{
  "context_servers": {
    "scientific-agent-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/K-Dense-AI/scientific-agent-skills",
          "~/.claude/skills/scientific-agent-skills"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

claude mcp add scientific-agent-skill -- git clone https://github.com/K-Dense-AI/scientific-agent-skills ~/.claude/skills/scientific-agent-skills

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: scientific-agent-skills

Run a single-cell RNA-seq analysis with Scanpy

👤 Computational biologists and bioinformatics postdocs ⏱ ~30 min intermediate

Wann einsetzen: You have an .h5ad file and want QC, clustering, and UMAP without re-reading the Scanpy docs.

Voraussetzungen
  • Scanpy installed in your env — pip install scanpy
  • An .h5ad dataset — Download from a public repo or use your own
Ablauf
  1. Tell Claude the data and the goal
    I have pbmc3k.h5ad. Use the scanpy skill to do QC, normalization, clustering, and a UMAP. Explain each step.✓ Kopiert
    → Claude calls the right Scanpy functions in the right order with sensible defaults
  2. Iterate on parameters
    Re-do clustering with resolution 0.8 and show how cluster labels changed.✓ Kopiert
    → Parameter tweak without re-planning the full pipeline

Ergebnis: A reproducible notebook plus figures, using idiomatic Scanpy — no hallucinated function names.

Fallstricke
  • Generic ML advice from Claude that ignores domain conventions — Reference the skill by name: 'use the scanpy skill'
Kombinieren mit: filesystem

Build a structured literature review from PubMed + arXiv

👤 PhD students, research scientists ⏱ ~45 min intermediate

Wann einsetzen: You need 30+ papers on a topic with abstracts and citation metadata, not just titles from Google.

Ablauf
  1. Specify scope
    Use the paper-lookup skill. Find all PubMed and bioRxiv papers on GLP-1 agonists for Alzheimer's in the last 3 years.✓ Kopiert
    → Claude hits the right APIs with correct query syntax
  2. Cluster by theme
    Cluster by hypothesis (neuroinflammation, vascular, direct neuronal) and give me the top 3 papers per cluster.✓ Kopiert
    → Thematic grouping with citation-ready metadata

Ergebnis: A reviewable literature map with real DOIs, not fabricated citations.

Fallstricke
  • Claude hallucinates paper titles without the skill — Always verify DOIs — have Claude fetch one record to prove it's real
Kombinieren mit: fetch

Dock a small molecule to a target protein with DiffDock

👤 Medicinal chemists, drug discovery researchers ⏱ ~20 min advanced

Wann einsetzen: You have a SMILES string and a PDB target and want a quick first-pass pose prediction.

Voraussetzungen
  • DiffDock environment — Follow the DiffDock skill's env-setup recipe
Ablauf
  1. Provide ligand and receptor
    Using the diffdock skill, dock SMILES 'CC(=O)OC1=CC=CC=C1C(=O)O' into PDB 1ABC. Give me the top 5 poses with scores.✓ Kopiert
    → Claude runs the right DiffDock command with correct flags
  2. Visualize
    Generate a PyMOL script to render the top pose.✓ Kopiert
    → Runnable .pml file

Ergebnis: Pose predictions ready to feed into a downstream free-energy calculation.

Fallstricke
  • Claude invents flags that don't exist in DiffDock — The skill's reference folder has the real CLI — insist Claude consult it
Kombinieren mit: filesystem

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

scientific-agent-skill + filesystem

Skills produce notebooks and figures; filesystem MCP stores and organizes the output

Save the Scanpy UMAP to results/figures/ and write a README for the experiment.✓ Kopiert
scientific-agent-skill + arxiv

Pair the paper-lookup skill with the arxiv MCP for richer citation graphs

Find arXiv papers citing the one I just read, grouped by which section they cite.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
Bioinformatics (BioPython, Scanpy, pysam, gget, scVelo) sequence / count matrix / BAM file Sequence, genomics, or single-cell workflow 0 — local compute
Cheminformatics (RDKit, Datamol, DeepChem, DiffDock, OpenMM) SMILES / PDB / MOL2 Small molecule, protein structure, or dynamics problem 0
Clinical databases (ClinVar, COSMIC, ClinicalTrials.gov, FDA) gene / variant / trial ID Looking up clinical evidence or trial status 0 — public APIs
Paper lookup (PubMed, bioRxiv, arXiv) query string, date range Literature search with real citations 0
ML training (PyTorch Lightning, Transformers, PyMC, TimesFM) dataset + config Building a model with idiomatic framework usage 0

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
Public databases (NCBI, PubMed) have their own polite-use limits — typically 3 req/s
Tokens pro Aufruf
SKILL.md references are sizeable; expect 2-5k tokens loaded per domain touched
Kosten in €
Free — skills are local files; only pay for compute you run
Tipp
Scope the prompt to one domain at a time so Claude doesn't load every SKILL.md.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: No credentials in the skill itself; NCBI/PubMed work better with an email-in-env-var for polite rate limiting
Datenabfluss: Only to the public science APIs you choose to query

Fehlerbehebung

Häufige Fehler und Lösungen

Claude uses wrong function name from a skill's library

Tell it to re-read the skill's reference folder; the SKILL.md frontmatter should auto-load it.

Prüfen: ls ~/.claude/skills/scientific-agent-skills/<skill>/references/
API rate limit hit on NCBI

Add an email to NCBI_EMAIL env var and cap concurrency at 3 req/s.

Skill not invoked on a relevant prompt

Mention the library name explicitly ('use the rdkit skill') — auto-invocation is fuzzy across 133 skills.

Alternativen

scientific-agent-skills vs. andere

AlternativeWann stattdessenKompromiss
ai-research-skill (Orchestra-Research)You want ML-research infrastructure (training, distributed, inference) rather than wet-lab / clinicalMore ML systems, less biology / chemistry domain depth
biomcpYou want an MCP server (live tools) rather than prompt-bundle skillsMCPs execute calls; skills just teach Claude to write the right code

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen