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

Molclaw Chai1 Predict

skill-internscience-molclaw-molclaw-chai1-predict · by InternScience

Predict protein structures with Chai-1 from sequence or FASTA input and return model scoring summaries.

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

Install

$ agentstack add skill-internscience-molclaw-molclaw-chai1-predict

✓ 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-chai1-predict)

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 Chai1 Predict? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Chai-1 Protein Structure Prediction

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. Chai-1 Prediction (Sequence/FASTA)

The description of tool chai1_predict.

Predict protein structures with Chai-1 from sequence or FASTA input, run inference (unless dry-run), and return per-model scoring summaries for downstream selection.
Args:
    mode (str): One of 'sequence', 'fasta', or 'info'; API also accepts 'predict' as an alias of 'sequence'.
    seq (str|None): Comma-separated protein sequence(s) for sequence mode, e.g., "MKFL...,AIQR...".
    name (str|None): Comma-separated chain names corresponding to `seq`; defaults to chain_1, chain_2, ... if omitted.
    fasta_path (str|None): Path to an input FASTA file for fasta mode.
    samples (int): Number of models/samples to generate, must be >= 1. Default: 5.
    dry_run (bool): If True, only prepare inputs and write `input.fasta` without running Chai-1 inference.
Return:
    status (str): 'success' or 'error'.
    msg (str): Human-readable summary or error message.
    output_dir (str|None): Run artifact directory path.
    model_scores (List[dict]|None): Per-model summaries with keys 'model_idx', 'cif_path', 'scores', and 'score_path'.
    best_model (dict|None): Top model summary with keys 'model_idx', 'aggregate_score', and 'cif_path'.

How to use tool chai1_predict :

response = await client.session.call_tool(
    "chai1_predict",
    arguments={
        "mode": "sequence",
        "seq": "MKFLILLFNILCLFPVLAADNHGVS",
        "name": "my_protein",
        "samples": 5,
        "dry_run": True
    }
)
result = client.parse_result(response)
best_model = result["best_model"]
Example parameter sets
# 1) Sequence mode (README/tool_factory validated; main mode)
{
    "mode": "predict",  # alias of sequence
    "seq": "MKFLILLFNILCLFPVLAADNHGVS",
    "name": "my_protein",
    "dry_run": True
}

# 2) FASTA mode (wrapper/API supported variant mode)
{
    "mode": "fasta",
    "fasta_path": "/abs/path/input.fasta",
    "samples": 5,
    "dry_run": True
}

# 3) Info mode (source code run_chai1 behavior)
{
    "mode": "info"
}

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.