adaptyv
How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user…
Build, register, debug, and operate bioinformatics workflows on Latch using the Python SDK, CLI, Latch Data and Registry, Nextflow, Snakemake, programmatic execution, and Latch MCP. Use when authoring or deploying Latch workflows, configuring resources or interfaces, moving
$ npx -y skills add K-Dense-AI/scientific-agent-skills --skill latchbio-integration --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/latchbio-integrationContext preview
The summary Claude sees to decide when to auto-load this skill.
Build, register, debug, and operate bioinformatics workflows on Latch using the Python SDK, CLI, Latch Data and Registry, Nextflow, Snakemake, programmatic execution, and Latch MCP. Use when authoring or deploying Latch workflows, configuring resources or interfaces, moving
name: latchbio-integration description: Build, register, debug, and operate bioinformatics workflows on Latch using the Python SDK, CLI, Latch Data and Registry, Nextflow, Snakemake, programmatic execution, and Latch MCP. Use when authoring or deploying Latch workflows, configuring resources or interfaces, moving data, integrating Registry, or launching and monitoring runs. license: MIT allowed-tools: Read Write Edit Bash compatibility: Requires network access and a Latch account. The current stable SDK requires Python 3.9+; Python 3.12 is recommended. Uses uv for installation. Docker is needed for local image builds, while remote registration is the CLI default. metadata: version: "2.1" skill-author: K-Dense Inc.
This skill targets **Latch SDK 2.76.8**, released July 10, 2026. The package metadata supports Python 3.9–3.12 and declares Python 3.9+.
Treat the installed package and its changelog as authoritative when a guide disagrees with the SDK. Some Latch guides retain older Python ranges or compatibility-specific pre-release pins, especially the Snakemake v2 tutorial. Never combine commands or imports from different tracks without checking their version requirements.
Use this skill to:
Read only the references needed for the task:
| Need | Reference | |---|---| | Python workflows, tasks, maps, conditions, caching | `references/workflow-creation.md` | | `LPath`, legacy file types, Latch URLs, data CLI | `references/data-management.md` | | Registry reads, transactions, samplesheets | `references/registry.md` | | CPU, memory, storage, GPU, dynamic resources | `references/resource-configuration.md` | | Nextflow and Snakemake packaging | `references/nextflow-snakemake.md` | | Metadata, forms, launch plans, messages, automations | `references/ui-and-automation.md` | | Registration, development, execution, monitoring | `references/operations-and-debugging.md` | | Ready-to-use workflows and `latch.verified` | `references/verified-workflows.md` | | Remote MCP setup and tool workflow | `references/latch-mcp.md` |
Before relying on a symbol, run `scripts/inspect_latch_sdk.py` against the target SDK version. It performs local imports only and does not authenticate or make network requests.
For a reproducible environment:
uv venv --python 3.12 source .venv/bin/activate uv pip install "latch==2.76.8"
On Windows, use WSL for the documented Linux workflow tooling.
Authenticate through the supported OAuth flow; do not read, print, copy, or parse `~/.latch/token` manually:
latch login latch workspace
Select a workspace non-interactively when its numeric ID is already known:
latch workspace --id 12345
`latch login` credentials are for the SDK and CLI. Latch MCP uses a separate OAuth authorization and its credentials cannot be reused for general SDK access.
Create and remotely register the maintained subprocess template:
latch init covid-wf --template subprocess latch register --yes --open covid-wf
Remote image building is the default. Use `--no-remote` only when a local Docker daemon is available and a local build is intentional.
Keep workflow bodies declarative: invoke tasks and return their promises. Perform computation and side effects inside tasks.
from latch import small_task, workflow
@small_task
def reverse_complement(sequence: str) -> str:
table = str.maketrans("ACGTacgt", "TGCAtgca")
return sequence.translate(table)[::-1]
@workflow
def reverse_complement_workflow(sequence: str) -> str:
"""Return the reverse complement of a DNA sequence."""
return reverse_complement(sequence=sequence)Use `@workflow(metadata)` when the generated interface needs custom labels, sections, validation rules, samplesheets, or documentation links. Use `LatchFile` or `LatchDir` for automatic task input staging and output upload; use `LPath` for imperative remote path operations.
1. **Inspect compatibility**
flag path, or the separately pinned Snakemake v2 tutorial track.
2. **Define a typed interface**
retrieval. Isolate documented exceptions such as `workflow_reference`, which resolves the active workspace when its decorator is evaluated.
3. **Configure metadata and resources**
requirements justify it.
4. **Validate in the execution image**
Fresh Nextflow and Snakemake projects must generate their version-compatible Python entrypoint before staging. In SDK 2.76.8, the staging branch does not generate one from `--nf-script` or `--snakefile`.
latch register --staging . latch develop .
Re-run staging registration after changing the Dockerfile or dependencies. Edits made inside the develop
🔔 Claude Scientific Skills is now Scientific Agent Skills. Same skills, broader compatibility — now works with any AI agent that supports the open Agent Skills standard, not just Claude.
How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user…
This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection,…
Plan, execute, and document validation, verification, and transfer of analytical procedures under the governing framework - ICH Q2(R2) and Q14, USP…
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data…
Autonomously improve a real artifact (code, training recipe, agent harness, data pipeline, prompt) against an objective and an evaluator, using Hypothesis Tree…
Infer gene regulatory networks (GRNs) from gene expression data using scalable algorithms (GRNBoost2, GENIE3). Use when analyzing transcriptomics data (bulk…