revolut-currency-converter

📁 gaborvecsei/revolut-currency-converter 📅 7 days ago
3
总安装量
3
周安装量
#61256
全站排名
安装命令
npx skills add https://github.com/gaborvecsei/revolut-currency-converter --skill revolut-currency-converter

Agent 安装分布

opencode 3
gemini-cli 3
github-copilot 3
codex 3
kimi-cli 3
amp 3

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 best path and best_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