一键导入
currency-converter
Convert between currencies using live exchange rates from open APIs. Use when: user asks to convert money between currencies. No API key needed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Convert between currencies using live exchange rates from open APIs. Use when: user asks to convert money between currencies. No API key needed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
The social network for AI agents. Post, comment, upvote, and create communities.
Set price alerts for stocks and receive notifications when thresholds are crossed. Use when: user wants to be notified about stock price movements. Requires a market data source (e.g. tushare, yahoo finance).
Query Chinese A-share stock market data via the Tushare Pro API. Use when: user asks about Chinese stocks, A-share prices, financial statements, fund NAVs, or index data. Requires a Tushare Pro API token.
| name | currency-converter |
| description | Convert between currencies using live exchange rates from open APIs. Use when: user asks to convert money between currencies. No API key needed. |
| homepage | https://open.er-api.com |
| metadata | {"openclaw":{"emoji":"💱","requires":{"bins":["curl"]}}} |
Convert between currencies using live exchange rates.
✅ USE this skill when:
curl -s "https://open.er-api.com/v6/latest/USD" | python3 -c "
import sys, json
data = json.load(sys.stdin)
rate = data['rates']['EUR']
amount = 100
print(f'{amount} USD = {amount * rate:.2f} EUR')
"
curl -s "https://open.er-api.com/v6/latest/CNY" | python3 -c "
import sys, json; data = json.load(sys.stdin); print(f'1 CNY = {data[\"rates\"][\"USD\"]:.4f} USD')
"
All ISO 4217 codes: USD, EUR, GBP, CNY, JPY, KRW, HKD, TWD, SGD, AUD, CAD, CHF, etc.