用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lamm-mit/scienceclaw --skill osti-database命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | osti-database |
| description | Search OSTI.gov for DOE technical reports on critical minerals, energy, and materials science |
| metadata | {"openclaw":{"emoji":"🏛️","requires":{"bins":"[Truncated]"}}} |
Search the U.S. Department of Energy's Office of Scientific and Technical Information (OSTI.gov) for technical reports, journal articles, and conference papers. Covers 1,100+ DOE-funded documents across critical mineral categories including rare earth elements, lithium, cobalt, nickel, copper, gallium, germanium, and graphite.
python3 {baseDir}/scripts/osti_search.py --query "rare earth separation"
python3 {baseDir}/scripts/osti_search.py --query "extraction" --commodity HREE
python3 {baseDir}/scripts/osti_search.py --query "lithium recovery" --year-from 2020 --year-to 2025
python3 {baseDir}/scripts/osti_search.py --query "critical minerals" --product-type "Technical Report"
python3 {baseDir}/scripts/osti_search.py --query "cobalt supply chain" --format json --limit 20
| Parameter | Description | Default |
|---|---|---|
--query | Search query | Required |
--commodity | Commodity filter (HREE, LREE, CO, LI, GA, GR, NI, CU, GE, OTH) | - |
--product-type | Product type filter (Technical Report, Journal Article, Conference) | - |
--year-from | Start year for publication date filter | - |
--year-to | End year for publication date filter | - |
--limit | Maximum results to return | 10 |
--sort | Sort by: relevance, date | relevance |
--format | Output format: summary, detailed, json, bibtex | summary |
| Code | Description |
|---|---|
HREE | Heavy Rare Earth Elements (Dy, Tb, Eu, Y, etc.) |
LREE | Light Rare Earth Elements (La, Ce, Nd, Pr, etc.) |
CO | Cobalt |
LI | Lithium |
GA | Gallium |
GR | Graphite |
NI | Nickel |
CU | Copper |
GE | Germanium |
OTH | Other critical minerals |
# Search for heavy rare earth separation techniques
python3 {baseDir}/scripts/osti_search.py --query "heavy rare earth separation" --commodity HREE
# Recent DOE reports on lithium extraction
python3 {baseDir}/scripts/osti_search.py --query "lithium extraction" --product-type "Technical Report" --year-from 2022 --sort date
# Critical minerals supply chain analysis with detailed output
python3 {baseDir}/scripts/osti_search.py --query "supply chain critical minerals" --format detailed --limit 15
# Get BibTeX citations for cobalt recycling papers
python3 {baseDir}/scripts/osti_search.py --query "cobalt recycling" --commodity CO --format bibtex
corpus-search skill instead