国内金价查询工具。用于查询黄金实时价格、银行金条价格、金店零售价、国际金价和黄金未来趋势分析。当用户询问金价、黄金价格、今日金价、金店价格、银行金条、国际金价、伦敦金、黄金走势或未来趋势时触发此技能。
Scanned 9/5/2026
Install to Claude Code
npx -y skills add dvcrn/openclaw-skills-marketplace --skill gold-price-checker --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Gold Price Checker?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/dvcrn-gold-price-checker)More formats (shields.io, HTML) on the badges page.
---
name: gold-price-checker
description: "国内金价查询工具。用于查询黄金实时价格、银行金条价格、金店零售价、国际金价和黄金未来趋势分析。当用户询问金价、黄金价格、今日金价、金店价格、银行金条、国际金价、伦敦金、黄金走势或未来趋势时触发此技能。"
---
# 金价查询工具
## 数据来源
使用 `extract_content_from_websites` 工具从 **金价网 (jinjia.com.cn)** 获取数据。
## 功能范围
1. **国内金价**:上海黄金交易所行情(AU9999、AU9995 等)
2. **国际金价**:伦敦金、伦敦银实时行情
3. **银行金条**:各大银行投资金条价格
4. **金店零售价**:周大福、周生生、老凤祥等品牌金店
5. **黄金回收价**:当日黄金回收参考价格
## 使用方式
### 查询实时金价
使用 `extract_content_from_websites` 提取 jinjia.com.cn 的黄金价格数据。
```python
# 提取黄金价格数据
extract_content_from_websites([{
"url": "https://www.jinjia.com.cn/",
"prompt": "提取所有黄金价格数据,包括国内金价、国际金价、金店价格、银行金条价格"
}])
```
### 数据解读
提取后,按以下格式整理输出:
```
📈 今日金价(人民币/克)
- AU9999: ¥1149.00 (+0.85%)
- 伦敦金: $5171.06 (+1.74%)
🏦 银行金条价格
- 农行传世之宝金条: ¥805.27/克
- 浦发银行投资金条: ¥xxx
🏪 金店零售价(饰品金)
- 周大福: ¥1590/克
- 周生生: ¥1595/克
- 老凤祥: ¥1570/克
```
### 未来趋势分析
金价趋势分析要点:
- 关注国际金价走势(伦敦金)
- 参考 AU9999 收盘价变化
- 结合美元指数、避险情绪等因素
- 参考专业机构分析(可搜索相关新闻)
趋势查询示例:
```python
# 搜索金价趋势分析
batch_web_search([{
"query": "黄金价格走势预测 2025 2026"
}])
```
## 注意事项
- 数据仅供参考,投资需谨慎
- 金店价格通常含工费,需以实际为准
- 银行金条价格可能有买卖价差
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.