frankfurter: Skill for Claude Code

.agents/skills/querying-wise-api/SKILL.md

wise-api is a skill for Claude Code, Codex from lineofflight/frankfurter. It costs 43 tokens per session (1,119 once invoked), scanned A, original, MIT.

Instructions for querying Wise, a money-transfer service, for current or past mid-market currency exchange rates.

In plain words
What is it for?
It helps retrieve one currency pair, all target currencies for a source currency, a rate at a specific time, or a daily historical series.
Why use it?
It provides a consistent way to check rates and investigate differences between Wise and Frankfurter, another exchange-rate source.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is lineofflight/frankfurter's own configuration. It tells Claude Code and Codex how to work on frankfurter itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything frankfurter configures →

About the project

Frankfurter is an open-source API that provides daily currency exchange rates collected from institutional sources. Developers use it to retrieve currency data, convert amounts, or run their own instance with Docker. The catalogue entries are add-ons for working with the API.

lineofflight/frankfurter · 1,838 stars · on GitHub · frankfurter.dev

Reuse

Borrowing it

Nothing to install: this file belongs to lineofflight/frankfurter. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/lineofflight/frankfurter/main/.agents/skills/querying-wise-api/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/lineofflight/frankfurter

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for wise-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/lineofflight/frankfurter/querying-wise-api.svg)](https://agentmods.dev/skills/lineofflight/frankfurter/querying-wise-api)
Your own site
<a href="https://agentmods.dev/skills/lineofflight/frankfurter/querying-wise-api"><img src="https://agentmods.dev/badge/skills/lineofflight/frankfurter/querying-wise-api.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,119 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.01119
Opus 5 $0.00022 $0.00560
Sonnet 5 $0.00009 $0.00224
Haiku 4.5 $0.00004 $0.00112

Measured 6d ago against content hash 7e5ba01400c9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

wise-api scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -H "Authorization: Bearer $WISE_API_KEY" \
.agents/skills/querying-wise-api/SKILL.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Wise Exchange Rate API

Query real-time and historical mid-market rates from Wise for troubleshooting and data validation.

Endpoints

Base: https://api.wise.com/v1/rates

Current rates

# Single pair
curl -s -H "Authorization: Bearer $WISE_API_KEY" \
  'https://api.wise.com/v1/rates?source=EUR&target=USD' | jq

# All targets for a source (omit target entirely)
curl -s -H "Authorization: Bearer $WISE_API_KEY" \
  'https://api.wise.com/v1/rates?source=EUR' | jq

target only accepts a single currency. Comma-separated lists (target=USD,GBP,JPY) return 400 Bad Request. For multiple pairs from the same source, omit target to get all ~163 currencies in one call and filter the response locally. Loop per-pair only as a last resort.

Historical rate at a specific time

curl -s -H "Authorization: Bearer $WISE_API_KEY" \
  'https://api.wise.com/v1/rates?source=EUR&target=USD&time=2025-06-15T12:00:00' | jq

Historical rate series

curl -s -H "Authorization: Bearer $WISE_API_KEY" \
  'https://api.wise.com/v1/rates?source=EUR&target=USD&from=2025-06-01&to=2025-06-30&group=day' | jq

Parameters

Param Description Example
source Source currency (required) EUR
target Single target currency (omit for all) USD
time Single historical timestamp (ISO 8601) 2025-06-15T12:00:00
from Period start (date or timestamp) 2025-06-01
to Period end (date or timestamp, tz offset ok) 2025-06-30T23:59:59+0100
group Grouping interval for series day, hour, minute

Response

[
  {
    "rate": 1.08234,
    "source": "EUR",
    "target": "USD",
    "time": "2025-06-15T12:00:00+0000"
  }
]

Read the full file on GitHub · 113 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 113 lines · 43 tokens per session scan A 7e5ba01400c9

Subscribe to this mod's changes

wise-api is a skill published in the GitHub repository lineofflight/frankfurter (1,838 stars, last pushed 5d ago), licensed MIT. It adds 43 tokens to every session and 1,119 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

gmgn-contract-dd

Contract due-diligence score for one token address — contract safety, holder structure and price action combined into a single 0-100 composite, capped by GMGN's own rug label, where every deduction names the field it read and an absent field is never a passing check. Use when the user wants one verdict number rather…

GMGNAI/gmgn-skills · 367 tokens

gmgn-market

Get crypto and meme token price charts (K-line, candlestick, OHLCV), trending meme coin rankings by volume, newly launched tokens on launchpads (pump.fun, fourmeme, letsbonk, Raydium, etc.), the hot-search ranking (most-searched tokens), and search for a specific token or wallet by name, symbol, contract address…

GMGNAI/gmgn-skills · 153 tokens

gmgn-swap

BEFORE RUNNING ANY COMMAND: Run gmgn-cli config --check. If exit code is 0, proceed normally. If exit code is 1, (1) run gmgn-cli config and show the output to the user; (2) once the user sends the API Key, run gmgn-cli config --apply to complete configuration and verification, then show the output to the user. If…

GMGNAI/gmgn-skills · 404 tokens

gmgn-wallet-score

Score any wallet address across three angles — profitability (a real track-record score: is this trader actually good?), copy-tradeability (can YOU actually capture what it makes, plus a latency/slippage/gas backtest), and Dev reputation (if it's mostly a token launcher, how trustworthy are its launches) — plus…

GMGNAI/gmgn-skills · 0 tokens

gmgn-wallet-analysis

The trader's decision dossier on a wallet — four pass/fail gates (is the record real, is the edge still working THIS week, can you actually get filled, does it cut losses) plus what the wallet is holding and buying right now, its entry market-cap band, its copy window in seconds, and a concrete size cap. Answers the…

GMGNAI/gmgn-skills · 278 tokens

alpaca-trade-api-sdk

Integrate and build on the @alpacahq/alpaca-trade-api TypeScript SDK for the Alpaca Trading and Market Data APIs (the unified Alpaca client, ergonomic order builders, normalized market-data shapes, pagination, typed errors, resilience, and real-time streaming). Use when writing or reviewing code that imports…

alpacahq/alpaca-trade-api-js · 123 tokens