Gold Price Report
Use the bundled script to fetch three quote panels from a real-time precious-metals quote source.
What this skill returns
- - Related spot products: 现货黄金、现货白银、现货铂金、现货钯金、中国香港黄金、中国台湾黄金
- Physical gold brands: 老凤祥、周大福、周生生、老庙、周六福、六福珠宝、周大生、菜百
- Precious-metals futures: 沪金、沪银、comex黄金、comex白银、沪铜
Default workflow
- 1. Run
scripts/fetch_gold_panels.py --format md for a human-readable report. - If the user wants structured output, run with
--format json. - If the user wants only one or two panels, use
--sections with comma-separated values from:
-
related
-
physical
-
futures
- 4. Summarize in plain Chinese unless the user asks for raw data only.
Commands
Markdown report
CODEBLOCK0
JSON output
CODEBLOCK1
Only selected panels
CODEBLOCK2
Notes
- - The underlying quote API is machine-readable.
- Prices are fetched from a bundled real-time quote source (see script).
- For the
related and physical sections, display latest price. - For the
futures section, display latest price and change percent. - If a quote is missing, report it as
---- rather than inventing a value. - For scheduled reports, prefer the markdown format and a concise summary.
技能名称: gold-price-report
详细描述:
黄金价格报告
使用捆绑脚本从实时贵金属报价源获取三个报价面板。
该技能返回的内容
- - 相关现货产品: 现货黄金、现货白银、现货铂金、现货钯金、中国香港黄金、中国台湾黄金
- 实物黄金品牌: 老凤祥、周大福、周生生、老庙、周六福、六福珠宝、周大生、菜百
- 贵金属期货: 沪金、沪银、comex黄金、comex白银、沪铜
默认工作流程
- 1. 运行 scripts/fetchgoldpanels.py --format md 获取人类可读的报告。
- 如果用户需要结构化输出,使用 --format json 运行。
- 如果用户只需要一个或两个面板,使用 --sections 参数,后跟逗号分隔的值,可选值包括:
- related
- physical
- futures
- 4. 除非用户仅要求原始数据,否则用中文进行总结。
命令
Markdown报告
bash
python3 skills/gold-price-report/scripts/fetchgoldpanels.py --format md
JSON输出
bash
python3 skills/gold-price-report/scripts/fetchgoldpanels.py --format json
仅选择特定面板
bash
python3 skills/gold-price-report/scripts/fetchgoldpanels.py --sections related,physical --format md
备注
- - 底层报价API为机器可读格式。
- 价格从捆绑的实时报价源获取(详见脚本)。
- 对于 related 和 physical 部分,显示最新价格。
- 对于 futures 部分,显示最新价格和涨跌幅。
- 如果某个报价缺失,报告为 ----,而非编造数值。
- 对于定时报告,优先使用markdown格式并给出简洁摘要。