suwappu

suwappu is a skill for Claude Code, Codex from 0xSoftBoi/suwappubot. It costs 55 tokens per session (3,413 once invoked), scanned A, original, Apache-2.0.

A REST API for agents that work with blockchain finance, including cross-chain swaps, prediction markets, perpetual-trading markets, and lending markets. REST means it can be used with ordinary HTTP requests such as curl or fetch.

In plain words
What is it for?
It helps agents compare and simulate cross-chain swaps, execute self-custodied or managed-wallet trades, inspect portfolios and prices, research Polymarket, Hyperliquid, and Morpho, and place supported orders.
Why use it?
It gives one documented interface for researching markets, getting swap quotes, simulating trades, and working with wallets across supported services.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps agents compare and simulate cross-chain swaps, execute self-custodied or managed-wallet trades, inspect portfolios and prices, research Polymarket, Hyperliquid, and Morpho, and place supported orders.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/0xsoftboi/suwappubot/suwappu
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 0xSoftBoi/suwappubot --skill suwappu
Clone the repo
git clone --depth 1 https://github.com/0xSoftBoi/suwappubot

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 suwappu

README.md
[![agentmods](https://agentmods.dev/badge/skills/0xsoftboi/suwappubot/suwappu/github.svg)](https://agentmods.dev/skills/0xsoftboi/suwappubot/suwappu)
Your own site
<a href="https://agentmods.dev/skills/0xsoftboi/suwappubot/suwappu"><img src="https://agentmods.dev/badge/skills/0xsoftboi/suwappubot/suwappu/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 suwappu

Your own site · 80×15
<a href="https://agentmods.dev/skills/0xsoftboi/suwappubot/suwappu"><img src="https://agentmods.dev/badge/skills/0xsoftboi/suwappubot/suwappu.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,413 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00055 $0.03413
Opus 5 $0.00028 $0.01707
Sonnet 5 $0.00011 $0.00683
Haiku 4.5 $0.00006 $0.00341

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

Security

Grade A, and why

suwappu 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 13d 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.

all over plain REST (curl/fetch), with optional TypeScript/Python SDKs and an MCP server for
skills/suwappu/SKILL.md · 264 lines

How it starts

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

Suwappu — Cross-Chain DEX API

Suwappu is a cross-chain DeFi API for AI agents: routed swaps, Hyperliquid market research, Polymarket prediction markets, and Morpho lending-market data — all over plain REST (curl/fetch), with optional TypeScript/Python SDKs and an MCP server for deeper tool integration.

This skill is API-first: every example is a curl call. Use it directly, or reach for the SDKs when you're already writing TS/Python and want typed methods instead of raw HTTP. Check the published registry version before relying on a source-only method; the repository can be ahead of npm/PyPI. REST + the live OpenAPI spec remain the compatibility baseline.

Non-custodial by design: Suwappu never holds signing authority over a self-custodied wallet end-to-end. Swap endpoints return an unsigned transaction; you sign and broadcast it with your own wallet. A separate managed wallet flow exists for agents that want the API to hold a Turnkey-secured key and execute server-side — see "Self-signed vs managed swaps" below.

1. Get an API key (self-register)

No signup UI needed — register directly:

curl -X POST https://api.suwappu.bot/v1/agent/register \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent"}'

Response (trimmed):

{
  "success": true,
  "agent": { "id": "...", "name": "my-agent", "api_key": "suwappu_sk_...", "created_at": "..." },
  "important": "SAVE YOUR API KEY! It cannot be retrieved later."
}

name must be 3-50 chars, alphanumeric plus _/-. Save api_key immediately — it is shown exactly once and cannot be recovered; if lost, register a new agent (or use POST /v1/agent/keys/rotate once authenticated).

Rate limit on registration itself: 5 requests per IP. If you're building on top of the TypeScript SDK, suwappu register --name my-agent --save does this and writes the key to ~/.config/suwappu/config.json for you.

2. Auth

Send the key on every authenticated request:

Authorization: Bearer suwappu_sk_...

Read the full file on GitHub · 264 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 13d ago First seen · 264 lines · 55 tokens per session scan A d184f87f5464

Subscribe to this mod's changes

suwappu is a skill published in the GitHub repository 0xSoftBoi/suwappubot (3 stars, last pushed yesterday), licensed Apache-2.0. It adds 55 tokens to every session and 3,413 once invoked, about $0.0003 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.