Source profileQuality 93/100Review permissions

K-Dense-AI/scientific-agent-skills/skills/latchbio-integration/SKILL.md

latchbio-integration

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.

Source repository stars
31,966
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

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.

Best for

  • Create or maintain Python SDK workflows and task graphs
  • Package and register Python, Nextflow, or Snakemake pipelines
  • Configure task CPU, memory, storage, GPU, caching, retries, and timeouts

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/K-Dense-AI/scientific-agent-skills --skill "skills/latchbio-integration"
Safe inspection promptEditorial

Inspect the Agent Skill "latchbio-integration" from https://github.com/K-Dense-AI/scientific-agent-skills/blob/e7ac42510774624f327003c95b6650e2883bc01d/skills/latchbio-integration/SKILL.md at commit e7ac42510774624f327003c95b6650e2883bc01d. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Minimal Python Workflow

    Keep workflow bodies declarative: invoke tasks and return their promises. Perform computation and side effects inside tasks.

    Keep workflow bodies declarative: invoke tasks and return their promises. Perform computation and side effects inside tasks.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; u…
  2. 02

    Current Baseline

    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+.

    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 tu…
  3. 03

    When to Use

    Create or maintain Python SDK workflows and task graphs

    Create or maintain Python SDK workflows and task graphsPackage and register Python, Nextflow, or Snakemake pipelinesConfigure task CPU, memory, storage, GPU, caching, retries, and timeouts
  4. 04

    Route to the Right Reference

    Read only the references needed for the task:

    Read only the references needed for the task:Before relying on a symbol, run scripts/inspectlatchsdk.py against the target SDK version. It performs local imports only and does not authenticate or make network requests.
  5. 05

    Installation and Authentication

    For a reproducible environment:

    For a reproducible environment: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:

Permission review

Static risk signals and limitations

Runs scripts

medium · line 198

The documentation asks the agent to run terminal commands or scripts.

python scripts/inspect_latch_sdk.py

Runs scripts

medium · line 205

The documentation asks the agent to run terminal commands or scripts.

python scripts/inspect_latch_sdk.py --json

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score93/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars31,966SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
K-Dense-AI/scientific-agent-skills
Skill path
skills/latchbio-integration/SKILL.md
Commit
e7ac42510774624f327003c95b6650e2883bc01d
License
MIT
Collected
2026-07-28
Default branch
main
View the original SKILL.md

LatchBio Integration

Current Baseline

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.

When to Use

Use this skill to:

  • Create or maintain Python SDK workflows and task graphs
  • Package and register Python, Nextflow, or Snakemake pipelines
  • Configure task CPU, memory, storage, GPU, caching, retries, and timeouts
  • Work with Latch Data through LPath, LatchFile, LatchDir, or the CLI
  • Read or update Latch Registry projects, tables, and records
  • Design workflow forms, launch plans, samplesheets, messages, and result links
  • Stage and debug workflow images with latch register --staging and latch develop
  • Launch and monitor workflows through Python or Latch MCP
  • Discover and use ready-to-run Latch workflows

Route to the Right Reference

Read only the references needed for the task:

NeedReference
Python workflows, tasks, maps, conditions, cachingreferences/workflow-creation.md
LPath, legacy file types, Latch URLs, data CLIreferences/data-management.md
Registry reads, transactions, samplesheetsreferences/registry.md
CPU, memory, storage, GPU, dynamic resourcesreferences/resource-configuration.md
Nextflow and Snakemake packagingreferences/nextflow-snakemake.md
Metadata, forms, launch plans, messages, automationsreferences/ui-and-automation.md
Registration, development, execution, monitoringreferences/operations-and-debugging.md
Ready-to-use workflows and latch.verifiedreferences/verified-workflows.md
Remote MCP setup and tool workflowreferences/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.

Installation and Authentication

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.

Fast Path

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.

Minimal Python Workflow

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.

Recommended Development Lifecycle

  1. Inspect compatibility

    • Confirm the installed SDK and Python version.
    • Identify whether the project is Python, Nextflow, the legacy Snakemake flag path, or the separately pinned Snakemake v2 tutorial track.
  2. Define a typed interface

    • Annotate every workflow and task input and output.
    • Keep module import time free of network calls, data mutations, and secret retrieval. Isolate documented exceptions such as workflow_reference, which resolves the active workspace when its decorator is evaluated.
    • Use dataclasses and enums for structured parameters.
  3. Configure metadata and resources

    • Match metadata parameter keys to the workflow signature.
    • Start with named task decorators, then use custom_task only when measured 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 development container are not synced back.

  5. Register deliberately

    latch register --yes --open .
    

    Useful controls:

    latch register --workspace-id 12345 .
    latch register --mark-as-release .
    latch register --workflow-module wf.custom_entrypoint .
    

    Duplicate registration exits with status 2; it is not the same as a build failure.

  6. Launch only after reviewing cost and parameters

    • Prefer the Console or Latch MCP for interactive operation.
    • Prefer latch_cli.services.launch.launch_v2 for Python automation.
    • Do not use the deprecated latch launch CLI as a new integration pattern.
  7. Monitor and verify

    • Check terminal status, task logs, result links, and scientific outputs.
    • Treat successful orchestration as necessary but not sufficient scientific validation.

Operational Safety

  • Ask for confirmation before launching paid compute, especially GPU or large batch runs.
  • Ask for confirmation before LPath.rmr, latch rmr, Registry deletion, or overwriting shared destinations.
  • Never log secrets, SDK tokens, signed URLs, or secret values.
  • Call get_secret() only inside a task, use the returned value only for its intended service, and never return it as workflow output.
  • Do not pass untrusted strings through shell commands. Prefer argument lists with subprocess.run(..., check=True).
  • Pin the SDK and workflow dependencies for releases. Upgrade only after reviewing the changelog and re-running staging tests.
  • Treat generated files as generated: customize the documented extension file rather than editing output that the CLI will overwrite.

Inspect the Installed SDK

From this skill directory:

uv run --no-project --python 3.12 --with "latch==2.76.8" \
  python scripts/inspect_latch_sdk.py

Use JSON output for automated comparisons:

uv run --no-project --python 3.12 --with "latch==2.76.8" \
  python scripts/inspect_latch_sdk.py --json

Authoritative Sources

Alternatives

Compare before choosing

Computed 9831,966

K-Dense-AI/scientific-agent-skills

dask

Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.

Computed 9831,966

K-Dense-AI/scientific-agent-skills

medchem

Medicinal chemistry filters for compound triage. Apply drug-likeness rules (Lipinski, Veber, CNS), structural alert catalogs (PAINS, NIBR, ChEMBL), complexity metrics, and the medchem query language for library filtering.

Computed 9831,966

K-Dense-AI/scientific-agent-skills

neurokit2

Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware validation—not for diagnosis or device validation.

Computed 9637,126

github/awesome-copilot

flowstudio-power-automate-mcp

Foundation skill for Power Automate via FlowStudio MCP — auth setup, the reusable MCP helper (Python + Node.js), tool discovery via `list_skills` / `tool_search`, and oversized-response handling. Load this skill first when connecting an agent to Power Automate. For specialized workflows, load `flowstudio-power-automate-build`, `flowstudio-power-automate-debug`, `flowstudio-power-automate-monitoring` (Pro+), or `flowstudio-power-automate-governance` (Pro+) — each contains the workflow narrative,