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 & APIAdvanced★ 324⑂ 47AI score 6/10Last updated: Jul 3, 2026
What it does
- Walks you through Adaptyv API authentication via the
ADAPTYV_API_KEYenv var or a.envfile. - 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
- "Submit these 20 binder candidates for a binding assay" → generates Python that POSTs FASTA to
/experiments. - "Check yesterday's experiment status and download finished results" → polling and retrieval script keyed on experiment_id.
- "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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal.
- Clone the repo:
git clone https://github.com/Microck/ordinary-claude-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r ordinary-claude-skills/skills_all/adaptyv ~/.claude/skills/ - Verify the
reference/docs (api_reference.md, experiments.md, examples.md, protein_optimization.md) came along. - Email support@adaptyvbio.com to request API access and receive your token.
- Add
export ADAPTYV_API_KEY="your_key"to your shell profile, or create a.envfile in your project. - Install Python deps:
uv pip install requests python-dotenv - Restart Claude Code and try: "submit this protein sequence for a binding assay".
View source on GitHub ↗License: NOASSERTION