crypto-liquidations

crypto-liquidations is a skill for Claude Code from CoinLobster/agent-skills. It costs 153 tokens per session (1,997 once invoked), scanned A, original, MIT.

A guide to cryptocurrency liquidations, which happen when leveraged positions are forcibly closed or when lenders seize collateral after a borrower cannot meet the terms. It keeps exchange futures liquidations separate from DeFi lending liquidations.

In plain words
What is it for?
Use it to report market-wide or coin-specific liquidation amounts, long-versus-short breakdowns, hourly liquidation patterns and lending liquidations on Aave V3 or Morpho Blue.
Why use it?
It prevents different kinds of forced selling and collateral seizures from being combined into a misleading total.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the coinlobster plugin — 6 skills, 1 MCP server shipped together

Good fit Use it to report market-wide or coin-specific liquidation amounts, long-versus-short breakdowns, hourly liquidation patterns and lending liquidations on Aave V3 or Morpho Blue.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/coinlobster/agent-skills/crypto-liquidations
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add CoinLobster/agent-skills --skill crypto-liquidations
Clone the repo
git clone --depth 1 https://github.com/CoinLobster/agent-skills

Made for: Claude Code.

Or install coinlobster, the plugin that ships this one along with the rest of its 6 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for crypto-liquidations

README.md
[![agentmods](https://agentmods.dev/badge/skills/coinlobster/agent-skills/crypto-liquidations/github.svg)](https://agentmods.dev/skills/coinlobster/agent-skills/crypto-liquidations)
Your own site
<a href="https://agentmods.dev/skills/coinlobster/agent-skills/crypto-liquidations"><img src="https://agentmods.dev/badge/skills/coinlobster/agent-skills/crypto-liquidations/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for crypto-liquidations

Your own site · 80×15
<a href="https://agentmods.dev/skills/coinlobster/agent-skills/crypto-liquidations"><img src="https://agentmods.dev/badge/skills/coinlobster/agent-skills/crypto-liquidations.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 153 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,997 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00153 $0.01997
Opus 5 $0.00077 $0.00999
Sonnet 5 $0.00031 $0.00399
Haiku 4.5 $0.00015 $0.00200

Measured 12d ago against content hash 6f35e36938a9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

crypto-liquidations scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

compatibility: Requires network access (keyless CoinLobster MCP at https://coinlobster.com/mcp, callable via any MCP client or plain curl)
skills/crypto-liquidations/SKILL.md · 74 lines

How it starts

The opening of the file, as written. The whole thing — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Crypto Liquidations

Two different events share this word. Keep them apart.

  • Perp liquidation: a venue force-closes a leveraged position. Side, size, price, venue. From the venues that publish them.
  • DeFi lending liquidation: a third party repays someone's debt and seizes their collateral on-chain (Aave V3 and Morpho Blue, Ethereum / Arbitrum / Base). Both wallets are named.

Never add them together. A combined total is a number with no meaning: one is leverage being flushed on an exchange, the other is collateral changing hands on a lending market. Report whichever the question is about, or both clearly labelled.

Data sources (in order)

  1. "How much got liquidated?" with no pair named is a MARKET question. Use coinlobster:market_liquidations (no args, keyless) or GET https://coinlobster.com/api/public/liquidations. One call covers the whole market instead of one pair: 24h dollars and counts split long vs short, an hourly series so a cascade is locatable, top coins, the biggest single event, and lending liquidations on their own lane. It is not every venue: only some publish a liquidation feed, so the perp totals are a floor. Do NOT assemble a market answer from per-pair calls.
  2. One pair named? coinlobster:liquidations (args: pair e.g. BTC/USD, limit; keyless on any pair) and coinlobster:market_snapshot (args: pair; keyless on BTC/USD only, check available) for funding + OI context. For the on-chain side use coinlobster:defi_liquidations (args: chain, limit; keyless).
  3. No MCP client: the hosted MCP answers plain JSON-RPC curl:
    curl -s -X POST https://coinlobster.com/mcp \
      -H 'Content-Type: application/json' -H 'Accept: application/json, text/event-stream' \
      -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"liquidations","arguments":{"pair":"BTC/USD","limit":50}}}'
    
    Swap name to market_snapshot for funding/OI (keyless that pair-gates to BTC/USD; check available in the response, and skip the context layer rather than guess when it is false).
  4. Market-wide over plain REST:
    curl -s https://coinlobster.com/api/public/liquidations
    
    perp_liquidations carries total_usd, long_usd/short_usd, long_count/short_count, long_share_pct, peak_hour, hourly[], top_coins[] and venues[]. named_liquidations[] lists Hyperliquid accounts that were force-closed, wallet included. lending_liquidations is the separate on-chain lane. stale: true means the snapshot is behind, so report that rather than the numbers.

Read the full file on GitHub · 74 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 74 lines · 153 tokens per session scan A 6f35e36938a9

Subscribe to this mod's changes

crypto-liquidations is a skill published in the GitHub repository CoinLobster/agent-skills (9 stars, last pushed 1mo ago), licensed MIT. It adds 153 tokens to every session and 1,997 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

crypto-token-analysis

Deep-dive framework for analyzing crypto tokens — market data, liquidity health, tokenomics, unlock schedules, and risk assessment. Combines on-chain data, API queries, and multi-source validation to generate actionable investment verdicts.

kevinnft/ai-agent-skills · 49 tokens

crypto-defi-trading

Crypto and DeFi trading: DEX analysis (Uniswap, SushiSwap, Curve), on-chain analytics, MEV detection, impermanent loss, yield farming metrics, DeFi risk analysis, token metrics, liquidity pool analysis, whale tracking, exchange netflow. USE FOR: crypto, defi, dex, uniswap, sushiswap, curve, impermanent loss, yield…

mahmoud20138/Tradecraft · 107 tokens

freqtrade-bot

Freqtrade — open-source Python crypto trading bot. Backtesting, hyperopt (ML parameter optimization), FreqAI (self-training adaptive strategies), Telegram + WebUI control. Supports Binance, Kraken, Bybit, OKX, Gate.io (spot + futures). SQLite trade h.

mahmoud20138/Tradecraft · 61 tokens

trading-signals

Fetches live AI crypto trading signals with entry price, stop-loss, take-profit, leverage, confidence scores, and automated verification. Covers 50+ coins including BTC, ETH, SOL. Use when the user asks for crypto signals, trade ideas, market direction, portfolio analysis, or wants to build a trading bot.

roman-rr/trading-skills · 69 tokens

defi-yield

DeFi yield analysis and optimization — lending rates, LP yields, staking returns, yield farming strategies, risk-adjusted yield comparison, and protocol-level sustainability assessment.

HKUDS/Vibe-Trading · 37 tokens

crypto-derivatives

Crypto-derivatives strategies — perpetual funding-rate arbitrage, futures term-structure contango/backwardation trading, and option volatility-smile / Greeks analysis.

HKUDS/Vibe-Trading · 37 tokens