chainflip-swap

chainflip-swap is a skill for Claude Code, Codex from CumpsD/broker-as-a-service. It costs 190 tokens per session (1,593 once invoked), scanned A, original, MIT.

A cryptocurrency-swap guide for Chainflip Broker, a service that exchanges native assets between supported blockchains without wrapped tokens or bridge contracts.

In plain words
What is it for?
It is for getting swap quotes, starting swaps, sending assets to the returned deposit address, and monitoring completion for supported assets and networks.
Why use it?
It uses deposit addresses, so the agent does not need to build or sign blockchain transactions or configure wallet approvals.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: mentions Claude Code; built for openclaw.

Good fit It is for getting swap quotes, starting swaps, sending assets to the returned deposit address, and monitoring completion for supported assets and networks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cumpsd/broker-as-a-service/chainflip-swap
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add CumpsD/broker-as-a-service --skill chainflip-swap
Clone the repo
git clone --depth 1 https://github.com/CumpsD/broker-as-a-service

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 chainflip-swap

README.md
[![agentmods](https://agentmods.dev/badge/skills/cumpsd/broker-as-a-service/chainflip-swap/github.svg)](https://agentmods.dev/skills/cumpsd/broker-as-a-service/chainflip-swap)
Your own site
<a href="https://agentmods.dev/skills/cumpsd/broker-as-a-service/chainflip-swap"><img src="https://agentmods.dev/badge/skills/cumpsd/broker-as-a-service/chainflip-swap/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for chainflip-swap

Your own site · 80×15
<a href="https://agentmods.dev/skills/cumpsd/broker-as-a-service/chainflip-swap"><img src="https://agentmods.dev/badge/skills/cumpsd/broker-as-a-service/chainflip-swap.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 190 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,593 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00190 $0.01593
Opus 5 $0.00095 $0.00796
Sonnet 5 $0.00038 $0.00319
Haiku 4.5 $0.00019 $0.00159

Measured 11d ago against content hash 96fccec2287e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

chainflip-swap scanned grade A with 0 findings 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 11d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/chainflip-swap/SKILL.md · 140 lines

How it starts

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

Chainflip BaaS, native cross-chain swap

Swap real Layer-1 assets across chains through a Chainflip broker. No wrapped tokens, no bridge contracts, no smart-contract approvals, no gas wiring on the agent side. The flow is: quote, start a swap to get a deposit address, send the source asset to that address, monitor to completion.

Why this is simpler than a bridge or DEX skill

Chainflip uses a deposit-address model. start_swap returns an address on the source chain. The user (or their wallet) sends the source asset there and the swap settles natively to the destination address. The agent never builds, approves, or signs an on-chain transaction. There is nothing to wire to a wallet or a signer.

MCP availability check

This skill drives the Chainflip BaaS MCP server.

  1. Call list_assets (no parameters).
  2. If it returns asset data, the MCP server is connected. Continue.
  3. If the tool is not found, connect the remote server, then restart the session:
    • Claude Code (CLI): claude mcp add --transport http chainflip-baas https://chainflip-broker.io/mcp
    • Config file (Claude Desktop, Cursor, OpenClaw mcporter, Hermes):
      {
        "mcpServers": {
          "chainflip-baas": {
            "type": "url",
            "url": "https://chainflip-broker.io/mcp"
          }
        }
      }
      

No API key is required to swap. Provide one only to earn broker commission (see below).

Tool names below assume the server is registered as chainflip-baas. In some clients the tools appear namespaced, for example mcp__chainflip-baas__start_swap.

Supported assets

Native L1 assets only: BTC, ETH, SOL, DOT, TRX (Tron), USDC, USDT, FLIP. USDC and USDT exist on multiple chains, so asset identifiers use the form <ticker>.<network>, for example btc.btc, eth.eth, sol.sol, dot.dot, usdc.eth, usdt.tron. Always call list_assets first to get the exact identifiers and which chains are enabled.

Swap workflow

Step 1, discover assets

Call list_assets. Record the exact source and destination identifiers and confirm both are enabled.

Read the full file on GitHub · 140 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. 11d ago First seen · 140 lines · 190 tokens per session scan A 96fccec2287e

Subscribe to this mod's changes

chainflip-swap is a skill published in the GitHub repository CumpsD/broker-as-a-service (10 stars, last pushed 1mo ago), licensed MIT. It adds 190 tokens to every session and 1,593 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

crypto-defi-trading

Crypto and DeFi trading: DEX analysis (Uniswap, SushiSwap, Curve), on-chain analytics, MEV detection, impermanent loss, yield farming metrics, DeFi risk analysis, token metrics, liquidity pool analysis, whale tracking, exchange netflow. USE FOR: crypto, defi, dex, uniswap, sushiswap, curve, impermanent loss, yield…

mahmoud20138/Tradecraft · 107 tokens

market-sentiment

Synthesize crypto market sentiment by combining the Fear & Greed index, trending coins, narrative momentum, whale activity, and on-chain signals into a single actionable market read. Use when the user wants to know if the market is bullish, bearish, or transitioning. Powered by the free-crypto-news API.

nirholas/cryptocurrency.cv · 66 tokens

BytesAgain Crypto Toolkit — 200+ Technical Indicators, Real-Time Market Data

Use when you need real-time crypto prices, technical indicators (RSI, MACD, Bollinger, 50+), market rankings, on-chain data, or trading signals. Zero API key required.

bytesagain/ai-skills · 57 tokens

bytesagain-wallet-tracker

Crypto wallet analytics reference — address formats, on-chain analytics, transaction tracing, hardware wallets, and approval revocation.

bytesagain/ai-skills · 28 tokens

smart-order-router

Intelligent order routing to get best execution across multiple exchanges.

kayzaa/k.i.t.-bot · 15 tokens

crypto-derivatives

Crypto-derivatives strategies — perpetual funding-rate arbitrage, futures term-structure contango/backwardation trading, and option volatility-smile / Greeks analysis.

HKUDS/Vibe-Trading · 37 tokens