Agent SkillsK-Dense-AI/scientific-agent-skills › benchling-integration

benchling-integration

GitHub

集成Benchling平台SDK与API,实现生命科学研究数据自动化。支持注册实体、库存、电子实验记录本、工作流及数据仓库查询,适用于实验室数据同步与分析场景。

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

Trigger Scenarios

需要管理Benchling中的生物序列或库存 自动化电子实验记录本操作 构建Benchling工作流或应用 查询Benchling数据仓库

Install

npx skills add K-Dense-AI/scientific-agent-skills --skill benchling-integration -g -y
More Options

Use without installing

npx skills use K-Dense-AI/scientific-agent-skills@benchling-integration

指定 Agent (Claude Code)

npx skills add K-Dense-AI/scientific-agent-skills --skill benchling-integration -a claude-code -g -y

安装 repo 全部 skill

npx skills add K-Dense-AI/scientific-agent-skills --all -g -y

预览 repo 内 skill

npx skills add K-Dense-AI/scientific-agent-skills --list

SKILL.md

Frontmatter
{
    "name": "benchling-integration",
    "license": "MIT",
    "metadata": {
        "version": "1.4",
        "openclaw": {
            "envVars": [
                {
                    "name": "BENCHLING_TENANT_URL",
                    "required": true,
                    "description": "Benchling tenant base URL."
                },
                {
                    "name": "BENCHLING_API_KEY",
                    "required": false,
                    "description": "API key auth (alternative to OAuth)."
                },
                {
                    "name": "BENCHLING_CLIENT_ID",
                    "required": false,
                    "description": "OAuth app client id."
                },
                {
                    "name": "BENCHLING_CLIENT_SECRET",
                    "required": false,
                    "description": "OAuth app client secret."
                },
                {
                    "name": "BENCHLING_PROD_TENANT_URL",
                    "required": false,
                    "description": "Production tenant URL (multi-env setups)."
                },
                {
                    "name": "BENCHLING_PROD_API_KEY",
                    "required": false,
                    "description": "Production API key (multi-env setups)."
                },
                {
                    "name": "BENCHLING_STAGING_TENANT_URL",
                    "required": false,
                    "description": "Staging tenant URL (multi-env setups)."
                },
                {
                    "name": "BENCHLING_STAGING_API_KEY",
                    "required": false,
                    "description": "Staging API key (multi-env setups)."
                }
            ],
            "primaryEnv": "BENCHLING_API_KEY"
        },
        "skill-author": "K-Dense Inc."
    },
    "description": "Benchling Python SDK and REST API integration for registry entities, inventory, ELN entries, workflows, Benchling Apps, and Data Warehouse queries. Use when automating lab data with benchling-sdk or the v2 API.",
    "allowed-tools": "Read Write Edit Bash",
    "compatibility": "Requires a Benchling account, tenant URL, and API key or OAuth app credentials. Install benchling-sdk with uv pip install."
}

Benchling Integration

Overview

Benchling is a cloud platform for life sciences R&D. Access registry entities (DNA, RNA, proteins), inventory, electronic lab notebooks, and workflows programmatically via the Python SDK and REST API.

Version note: Examples target benchling-sdk 1.25.0 (latest stable on PyPI). Docs: benchling.com/sdk-docs. Platform guide: docs.benchling.com.

When to Use This Skill

This skill should be used when:

  • Working with Benchling's Python SDK or REST API
  • Managing biological sequences (DNA, RNA, proteins) and registry entities
  • Automating inventory operations (samples, containers, locations, transfers)
  • Creating or querying electronic lab notebook entries
  • Building workflow automations or Benchling Apps
  • Syncing data between Benchling and external systems
  • Querying the Benchling Data Warehouse for analytics
  • Setting up event-driven integrations with AWS EventBridge

Core Capabilities

Seven capability areas, each with code, are in references/core_capabilities.md:

  1. Authentication and setup — API key and OAuth app auth; see references/authentication.md.
  2. Registry and entity management — DNA and AA sequences, custom entities, schemas, and registration.
  3. Inventory management — containers, boxes, plates, locations, and transfers.
  4. Notebook and documentation — entries, day-to-day notes, and structured tables.
  5. Workflows and automation — tasks, flowcharts, and assay runs.
  6. Events and integration — EventBridge subscriptions; see references/eventbridge.md.
  7. Data warehouse and analytics — SQL access to the warehouse.

Endpoint and SDK detail is in references/api_endpoints.md and references/sdk_reference.md.

Best Practices

Error Handling

The SDK automatically retries failed requests:

# Automatic retry for 429, 502, 503, 504 status codes
# Up to 5 retries with exponential backoff
# Customize retry behavior if needed
from benchling_sdk.retry import RetryStrategy

benchling = Benchling(
    url=tenant_url,
    auth_method=ApiKeyAuth(api_key),
    retry_strategy=RetryStrategy(max_retries=3),
)

Pagination Efficiency

Use generators for memory-efficient pagination:

# Generator-based iteration
for page in benchling.dna_sequences.list():
    for sequence in page:
        process(sequence)

# Check estimated count without loading all pages
total = benchling.dna_sequences.list().estimated_count()

Schema Fields Helper

Use the fields() helper for custom schema fields:

# Convert dict to Fields object
custom_fields = benchling.models.fields({
    "concentration": "100 ng/μL",
    "date_prepared": "2025-10-20",
    "notes": "High quality prep"
})

Forward Compatibility

The SDK handles unknown enum values and types gracefully:

  • Unknown enum values are preserved
  • Unrecognized polymorphic types return UnknownType
  • Allows working with newer API versions

Security Considerations

  • Never commit API keys or OAuth secrets to version control
  • Read only named environment variables (BENCHLING_TENANT_URL, BENCHLING_API_KEY, etc.)
  • Route network calls exclusively to your tenant URL
  • Rotate keys if compromised; use OAuth for multi-user production apps
  • Grant minimal necessary permissions for apps in the Developer Console

Resources

references/

Detailed reference documentation for in-depth information:

  • authentication.md - Comprehensive authentication guide including OIDC, security best practices, and credential management
  • sdk_reference.md - Detailed Python SDK reference with advanced patterns, examples, and all entity types
  • api_endpoints.md - REST API endpoint reference for direct HTTP calls without the SDK
  • eventbridge.md - EventBridge setup, event payload schema, rule examples, Lambda handler, validation, and recovery

Load these references as needed for specific integration requirements.

Common Use Cases

1. Bulk Entity Import:

# Import multiple sequences from FASTA file
from Bio import SeqIO

for record in SeqIO.parse("sequences.fasta", "fasta"):
    benchling.dna_sequences.create(
        DnaSequenceCreate(
            name=record.id,
            bases=str(record.seq),
            is_circular=False,
            folder_id="fld_abc123"
        )
    )

2. Inventory Audit:

# List all containers in a specific location
containers = benchling.containers.list(
    parent_storage_id="box_abc123"
)

for page in containers:
    for container in page:
        print(f"{container.name}: {container.barcode}")

3. Workflow Automation:

# Update all pending tasks for a workflow
tasks = benchling.workflow_tasks.list(
    workflow_id="wf_abc123",
    status="pending"
)

for page in tasks:
    for task in page:
        # Perform automated checks
        if auto_validate(task):
            benchling.workflow_tasks.update(
                task_id=task.id,
                workflow_task=WorkflowTaskUpdate(
                    status_id="status_complete"
                )
            )

4. Data Export:

# Export all sequences with specific properties
sequences = benchling.dna_sequences.list()
export_data = []

for page in sequences:
    for seq in page:
        if seq.schema_id == "target_schema_id":
            export_data.append({
                "id": seq.id,
                "name": seq.name,
                "bases": seq.bases,
                "length": len(seq.bases)
            })

# Save to CSV or database
import csv
with open("sequences.csv", "w") as f:
    writer = csv.DictWriter(f, fieldnames=export_data[0].keys())
    writer.writeheader()
    writer.writerows(export_data)

Additional Resources

Version History

  • 390f514 Current 2026-08-20 14:58

Same Skill Collection

skills/adaptyv/SKILL.md
skills/aeon/SKILL.md
skills/anndata/SKILL.md
skills/arboreto/SKILL.md
skills/astropy/SKILL.md
skills/bgpt-paper-search/SKILL.md
skills/bids/SKILL.md
skills/biopython/SKILL.md
skills/bioservices/SKILL.md
skills/cellxgene-census/SKILL.md
skills/cirq/SKILL.md
skills/citation-management/SKILL.md
skills/clinical-decision-support/SKILL.md
skills/clinical-reports/SKILL.md
skills/cobrapy/SKILL.md
skills/dask/SKILL.md
skills/database-lookup/SKILL.md
skills/datamol/SKILL.md
skills/deepchem/SKILL.md
skills/deepspot-m/SKILL.md
skills/deeptools/SKILL.md
skills/depmap/SKILL.md
skills/diffdock/SKILL.md
skills/dnanexus-integration/SKILL.md
skills/esm/SKILL.md
skills/etetoolkit/SKILL.md
skills/exploratory-data-analysis/SKILL.md
skills/flowio/SKILL.md
skills/fluidsim/SKILL.md
skills/generate-image/SKILL.md
skills/geniml/SKILL.md
skills/geopandas/SKILL.md
skills/get-available-resources/SKILL.md
skills/gget/SKILL.md
skills/glycoengineering/SKILL.md
skills/gtars/SKILL.md
skills/histolab/SKILL.md
skills/hypogenic/SKILL.md
skills/hypothesis-generation/SKILL.md
skills/imaging-data-commons/SKILL.md
skills/infographics/SKILL.md
skills/lab-hardware-cad/SKILL.md
skills/labarchive-integration/SKILL.md
skills/lamindb/SKILL.md
skills/latchbio-integration/SKILL.md
skills/latex-posters/SKILL.md
skills/liteparse/SKILL.md
skills/literature-review/SKILL.md
skills/markdown-mermaid-writing/SKILL.md

Metadata

Files
0
Version
390f514
Hash
e6e1915d
Indexed
2026-08-20 14:58

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-21 06:33
浙ICP备14020137号-1 $Гость$