Route trades across multiple DEXs to find optimal prices with minimal slippage and gas costs. Use when comparing DEX prices, finding optimal swap routes, analyzing price impact, splitting large orders, or assessing MEV risk. Trigger with phrases like "find best swap", "compare DEX prices", "route trade", "optimal swap route", "split order", "DEX aggregator", "check slippage", or "MEV protection".
78
75%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
Optimize this skill with Tessl
npx tessl skill review --optimize ./plugins/crypto/dex-aggregator-router/skills/routing-dex-trades/SKILL.mdOverview | 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.0python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 5.0 --comparepython ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 10.0 --routespython ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 100.0 --splitpython ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 50.0 --mev-checkpython ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 25.0 --full --output jsonSee ${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 --compareFind optimal split for a large order:
python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 100.0 --splitCheck MEV risk before executing:
python ${CLAUDE_SKILL_DIR}/scripts/dex_router.py ETH USDC 50.0 --mev-checkSee ${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 config3a2d27d
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.