← Back to list
💰

mev-analysis Checked

MEV exposure assessment, sandwich attack detection, and protection strategies for Solana DEX trading
💰 Finance & Trading skills By agiprolabs Version v1.0.0 Updated 2026-09-20
8.5Overall 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 "mev-analysis" skill by following the instructions at https://skill123.me/install/mev-analysis.
⌨️ Command line install

Run in your terminal — downloads and installs to ~/.claude/skills/.

curl -fsSL https://skill123.me/install/mev-analysis.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 · 25 KB

About this skill

Overview

MEV exposure assessment, sandwich attack detection, and protection strategies for Solana DEX trading

Source

  • Repo: https://github.com/agiprolabs/claude-trading-skills
  • Path: skills/mev-analysis

Score breakdown

Trigger
6.5
What (assessment, detection, protection) and domain (Solana DEX) are clear with good keyword coverage (MEV, sandwich attack, slippage, Jito); no Use-when, boundary, or trigger variants.
Structure
8.0
Two well-scoped references (mechanics, protection strategies) and two scripts; 320-line SKILL.md embeds full function bodies duplicating script content; Files section annotates contents.
Workflow
8.8
Strong execution design: risk estimator with explicit profitability model and risk tiers, protection ladder with concrete slippage/tip tables and trade-offs, numbered detection procedure with attacker-signer verification, and split-plan computation; demo modes provide offline verification; sandwich_detector doubles as a post-trade verification tool.
Content
9.0
Dense and concrete (tip guidelines in SOL, bps thresholds, indicator lists); consistent imperative style.
Engineering
10.0
Frontmatter valid; shebangs, dependencies, and env vars documented in script headers; all referenced paths exist.
Security
9.5
6.0 manifest — network destinations: mainnet.block-engine.jito.wtf, mainnet.helius-rpc.com, api.mainnet-beta.solana.com, api.dexscreener.com, api.coingecko.com — all official/declared market infrastructure matching the skill's declared purpose; API keys exclusively via env vars; base64 usage in references is transaction serialization for the Jito protocol, not obfuscation; no local data egress, no file writes, no persistence. Capabilities match declared scope.
Thorough Solana MEV skill: supply-chain mechanics (Jito block engine, leader schedule), attack taxonomy (sandwich, arb, liquidation, JIT), a quantitative sandwich-profitability risk model, layered protection strategies with trade-off tables, and a same-slot sandwich-detection procedure with indicator heuristics. Both scripts default to demo mode. All network destinations are official infrastructure. Deductions: description lacks When/When-Not; SKILL.md duplicates substantial code that also lives in scripts; hardcoded SOL=150 price assumption flagged as needing live fetch.