Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

LatchBio Integration

Guides Claude to build, register, debug, and run bioinformatics workflows on the Latch platform via the Python SDK, CLI, Nextflow, Snakemake, and Latch MCP.

Dev & CodingAdvanced33,0303,248AI score 8/10Last updated: Aug 9, 2026

What it does

  • Targets Latch SDK 2.76.8 and shows how to author typed Python workflows and task graphs with declarative workflow bodies.
  • Prescribes a development lifecycle: latch initlatch register --staginglatch developlatch register --yes --open, including duplicate-registration exit code semantics.
  • Covers task resources (CPU, memory, storage, GPU, caching, retries), Latch Data I/O via LPath/LatchFile/LatchDir, and Registry projects, tables, and records.
  • Routes to focused reference docs for Nextflow/Snakemake packaging, UI metadata, launch plans, samplesheets, programmatic launching with launch_v2, and Latch MCP setup.
  • Enforces operational safety: confirm before paid GPU/batch runs or destructive rmr/Registry deletes, never log tokens or secrets, avoid shell interpolation of untrusted strings.

Who it's for

  • Bioinformatics engineers and computational biologists operating pipelines on Latch
  • Teams migrating existing Nextflow or Snakemake pipelines onto Latch
  • Platform engineers automating workflow registration, debugging, and monitoring

Example uses

  1. "Scaffold a new workflow from the subprocess template and register it remotely" → runs latch init covid-wf --template subprocess then latch register --yes --open.
  2. "Get this Snakemake pipeline onto Latch" → verifies a version-compatible entrypoint exists, stages with --staging, then validates in latch develop.
  3. "Bump GPU resources for this task and launch after showing cost" → configures custom_task and asks for confirmation before paid compute.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/K-Dense-AI/scientific-agent-skills/HEAD/skills/latchbio-integration/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the skills/latchbio-integration folder from the GitHub repo K-Dense-AI/scientific-agent-skills into my ~/.claude/skills/latchbio-integration/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/K-Dense-AI/scientific-agent-skills.git && mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/latchbio-integration ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and clone the repo: git clone https://github.com/K-Dense-AI/scientific-agent-skills.git
  2. Create the skills folder: mkdir -p ~/.claude/skills
  3. Copy just this skill: cp -r scientific-agent-skills/skills/latchbio-integration ~/.claude/skills/
  4. Confirm SKILL.md plus the references/ and scripts/ folders came along.
  5. Set up the SDK: uv venv --python 3.12 && source .venv/bin/activate && uv pip install "latch==2.76.8" (use WSL on Windows).
  6. Authenticate with latch login, then pick a workspace with latch workspace (or latch workspace --id 12345).
  7. Restart Claude Code and ask something like "register my Latch workflow" to trigger the skill.