Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

dna-assemblyDNA 组装

Agent Skill

dna-assembly 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

756

周安装

34

GitHub Stars

93

下载量

280
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dna-assembly(DNA 组装)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/dna-assembly
安装命令:
npx skills add https://github.com/letta-ai/skills --skill dna-assembly
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill dna-assembly

简介

dna-assembly 提供 Golden Gate 等 DNA 组装技术实操指南,聚焦 Type IIS 酶切引物设计要点。

  • 适用于分子生物学实验设计、基因编辑或合成生物学项目,支持 Codex、Claude、Cursor、Gemini CLI。
  • 通过 npx skills add 命令安装,强调引物结构完整性(含 clamp、overhang 等组件)。
  • 使用前应验证酶活性、引物纯度,并遵循实验室生物安全规范,避免污染或交叉反应。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

DNA Assembly

Overview

This skill provides procedural knowledge for DNA assembly tasks, particularly Golden Gate assembly using Type IIS restriction enzymes. It addresses common pitfalls in primer design and provides verification strategies to ensure correct assembly designs.

Critical Requirements for Type IIS Restriction Enzyme Primers

Complete Primer Structure

When designing primers for Type IIS enzymes (BsaI, BsmBI, etc.), the complete structure must include ALL components:

[clamp ≥1bp]-[recognition site]-[spacer N]-[4bp overhang]-[binding region 15-45bp]

For BsaI-HFv2 specifically:

[clamp ≥1bp]-GGTCTC-N-[4bp overhang]-[binding region]

Critical: The clamp sequence is MANDATORY. Type IIS restriction enzymes require additional nucleotides flanking the recognition site for efficient binding and cutting. Primers starting directly with the recognition sequence (e.g., GGTCTC...) will fail validation.

Component Details

ComponentRequirementPurpose
Clamp≥1 nucleotide (typically 2-6bp)Enzyme binding efficiency
Recognition siteEnzyme-specific (e.g., GGTCTC for BsaI)Enzyme targeting
Spacer (N)1 nucleotideSeparates recognition from cut site
Overhang4bp for Golden GateDetermines assembly order
Binding region15-45bp, Tm 50-65°CTemplate specificity

Approach for DNA Assembly Tasks

Step 1: Verify External Requirements First

Before implementing any primer design:

  1. Look up the specific enzyme requirements from the manufacturer (NEB, Thermo, etc.)
  2. Document the complete primer structure explicitly
  3. Verify clamp length requirements for the specific enzyme
  4. Check for any special buffer or temperature requirements

Step 2: Parse and Validate Input Sequences

When working with input DNA sequences:

  1. Parse FASTA/GenBank files correctly
  2. Check for internal restriction sites that would interfere with assembly
  3. Verify reading frames for fusion proteins (length divisible by 3)
  4. Identify start/stop codons and determine if they need modification

Step 3: Design Overhangs Strategically

For ordered multi-fragment assembly:

  1. Choose 4bp overhangs that are unique and non-complementary
  2. Avoid palindromic sequences in overhangs
  3. Ensure overhangs don't create internal recognition sites when joined
  4. For fusion proteins, remove stop codons between fragments

Step 4: Calculate Binding Regions

For the template-binding portion of primers:

  1. Target melting temperature (Tm) within specification (typically 50-65°C)
  2. Use appropriate Tm calculation method (nearest-neighbor preferred)
  3. Ensure binding region is 15-45 nucleotides
  4. Check for secondary structures or primer dimers

Verification Strategies

Independent Validation Approach

Self-verification can encode the same incorrect assumptions. To avoid this:

  1. Test against published examples: Find published Golden Gate primer sequences and verify the design logic produces the same structure
  2. Use external tools: Validate primers with established tools (Benchling, SnapGene, NEB primer design tools)
  3. Check component counts: Verify primers contain all required components by position

Verification Checklist

[ ] Clamp sequence present (≥1bp before recognition site)
[ ] Recognition site correct and complete
[ ] Spacer nucleotide present after recognition site
[ ] Overhang is exactly 4bp
[ ] Binding region Tm within specification
[ ] No internal restriction sites in inserts
[ ] Overhangs are unique and non-conflicting
[ ] Frame preserved for fusion proteins
[ ] Start/stop codons handled correctly

Programmatic Verification

When writing verification code:

  1. Check primer structure by position, not just content
  2. Verify the recognition site does NOT start at position 0
  3. Confirm overhang sequences match expected assembly order
  4. Calculate actual Tm using consistent method

Common Pitfalls

1. Missing Clamp Sequence

Error: Primer starts directly with recognition site

WRONG: GGTCTCAAAGC...  (GGTCTC at position 0)
RIGHT: GCGGTCTCAAAGC... (clamp 'GC' before GGTCTC)

2. Incomplete Requirements Verification

Error: Acknowledging the need to check enzyme requirements but not following through Solution: Always document the complete primer structure before writing any design code

3. Self-Verification Bias

Error: Creating verification scripts that encode the same assumptions as the design Solution: Use external references or published examples to validate design logic

4. Ignoring Manufacturer Specifications

Error: Using generic enzyme knowledge instead of specific product requirements Solution: Check manufacturer documentation for the specific enzyme variant (e.g., BsaI-HFv2 vs standard BsaI)

5. Overhang Conflicts

Error: Choosing overhangs that are complementary to each other or create unintended recognition sites Solution: Systematically verify all overhang pairs for compatibility

Reusable Code Patterns

When implementing DNA assembly tasks, consider creating reusable functions for:

  1. FASTA/sequence parsing - Avoid rewriting parsing logic multiple times
  2. Reverse complement calculation - Standard function used throughout
  3. Melting temperature calculation - Consistent Tm method across all primers
  4. Primer structure validation - Single source of truth for structure requirements

Reference Materials

For detailed enzyme specifications and protocols, consult:

  • references/golden_gate_primer_structure.md - Complete primer structure documentation
  • Manufacturer protocols (NEB, Thermo Fisher) for specific enzymes
  • Published Golden Gate assembly papers for validated examples

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.29%
按下载量换算74

Gemini CLI

22.23%
按下载量换算62

Antigravity

17.56%
按下载量换算49

windsurf

12.18%
按下载量换算34

OpenCode

7.09%
按下载量换算20

Codex

3.9%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills