revolut-currency-converter
2
总安装量
2
周安装量
#64507
全站排名
安装命令
npx skills add https://github.com/gaborvecsei/revolut-currency-converter-skill --skill revolut-currency-converter
Agent 安装分布
amp
2
github-copilot
2
codex
2
kimi-cli
2
gemini-cli
2
cursor
2
Skill 文档
Revolut Currency Converter
Currency conversion CLI using Revolut’s real-time exchange rates.
How to Use
When user asks to convert currencies or get exchange rates, run the converter.py script and parse the JSON output.
Commands
convert – Direct conversion
python revolut-currency-converter/scripts/converter.py convert <amount> <from> <to>
- Returns:
{"success": true, "from": "EUR", "to": "HUF", "amount": 1000, "result": 377820, "rate": 377.82}
find-route – Find optimal route via bridge currencies
python revolut-currency-converter/scripts/converter.py find-route <amount> <from> <to> [-n HOPS] [-b BRIDGES...]
- Returns all routes with
bestpath andbest_amount
rate – Get current rate
python revolut-currency-converter/scripts/converter.py rate <from> <to>
- Returns:
{"success": true, "from": "EUR", "to": "USD", "rate": 1.08}
Examples
User says: “Convert 1000 EUR to HUF”
â Run: python converter.py convert 1000 EUR HUF
â Parse JSON result for the converted amount
User says: “What’s the best route to convert 50000 JPY to GBP?”
â Run: python converter.py find-route 50000 JPY GBP
â Parse JSON result for best and best_amount
User says: “What’s the EUR to USD rate?”
â Run: python converter.py rate EUR USD
Notes
- Amount must be integer >= 1
- Default bridges for find-route: EUR USD
- Output is always JSON