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 & CodingAdvanced★ 33,030⑂ 3,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 init→latch register --staging→latch develop→latch 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
- "Scaffold a new workflow from the subprocess template and register it remotely" → runs
latch init covid-wf --template subprocessthenlatch register --yes --open. - "Get this Snakemake pipeline onto Latch" → verifies a version-compatible entrypoint exists, stages with
--staging, then validates inlatch develop. - "Bump GPU resources for this task and launch after showing cost" → configures
custom_taskand 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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal and clone the repo:
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r scientific-agent-skills/skills/latchbio-integration ~/.claude/skills/ - Confirm
SKILL.mdplus thereferences/andscripts/folders came along. - Set up the SDK:
uv venv --python 3.12 && source .venv/bin/activate && uv pip install "latch==2.76.8"(use WSL on Windows). - Authenticate with
latch login, then pick a workspace withlatch workspace(orlatch workspace --id 12345). - Restart Claude Code and ask something like "register my Latch workflow" to trigger the skill.
View source on GitHub ↗License: MIT