Aggregates DEX quotes from 1inch, Paraswap, 0x to route optimal trades, analyze multi-hop paths, split orders, compare slippage/gas costs, and assess MEV risk via Python CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dex-aggregator-router:routing-dex-tradesThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
[Overview](#overview) | [Prerequisites](#prerequisites) | [Instructions](#instructions) | [Output](#output) | [Error Handling](#error-handling) | [Examples](#examples) | [Resources](#resources)
Overview | Prerequisites | Instructions | Output | Error Handling | Examples | Resources
Optimal trade routing across decentralized exchanges by aggregating quotes from 1inch, Paraswap, and 0x. Discovers multi-hop routes, calculates split orders for large trades, and assesses MEV risk to minimize slippage and gas costs.
httpx, pydantic, and rich packagescp ${CLAUDE_SKILL_DIR}/config/settings.yaml.example ${CLAUDE_SKILL_DIR}/config/settings.yamlpython ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 1.0
python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 5.0 --compare
python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 10.0 --routes
python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 100.0 --split
python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 50.0 --mev-check
python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 25.0 --full --output json
See ${CLAUDE_SKILL_DIR}/references/implementation.md for detailed output examples.
| Error | Cause | Solution |
|---|---|---|
| API Rate Limited | Too many requests | Wait 60s or add API key for higher limits |
| Quote Expired | Stale price data | Refresh before execution; quotes valid ~30s |
| No Route Found | Low liquidity token | Try larger DEXs or reduce trade size |
| Network Timeout | Aggregator down | Retry or check aggregator status page |
See ${CLAUDE_SKILL_DIR}/references/errors.md for comprehensive error handling.
Compare prices for a 5 ETH swap:
python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 5.0 --compare
Find optimal split for a large order:
python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 100.0 --split
Check MEV risk before executing:
python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 50.0 --mev-check
See ${CLAUDE_SKILL_DIR}/references/examples.md for multi-hop discovery and MEV-protected execution examples.
${CLAUDE_SKILL_DIR}/references/implementation.md - Trade size guide, split optimization, MEV scoring, API config9plugins reuse this skill
First indexed Jul 10, 2026
Showing the 6 earliest of 9 plugins
npx claudepluginhub luxdevnet/claude-plus-lux --plugin dex-aggregator-routerRoutes trades across multiple DEXs (1inch, Paraswap, 0x) to find optimal prices with minimal slippage and gas costs. Supports multi-hop routes, split orders, and MEV risk assessment.
Executes DEX trades on mainnet across EVM chains (via OpenOcean, 1inch, CoW Protocol) and Solana (via Jupiter). Builds unsigned transactions for external signing with mandatory risk checks on buy tokens.
Estimates execution costs, models slippage curves from AMM mechanics, and determines optimal trade sizes to keep costs within acceptable thresholds.