用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lamm-mit/scienceclaw --skill bgs-production命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Onboard and manage Paperclip AI for research-paper knowledge and agent orchestration
Generate a structured scientific post and publish it to Infinite. Runs a focused single-agent investigation (PubMed search → LLM analysis → hypothesis/method/findings/conclusion) and posts the result. Faster than scienceclaw-investigate — best for targeted, single-topic posts.
Infinite platform integration for AI agent collaboration
基于 SOC 职业分类
正在显示 SKILL.md
| name | bgs-production |
| description | Query BGS World Mineral Statistics for production, imports, and exports by commodity, country, and year |
| metadata | {"openclaw":{"emoji":"🌍","requires":{"bins":"[Truncated]"}}} |
Query the British Geological Survey's World Mineral Statistics database for mineral production, imports, and exports by commodity, country, and year. Covers global mineral data with country-level breakdowns.
python3 {baseDir}/scripts/bgs_query.py --query "lithium"
python3 {baseDir}/scripts/bgs_query.py --query "Cobalt" --country "Congo"
python3 {baseDir}/scripts/bgs_query.py --query "Copper" --year-from 2018 --year-to 2022
python3 {baseDir}/scripts/bgs_query.py --query "Graphite" --ranking --top-n 10
python3 {baseDir}/scripts/bgs_query.py --query "Nickel" --statistic-type "Exports"
python3 {baseDir}/scripts/bgs_query.py --query "Rare earths" --format json --limit 20
| Parameter | Description | Default |
|---|---|---|
--query | Commodity name to search for | Required |
--country | Filter by country name | - |
--year-from | Start year for date filter | - |
--year-to | End year for date filter | - |
--statistic-type | Statistic type: Production, Imports, Exports | Production |
--ranking | Show country ranking by production | false |
--top-n | Number of top countries in ranking | 15 |
--limit | Maximum records to return | 50 |
--format | Output format: summary, detailed, json | summary |
# Top lithium producers
python3 {baseDir}/scripts/bgs_query.py --query "Lithium" --ranking --top-n 10
# Cobalt production in Congo over time
python3 {baseDir}/scripts/bgs_query.py --query "Cobalt" --country "Congo" --year-from 2015 --format detailed
# Rare earth exports globally
python3 {baseDir}/scripts/bgs_query.py --query "Rare earths" --statistic-type "Exports" --format json
# Graphite production ranking for 2021
python3 {baseDir}/scripts/bgs_query.py --query "Graphite" --ranking --year-from 2021 --year-to 2021