원클릭으로
paper2agent
Convert scientific papers into executable computational workflows and MCP tools
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Convert scientific papers into executable computational workflows and MCP tools
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Search and select enzyme sequence homologs from a database. Use when users provide a query sequence and want to discover sequence homologs of the query sequence in a database.
Scientific reasoning via Jnana CoScientist — hypothesis generation, evaluation, and parameter bounding
Molecular dynamics simulations using OpenMM with MDAgent-style automation and free energy calculations via MM-PBSA
Protein language model embeddings, diversity sampling, and mutation prediction using ESM or GenSLM
Protein structure prediction using Chai-1 or AlphaFold with confidence scoring, quality assessment, and critic evaluation
Analysis of molecular dynamics trajectories (RMSD, RMSF, contacts, hotspot analysis)
| name | paper2agent |
| description | Convert scientific papers into executable computational workflows and MCP tools |
| metadata | {"openclaw":{"requires":{"env":["OPENAI_API_KEY"],"bins":["python3"]},"primaryEnv":"OPENAI_API_KEY"}} |
Extract computational methods from scientific papers and generate executable MCP tool specifications with verifiable reward criteria.
Provide a paper (PDF, text file, or raw text). The skill extracts computational methods and generates executable workflow configurations or scripts.
# Generate tool configs from a paper
python skills/paper2agent/scripts/run_paper2agent.py paper.txt -o output/
# Generate runnable scripts with artifact tracking
python skills/paper2agent/scripts/run_paper2agent.py paper.txt \
--output-format script \
--artifact-root .artifact_store
# Extract a specific method only
python skills/paper2agent/scripts/run_paper2agent.py paper.txt \
--target-method stability_prediction
paper_source: Path to paper (PDF/text file) or raw text stringoutput_dir: Directory for output files (default: output/paper2agent)artifact_root: Root directory for artifact DAG storage (optional — enables provenance)target_method: Extract only a specific methodology (optional — extracts all if omitted)output_format: Output format — config (JSON specs, default) or script (runnable Python)| Domain | Example Methods |
|---|---|
| Molecular Dynamics | MD simulation protocols, trajectory analysis |
| Structural Biology | Structure prediction, binding analysis |
| Bioinformatics | Conservation analysis, sequence alignment |
| Stability | Mutation stability prediction, thermostability |