← Back to list
dex-execution Checked
Solana DEX swap execution via Jupiter aggregator including quoting, transaction building, signing…
9.3Overall rating
Installation
🤖 Install via AI
Copy the prompt below and send it to your AI assistant (e.g. Claude Code) — it will follow the instructions and install automatically.
Install the "dex-execution" skill by following the instructions at https://skill123.me/install/dex-execution.
⌨️ Command line install
Run in your terminal — downloads and installs to ~/.claude/skills/.
curl -fsSL https://skill123.me/install/dex-execution.sh | bash
📦 Download ZIP
Download the zip and extract it into your skills directory (e.g. ~/.claude/skills/), then restart your session.
⬇ Download v1.0.0 · 22 KBAbout this skill
Overview
Solana DEX swap execution via Jupiter aggregator including quoting, transaction building, signing, and confirmation
Source
- Repo: https://github.com/agiprolabs/claude-trading-skills
- Path: skills/dex-execution
Score breakdown
Trigger
7.0
Description states What (Jupiter swap execution: quoting, building, signing, confirmation) clearly; no when/when-not in description; body carries a six-skill integration table for routing.
Structure
9.3
253-line SKILL.md, three references (jupiter api, transaction lifecycle, safety checklist), two scripts; Files section maps roles; no redundant files.
Workflow
10.0
Full marks: ordered execution pipeline, mandatory display+confirmation gates, simulation-by-default, price-impact block tiers, slippage caps, balance verification, blockhash-expiry retry strategy, and post-trade balance verification as a closed verification loop; freedom correctly constrained at every high-risk step.
Content
10.0
Imperative with copy-runnable code at every step, parameter tables with recommended ranges, error/recovery table; zero filler.
Engineering
10.0
Valid frontmatter; scripts have shebangs, dependency/env docs, demo modes, graceful optional-key degradation; all referenced paths exist.
Security
10.0
6.0 manifest: data reads WALLET_PRIVATE_KEY/HELIUS_API_KEY/SOLANA_RPC_URL env vars (all declared); side effects limited to the declared swap submission the user confirms; network only to official Jupiter/Solana/Helius endpoints; persistence none; keys never logged. Capabilities match declared scope. No injection, no obfuscation, no destructive commands.
Best-in-class trade-execution skill: a 7-step Jupiter swap pipeline with hard confirmation gates ('NEVER proceed without explicit yes', steps 2-3 'never skip'), 8 non-negotiable safety requirements (default simulation, never store/log private keys, never 100% slippage, price-impact block thresholds, SOL reserve), and a dedicated safety-checklist reference with block/warn/override tiers. simulate_swap.py explicitly never signs or submits and requires no keys; get_quote.py degrades gracefully without HELIUS_API_KEY. 6.0 manifest: network destinations quote-api.jup.ag / price.jup.ag (official Jupiter), api.mainnet-beta.solana.com (official Solana RPC), mainnet.helius-rpc.com (optional, official) - all declared; WALLET_PRIVATE_KEY read from env only at signing time in the documented flow, never stored/logged; no persistence. Capabilities match declared scope; risk gating for funds-spending execution is exemplary.
