一键导入
general-chemical-literature
Retrieve extensive literature (PubMed) and patent associated with a specific chemical compound via PubChem.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Retrieve extensive literature (PubMed) and patent associated with a specific chemical compound via PubChem.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Quantify prediction uncertainty of MACE MLIPs using committee (ensemble) models; flag high-uncertainty structures for DFT verification.
Compute phonon-limited carrier mobility and mode-resolved electron-phonon coupling in 2D materials from first principles with Quantum ESPRESSO and EPW.
GPU-accelerated batched inference for MACE, MatGL (TensorNet/M3GNet/CHGNet), and FairChem MLIPs using NValchemi, enabling parallel static, relax, and MD workflows across multiple structures simultaneously.
Extract structured synthesis procedures from a folder of PDFs using the LeMat-Synth GeneralSynthesisOntology schema, producing one JSON file per paper with per-material synthesis records.
Predict LC-MS/MS (MS2, tandem mass spectra) from SMILES via ICEBERG, a two-stage deep neural network. Outputs predicted m/z vs intensity spectrum, fragment ion SMILES, and a spectrum plot.
Match an experimental spectrum (1H NMR, 13C NMR, IR) against predicted or database reference spectra for candidate ranking and structure confirmation. Supports local catalog lookup, public database fallback, and pluggable similarity metrics.
| name | general-chemical-literature |
| description | Retrieve extensive literature (PubMed) and patent associated with a specific chemical compound via PubChem. |
| category | ["general","chemistry","drug-discovery","materials"] |
To programmatically check if a specific chemical compound exists in recent literature or patent databases. This skill uses PubChem's PUG-REST XRefs endpoint to extract an exhaustive list of associated PubMed IDs and Patent numbers.
This is incredibly useful as an autonomous "novelty check" for generated molecules.
Provide the CID of the target molecule. By default, the script will output the absolute total number of hits but limits the JSON save array to 1000 to prevent memory flooding for ubiquitous molecules (like Aspirin, which has over 100,000 patents). Adjust --limit as needed.
# Env: base-agent
python .agents/skills/general-chemical-literature/scripts/get_xrefs.py \
--cid 2244 \
--limit 50 \
--outdir research/aspirin_literature \
--output xrefs_aspirin.json
We can pull cross-references for Aspirin (CID: 2244), saving the top 50 identifiers.
# Env: base-agent
python .agents/skills/general-chemical-literature/scripts/get_xrefs.py \
--cid 2244 \
--limit 50 \
--outdir .agents/skills/general-chemical-literature/examples/aspirin \
--output xrefs_aspirin.json
pubmed.ncbi.nlm.nih.gov/ and patents.google.com/patent/) for the top 5 results for immediate verification.Author: Bowen Deng Contact: GitHub @learningmatter-mit