adaptyv by davila7/claude-code-templates
npx skills add https://github.com/davila7/claude-code-templates --skill adaptyvAdaptyv 是一个云实验室平台,提供自动化的蛋白质测试与验证服务。通过 API 或网页界面提交蛋白质序列,大约 21 天后即可收到实验结果。
Adaptyv 要求 API 身份验证。请按以下步骤设置您的凭证:
export ADAPTYV_API_KEY="your_api_key_here"
或者创建一个 .env 文件:
ADAPTYV_API_KEY=your_api_key_here
使用 uv 安装所需的包:
uv pip install requests python-dotenv
提交蛋白质序列进行测试:
import os
import requests
from dotenv import load_dotenv
load_dotenv()
api_key = os.getenv("ADAPTYV_API_KEY")
base_url = "https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws"
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
# 提交实验
response = requests.post(
f"{base_url}/experiments",
headers=headers,
json={
"sequences": ">protein1\nMKVLWALLGLLGAA...",
"experiment_type": "binding",
"webhook_url": "https://your-webhook.com/callback"
}
)
experiment_id = response.json()["experiment_id"]
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
Adaptyv 支持多种检测类型:
有关每种实验类型和工作流程的详细信息,请参阅 reference/experiments.md。
在提交序列之前,请对其进行优化以获得更好的表达和稳定性:
需要解决的常见问题:
推荐工具:
有关详细的优化工作流程和工具使用说明,请参阅 reference/protein_optimization.md。
有关完整的 API 文档,包括所有端点、请求/响应格式和身份验证详细信息,请参阅 reference/api_reference.md。
有关涵盖常见用例(实验提交、状态跟踪、结果检索、批处理)的具体代码示例,请参阅 reference/examples.md。
每周安装量
143
代码仓库
GitHub 星标
23.4K
首次出现
2026 年 1 月 21 日
安全审计
安装于
claude-code121
opencode116
cursor114
gemini-cli112
antigravity105
codex101
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or web interface and receive experimental results in approximately 21 days.
Adaptyv requires API authentication. Set up your credentials:
export ADAPTYV_API_KEY="your_api_key_here"
Or create a .env file:
ADAPTYV_API_KEY=your_api_key_here
Install the required package using uv:
uv pip install requests python-dotenv
Submit protein sequences for testing:
import os
import requests
from dotenv import load_dotenv
load_dotenv()
api_key = os.getenv("ADAPTYV_API_KEY")
base_url = "https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws"
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
# Submit experiment
response = requests.post(
f"{base_url}/experiments",
headers=headers,
json={
"sequences": ">protein1\nMKVLWALLGLLGAA...",
"experiment_type": "binding",
"webhook_url": "https://your-webhook.com/callback"
}
)
experiment_id = response.json()["experiment_id"]
Adaptyv supports multiple assay types:
See reference/experiments.md for detailed information on each experiment type and workflows.
Before submitting sequences, optimize them for better expression and stability:
Common issues to address:
Recommended tools:
See reference/protein_optimization.md for detailed optimization workflows and tool usage.
For complete API documentation including all endpoints, request/response formats, and authentication details, see reference/api_reference.md.
For concrete code examples covering common use cases (experiment submission, status tracking, result retrieval, batch processing), see reference/examples.md.
Weekly Installs
143
Repository
GitHub Stars
23.4K
First Seen
Jan 21, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
claude-code121
opencode116
cursor114
gemini-cli112
antigravity105
codex101
GitHub Actions 官方文档查询助手 - 精准解答 CI/CD 工作流问题
33,800 周安装