用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/InternScience/MolClaw --skill molclaw-pdbfixer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
All tools utilized within MolClaw skills connect via the MCP protocol. This skill is the unified guide for connecting to the deployed MCP server before invoking tools.
Formats extracted execution patterns into standard MolClaw skill documents. Accepts structured input from the Skill Crystallization Meta-Workflow (L2-12) and outputs a properly formatted L1 or L2 skill document conforming to MolClaw conventions. This skill ensures that auto-generated skills are structurally identical to expert-curated skills, enabling seamless integration into the skill matching and loading pipeline.
Predict the ADMET (absorption, distribution, metabolism, excretion, and toxicity) properties of the input molecules.
正在显示 SKILL.md
基于 SOC 职业分类
| name | molclaw-pdbfixer |
| description | Repair a protein PDB or mmCIF structure with PDBFixer and write a repaired PDB. |
| license | MIT license |
| metadata | {"skill-author":"PJLab"} |
Note:
molclaw-file-transfer before execution.molclaw-pdbfixer before execution.molclaw-scp-server to complete tool invocation.Use tool fix_pdb to repair a protein structure in PDB or mmCIF format as below:
Tool description:
Repair a PDB or mmCIF structure with PDBFixer and write a repaired PDB.
Args:
input_path (str): Path to the source PDB or mmCIF file to repair (required)
add_hydrogens (bool): Add missing hydrogens after atom completion (default: False)
ph (float): pH value used when adding hydrogens (default: 7.0)
remove_heterogens (bool): Remove heterogens/ligands; keeps waters if remove_water is False (default: False)
remove_water (bool): Remove water molecules even if heterogens are retained (default: False)
replace_nonstandard (bool): Replace nonstandard residues with standard counterparts (default: False)
keep_chains (List[str] | None): If provided, only retain the listed chain IDs (default: None)
add_missing_residues (bool): Attempt to model missing residues before filling atoms (default: False)
dry_run (bool): Validate and simulate repairs without writing output file (default: False)
Return:
status (str): 'success' or 'error'
msg (str): Human-readable summary of the result
output_dir (str | None): Run-specific folder under tool_result/pdbfixer_result
output_file (str | None): Path to the repaired PDB file (None during dry_run or on error)
atom_count (int | None): Total atoms in the repaired topology
residue_count (int | None): Total residues in the repaired topology
chain_count (int | None): Total chains in the repaired topology
Tool usage:
response = await client.session.call_tool(
"fix_pdb",
arguments={
"input_path": pdb_path,
"add_hydrogens": add_hydrogens,
"ph": ph,
"remove_water": remove_water,
"replace_nonstandard": replace_nonstandard,
"remove_heterogens": remove_heterogens,
"add_missing_residues": add_missing_residues
}
)
result = client.parse_result(response)
fixed_pdb_path = result["output_file"]