Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Adaptyv Cloud Lab Integration

A skill for submitting protein sequences to the Adaptyv cloud lab API for binding, expression, thermostability, and enzyme activity assays, then tracking and retrieving results.

Web & APIAdvanced32447AI score 6/10Last updated: Jul 3, 2026

What it does

  • Walks you through Adaptyv API authentication via the ADAPTYV_API_KEY env var or a .env file.
  • Gives the request shape for submitting sequences with an experiment type: binding, expression, thermostability, or enzyme activity.
  • Points to workflows for status tracking by experiment_id, result download, and batch submission.
  • Summarizes pre-submission sequence optimization (unpaired cysteines, hydrophobic patches, solubility predictions) using NetSolP, SoluProt, SolubleMPNN, ESM, ipTM, and pSAE.

Who it's for

  • Researchers and biotech startups moving AI-generated protein designs into wet-lab validation.
  • Computational biology / ML engineers automating high-throughput design loops.
  • Anyone who already has (or can request) an Adaptyv API access token.

Example uses

  1. "Submit these 20 binder candidates for a binding assay" → generates Python that POSTs FASTA to /experiments.
  2. "Check yesterday's experiment status and download finished results" → polling and retrieval script keyed on experiment_id.
  3. "Clean up this sequence for better expression" → flags unpaired cysteines and hydrophobic exposure, then proposes a SolubleMPNN/NetSolP redesign path.

· · · 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/Microck/ordinary-claude-skills/HEAD/skills_all/adaptyv/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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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_all/adaptyv folder from the GitHub repo Microck/ordinary-claude-skills into my ~/.claude/skills/microck-adaptyv/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/Microck/ordinary-claude-skills.git && mkdir -p ~/.claude/skills && cp -r ordinary-claude-skills/skills_all/adaptyv ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/Microck/ordinary-claude-skills.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r ordinary-claude-skills/skills_all/adaptyv ~/.claude/skills/
  5. Verify the reference/ docs (api_reference.md, experiments.md, examples.md, protein_optimization.md) came along.
  6. Email support@adaptyvbio.com to request API access and receive your token.
  7. Add export ADAPTYV_API_KEY="your_key" to your shell profile, or create a .env file in your project.
  8. Install Python deps: uv pip install requests python-dotenv
  9. Restart Claude Code and try: "submit this protein sequence for a binding assay".
View source on GitHubLicense: NOASSERTION