用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lamm-mit/scienceclaw --skill comtrade-trade命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | comtrade-trade |
| description | Query UN Comtrade bilateral trade flows (USD, kg) for critical minerals by HS code, country, and year |
| metadata | {"openclaw":{"emoji":"🚢","requires":{"bins":"[Truncated]","env":"[Truncated]"}}} |
Query UN Comtrade for bilateral trade flows of critical minerals. Returns trade values (USD), net weight (kg), and flow direction (imports/exports) by HS commodity code, reporter country, partner country, and year.
python3 {baseDir}/scripts/comtrade_query.py --mineral lithium
python3 {baseDir}/scripts/comtrade_query.py --hs-code 282520 --reporter 842
python3 {baseDir}/scripts/comtrade_query.py --mineral cobalt --reporter 842 --flow X --year 2022
python3 {baseDir}/scripts/comtrade_query.py --mineral rare_earth --format json --year 2023
| Parameter | Description | Default |
|---|---|---|
--mineral | Critical mineral name (lithium, cobalt, rare_earth, graphite, nickel, manganese, gallium, germanium, copper, hree, lree) | - |
--hs-code | HS commodity code (alternative to --mineral) | - |
--reporter | Reporter country code (e.g., 842 for USA, 156 for China) | 0 (all) |
--partner | Partner country code | 0 (world) |
--flow | Trade flow: M (imports), X (exports), M,X (both) | M,X |
--year | Year(s), comma-separated | 2023 |
--limit | Maximum records to return | 500 |
--format | Output format: summary, detailed, json | summary |
| Name | HS Codes | Description |
|---|---|---|
lithium | 253090, 282520, 283691, 850650 | Ores, oxide/hydroxide, carbonate, batteries |
cobalt | 2605, 282200, 810520, 810590 | Ores, oxides, unwrought, articles |
rare_earth | 2846, 280530 | REE compounds, REE metals |
hree | 284690 | Heavy REE compounds |
lree | 284610 | Light REE compounds |
graphite | 250410, 250490, 380110 | Natural (amorphous, crystalline), artificial |
nickel | 2604, 7501, 750210, 750220, 281122 | Ores, matte, unwrought, alloys, oxides |
manganese | 2602, 811100 | Ores, unwrought |
gallium | 811292 | Unwrought |
germanium | 811299 | Other base metals |
copper | 7402, 7403 | Refined, unrefined |
# US lithium imports
python3 {baseDir}/scripts/comtrade_query.py --mineral lithium --reporter 842 --flow M --year 2023
# Global cobalt trade flows
python3 {baseDir}/scripts/comtrade_query.py --mineral cobalt --format detailed
# China rare earth exports
python3 {baseDir}/scripts/comtrade_query.py --mineral rare_earth --reporter 156 --flow X --year 2022
# Nickel trade by specific HS code
python3 {baseDir}/scripts/comtrade_query.py --hs-code 2604 --format json
UNCOMTRADE_API_KEY environment variable