agentsclimarketplace

Currency conversion

Skill hec-ovi/agentickit/examples/travel/.pilot/skills/currency-conversion

AI copilot for React apps. Reads your state, fills forms, confirms actions, calls your tools. Multi-agent, AI SDK 6 + AG-UI, markdown skills. MIT.

Install
npx -y skills add hec-ovi/agentickit --skill currency-conversion

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Convert an amount from one currency to another using a static rates table. Use for quick orientation only; not for live FX.

SKILL.md

1.3 KB, as published. Nobody here has run it

When to use

Call convert_currency when the user wants a quick currency conversion. Typical phrasings:

  • "how much is 200 EUR in USD"
  • "is 1500 JPY about 10 USD"
  • "convert my budget to euros"

The static rates are demo-grade. Do NOT use this for financial decisions or for "should I exchange now" advice — recommend the user check a real FX source for those.

How to use

  1. Identify the amount, source currency, target currency. ISO 4217 codes: USD, EUR, GBP, JPY, etc.
  2. Call convert_currency({ amount, from, to }). The tool returns { amount, from, to, rate, result }.
  3. Reply in one sentence with the rounded result and the rate.

Output narration

Examples:

  • "200 EUR is about 215 USD (rate ~1.075)."
  • "1500 JPY is about 10 USD (rate ~0.0067)."

Anti-patterns

  • Do NOT recommend exchanging or hedging based on the static rate.
  • Do NOT default to USD unless the user's preferences indicate it; check the registered preferences state first.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.