Agent skill

slippage

Slippage estimation, optimization, and protection for trade execution

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill slippage --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/analysis/slippage/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Slippage - Complete API Reference Estimate, minimize, and protect against slippage across all trading platforms. --- ## Chat Commands ### Estimate Slippage ``` /slippage estimate "Trump" YES 5000 Estimate for $5000 order /slippage BTCUSDT 1.5 BTC Estimate for futures /slippage ETH 50 --dex uniswap Estimate DEX slippage ``` ### Analyze Orderbook ``` /slippage depth "Trump" Show orderbook depth /slippage impact 10000 Price impact for size /slippage levels "Trump" Show slippage at sizes ``` ### Optimize Execution ``` /slippage optimize "Trump" YES 10000 Find best execution /slippage split 50000 Optimal order splitting /slippage timing "Trump" Best times for low slippage ``` ### Protection Settings ``` /slippage max 1% Set max slippage tolerance /slippage protect on Enable slippage protection /slippage revert-threshold 2% Cancel if slippage exceeds ``` --- ## TypeScript API Reference ### Create Slippage Manager ```typescript import { createSlippageManager } from 'clodds/slippage'; const slippage = createSlippageManager({ // Default tolerance defaultMaxSlippage: 0.01, // 1% // Protection enableProtection: true, revertThreshold: 0.02, // Cancel if > 2% // Data sources orderbookDepth: 2

What's inside
Steps it walks through
  1. Chat Commands
  2. Estimate Slippage
  3. Analyze Orderbook
  4. Optimize Execution
  5. Protection Settings
  6. TypeScript API Reference
  7. Create Slippage Manager
  8. Analyze Orderbook Depth
  9. Price Impact Analysis
  10. Order Splitting
  11. TWAP Execution
  12. Best Timing Analysis
  13. Slippage Protection
  14. DEX Slippage (Crypto)
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the slippage skill do?

Slippage estimation, optimization, and protection for trade execution

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill slippage --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going