AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Molclaw Evobind Tool

skill-internscience-molclaw-molclaw-evobind-tool · by InternScience

Design linear or cyclic peptide binders from receptor FASTA sequences using EvoBind2 with structured result outputs.

No reviews yet
0 installs
26 views
0.0% view→install

Install

$ agentstack add skill-internscience-molclaw-molclaw-evobind-tool

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-internscience-molclaw-molclaw-evobind-tool)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Molclaw Evobind Tool? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

EvoBind2 Peptide Binder Design

Note:

  • Local files are not directly accessible by the server. Please upload them to the server using molclaw-file-transfer before execution.
  • For PDB file inputs, it is recommended to preprocess them using molclaw-pdbfixer before execution.
  • Please refer to skill molclaw-scp-server to complete tool invocation.

Usage

1. EvoBind2 Binder Design

The description of tool evobind_tool.

Design linear or cyclic peptide binders from a receptor sequence using EvoBind2 in structure-guided screening workflows.
Args:
  fasta (str): Receptor FASTA file path.
  peptide_length (int): Binder peptide length, default 10.
  num_designs (int): Number of independent design rounds, default 10.
  num_iterations (int): Monte Carlo iterations per round, default 100.
  max_recycles (int): AlphaFold2 recycle count, default 1.
  model_name (str): AlphaFold2 model in {model_1, model_2, model_3, model_4, model_5}, default model_1.
  target_residues (str): Receptor target residues as comma-separated 1-indexed positions or all, default all.
  cyclic (bool): Whether to enable cyclic peptide design, default False.
  msa_file (str|None): Optional precomputed MSA .a3m file path, default None.
  dry_run (bool): Whether to print planned commands without executing design rounds, default False.
  skip_env_check (bool): Whether to skip source workflow environment checks, default False.
Return:
  status (str): success, error, or partial_success execution status.
  msg (str): Human-readable execution summary.
  output_dir (str): Unique run directory under tool_result/evobind_tool_result.
  fasta (str): Resolved absolute FASTA input path.
  peptide_length (int): Effective peptide length used in this run.
  num_designs (int): Effective number of design rounds used in this run.
  num_iterations (int): Effective number of iterations used in this run.
  max_recycles (int): Effective recycle count used in this run.
  model_name (str): Effective model name used in this run.
  target_residues (str): Effective target residue specification used in this run.
  cyclic (bool): Effective cyclic flag used in this run.
  dry_run (bool): Effective dry-run flag used in this run.
  skip_env_check (bool): Effective environment-check skip flag used in this run.
  output_files (dict): Key output file paths including run logs and summary artifacts when available.
  metrics (dict): Parsed summary metrics such as candidate count and top-ranked scores when available.

How to use tool evobind_tool :

response = await client.session.call_tool(
    "evobind_tool",
    arguments={
        "fasta": "relative/path/to/receptor.fasta",
        "peptide_length": 10,
        "num_designs": 10,
        "num_iterations": 100,
        "max_recycles": 1,
        "model_name": "model_1",
        "target_residues": "all",
        "cyclic": False,
        "dry_run": False,
        "skip_env_check": False
    }
)
result = client.parse_result(response)
key_output = result["output_dir"]
Example parameter sets
# 1) Main mode
{
    "fasta": "relative/path/to/1ssc_receptor.fasta",
    "peptide_length": 10,
    "num_designs": 10,
    "num_iterations": 100,
    "max_recycles": 1,
    "model_name": "model_1",
    "target_residues": "all",
    "cyclic": False,
    "dry_run": False,
    "skip_env_check": False
}

# 2) Variant mode
{
    "fasta": "relative/path/to/target.fasta",
    "peptide_length": 12,
    "num_designs": 50,
    "num_iterations": 500,
    "max_recycles": 3,
    "model_name": "model_2",
    "target_residues": "10,15,20,25",
    "cyclic": True,
    "msa_file": "relative/path/to/receptor.a3m",
    "dry_run": True,
    "skip_env_check": True
}

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.