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

Molclaw Pack Sidechains

skill-internscience-molclaw-molclaw-pack-sidechains · by InternScience

Predicts full-atom sidechain conformations from backbone PDBs using AttnPacker for structure preparation workflows.

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

Install

$ agentstack add skill-internscience-molclaw-molclaw-pack-sidechains

✓ 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-pack-sidechains)

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

About

AttnPacker Sidechain Packing

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. Protein Sidechain Packing

The description of tool pack_sidechains.

Predict full-atom sidechain conformations from backbone PDBs for protein structure preparation workflows.
Args:
  input_pdb (str): Input PDB file path, required.
  device (str|None): Compute device such as cuda:0, default None (auto by source script).
  chunk_size (int): Inference chunk size for long proteins, default 500.
  no_post_process (bool): Skip rotamer post-processing for faster runtime, default False.
  max_optim_iters (int): Maximum optimization iterations in post-process, default 250.
  steric_wt (float): Steric clash penalty weight, default 1.0.
  optim_repeats (int): Post-process optimization repeats, default 2.
  dry_run (bool): Create a traceable run directory without running inference, default False.
Return:
  status (str): 'success', 'error', or 'partial_success'.
  msg (str): Human-readable execution message.
  input_pdb (str): Input PDB path used for this run.
  output_dir (str): Unique run directory under tool_result/pack_sidechains_result.
  output_pdb (str): Expected or generated output PDB path.
  device (str|None): Device value used for execution.
  chunk_size (int): Chunk size used.
  no_post_process (bool): Whether post-process was skipped.
  max_optim_iters (int): Max optimization iterations used.
  steric_wt (float): Steric weight used.
  optim_repeats (int): Optimization repeats used.
  dry_run (bool): Whether dry-run mode was used.
  error_type (str, optional): Exception type when status is 'error'.
  traceback (str, optional): Python traceback when status is 'error'.

How to use tool pack_sidechains :

response = await client.session.call_tool(
    "pack_sidechains",
    arguments={
        "input_pdb": "/path/to/input.pdb",
        "device": "cuda:0",
        "chunk_size": 500,
        "no_post_process": False,
        "max_optim_iters": 250,
        "steric_wt": 1.0,
        "optim_repeats": 2,
        "dry_run": False
    }
)
result = client.parse_result(response)
output_pdb = result["output_pdb"]
Example parameter sets
# 1) Main mode
{
    "input_pdb": "/path/to/input.pdb",
    "device": "cuda:0",
    "chunk_size": 500,
    "no_post_process": False,
    "max_optim_iters": 250,
    "steric_wt": 1.0,
    "optim_repeats": 2,
    "dry_run": False
}

# 2) Variant mode
{
    "input_pdb": "relative/path/to/test_backbone.pdb",
    "chunk_size": 500,
    "dry_run": 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.