debridge-cross-chain

debridge-cross-chain is a skill for Claude Code, Codex from tenzro/tenzro-network. It costs 42 tokens per session (991 once invoked), scanned A, original, Apache-2.0.

A toolkit for moving tokens between blockchain networks using deBridge, a service that connects cross-chain swaps through market makers.

In plain words
What is it for?
Getting quotes and creating orders to swap tokens across more than 20 supported chains, with the supplied configuration describing MEV protection.
Why use it?
It helps obtain swap details and create cross-chain orders without manually using separate network and bridge interfaces.

Skill for Claude CodeCodex

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

Good fit Getting quotes and creating orders to swap tokens across more than 20 supported chains, with the supplied configuration describing MEV protection.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tenzro/tenzro-network/debridge-cross-chain
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 tenzro/tenzro-network --skill debridge-cross-chain
Clone the repo
git clone --depth 1 https://github.com/tenzro/tenzro-network

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 debridge-cross-chain

README.md
[![agentmods](https://agentmods.dev/badge/skills/tenzro/tenzro-network/debridge-cross-chain/github.svg)](https://agentmods.dev/skills/tenzro/tenzro-network/debridge-cross-chain)
Your own site
<a href="https://agentmods.dev/skills/tenzro/tenzro-network/debridge-cross-chain"><img src="https://agentmods.dev/badge/skills/tenzro/tenzro-network/debridge-cross-chain/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 debridge-cross-chain

Your own site · 80×15
<a href="https://agentmods.dev/skills/tenzro/tenzro-network/debridge-cross-chain"><img src="https://agentmods.dev/badge/skills/tenzro/tenzro-network/debridge-cross-chain.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 991 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.00042 $0.00991
Opus 5 $0.00021 $0.00495
Sonnet 5 $0.00008 $0.00198
Haiku 4.5 $0.00004 $0.00099

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

Security

Grade A, and why

debridge-cross-chain 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 10d 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/debridge-cross-chain/SKILL.md · 115 lines

How it starts

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

deBridge Cross-Chain Skill

Intent-based cross-chain bridging via deBridge DLN (Decentralized Liquidity Network). Supports fast cross-chain swaps across 20+ chains with MEV protection.

MCP Endpoint

deBridge provides an official hosted MCP server:

Service URL Description
deBridge MCP https://agents.debridge.com/mcp Official deBridge MCP (Streamable HTTP, no auth)

Can also be installed locally via npm: npx @debridge-finance/debridge-mcp

Key Concepts

  • DLN — Decentralized Liquidity Network, intent-based protocol
  • Orders — Cross-chain swap intents created by users, filled by market makers
  • Takers — Professional market makers who fill orders for a fee
  • Chain IDs — deBridge uses standard EVM chain IDs (1=Ethereum, 56=BSC, 137=Polygon, 42161=Arbitrum, 8453=Base, 10=Optimism, 43114=Avalanche, 7565164=Solana)

Available Tools (via official MCP)

Quote & Order Creation

get_quote

Get a quote for a cross-chain swap.

Parameters:

  • srcChainId — Source chain ID
  • srcChainTokenIn — Input token address
  • srcChainTokenInAmount — Amount in smallest unit
  • dstChainId — Destination chain ID
  • dstChainTokenOut — Output token address
  • slippage (optional) — Slippage tolerance (bps)

Returns: Quote with estimated output, fees, execution time.

create_order

Create a DLN cross-chain swap order.

Parameters:

  • srcChainId — Source chain ID
  • srcChainTokenIn — Input token address
  • srcChainTokenInAmount — Amount
  • dstChainId — Destination chain ID
  • dstChainTokenOut — Output token address
  • dstChainTokenOutRecipient — Recipient address on destination
  • srcChainOrderAuthorityAddress — Order creator address

Returns: Transaction data to sign and submit.

Order Tracking

get_order_status

Track a DLN order by order ID.

Parameters:

  • orderId — Order ID (returned from create_order)

Returns: Order status (Created/Filled/Cancelled), fill transaction hash. Status tracking uses stats-api.dln.trade. Intermediate states ClaimedUnlock and SentUnlock map to Filled.

Read the full file on GitHub · 115 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. 10d ago First seen · 115 lines · 42 tokens per session scan A 6d1e3e626bad

Subscribe to this mod's changes

debridge-cross-chain is a skill published in the GitHub repository tenzro/tenzro-network (3 stars, last pushed 3d ago), licensed Apache-2.0. It adds 42 tokens to every session and 991 once invoked, about $0.0002 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

trails

Integrate Trails cross-chain infrastructure — Widget, Headless SDK, or Direct API.

NeverSight/learn-skills.dev · 19 tokens

lifi-plugin

LI.FI cross-chain bridge & swap aggregator - list chains/tokens, get quotes, plan multi-hop routes, execute bridges/swaps, track tx status across Ethereum, Arbitrum, Base, Optimism, BSC, and Polygon.

okx/plugin-store · 53 tokens

starchild-swap-and-bridge

Unified swap + bridge router combining WOOFi (best-price meta-aggregator on 14 EVM chains) and the LayerZero Value Transfer API (broad multi-chain bridging incl. Solana, Aptos, TON — discover supported chains/tokens dynamically). One workflow: classify the request, validate the wallet can actually execute, quote…

Starchild-ai-agent/official-skills · 100 tokens

blockchain-cross-chain

Cross-chain protocols, IBC, LayerZero, Wormhole, Axelar, CCIP, bridges, atomic composability, shared sequencer, cross-chain message passing. Covers trust models (light clients, external validators, ZK proofs), bridge security, token representation (canonical, wrapped, native), relayer economics, and cross-chain…

j4flmao/agent-skills · 108 tokens

huginn-onboard

Bridge to Starknet from any EVM chain and register with Huginn agent registry. Enables cross-chain agent onboarding with AVNU bridge integration.

keep-starknet-strange/starknet-agentic · 33 tokens

rh-bridge-pro

Advanced LayerZero bridge with liquidity seeding between Base and Robinhood Chain.

0xMatdis/Robinhood-Chain-Bankr-Tools · 19 tokens