بنقرة واحدة
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 |