aave-liquidation-monitor

aave-liquidation-monitor is a skill for Claude Code, Codex from Lord1Egypt/awesome-skill-forge. It costs 100 tokens per session (2,003 once invoked), scanned A, a copy of aave-liquidation-position-monitor, MIT.

A monitor for Aave V3 lending positions. Aave is a service where users supply assets and borrow against them; the health factor shows how close a position is to liquidation, meaning collateral may be sold.

In plain words
What is it for?
Checking collateral, debt, and health factor across supported chains, with alerts sent through Telegram, Discord, or Slack.
Why use it?
It warns you when collateral safety drops, so you have time to review or adjust the position.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: positional $N argument; built for openclaw.

Good fit Checking collateral, debt, and health factor across supported chains, with alerts sent through Telegram, Discord, or Slack.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lord1egypt/awesome-skill-forge/aave-liquidation-monitor
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 Lord1Egypt/awesome-skill-forge --skill aave-liquidation-monitor
Clone the repo
git clone --depth 1 https://github.com/Lord1Egypt/awesome-skill-forge

Made for: Claude Code, Codex.

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 aave-liquidation-monitor

README.md
[![agentmods](https://agentmods.dev/badge/skills/lord1egypt/awesome-skill-forge/aave-liquidation-monitor/github.svg)](https://agentmods.dev/skills/lord1egypt/awesome-skill-forge/aave-liquidation-monitor)
Your own site
<a href="https://agentmods.dev/skills/lord1egypt/awesome-skill-forge/aave-liquidation-monitor"><img src="https://agentmods.dev/badge/skills/lord1egypt/awesome-skill-forge/aave-liquidation-monitor/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 aave-liquidation-monitor

Your own site · 80×15
<a href="https://agentmods.dev/skills/lord1egypt/awesome-skill-forge/aave-liquidation-monitor"><img src="https://agentmods.dev/badge/skills/lord1egypt/awesome-skill-forge/aave-liquidation-monitor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,003 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 97% copy Near-identical to another mod 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.00100 $0.02003
Opus 5 $0.00050 $0.01001
Sonnet 5 $0.00020 $0.00401
Haiku 4.5 $0.00010 $0.00200

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

Security

Grade A, and why

aave-liquidation-monitor scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

97% identical to aave-liquidation-position-monitor — 8 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

community/clawhub/a/aave-liquidation-monitor/SKILL.md · 258 lines

How it starts

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

Aave Liquidation Monitor

Quick Start

Configure your wallet and thresholds once, then the skill runs automatically every 6 hours (configurable).

Step 1: Initialize Your Config

Run /aave-config init to set up:

  • Your Ethereum wallet address (read-only; no private keys required)
  • Health factor thresholds (default: critical 1.05, warning 1.2, stable >1.5)
  • Check interval in hours (default: 6)
  • Notification verbosity (verbose = daily summaries even if stable; quiet = only alerts)
  • Preferred notification channel (Telegram default, or specify Discord/Slack)

Example:

/aave-config init
→ Wallet: 0x1234...5678
→ Thresholds: 1.05 (critical), 1.2 (warning)
→ Interval: 6 hours
→ Verbosity: quiet (alerts only)
→ Channel: telegram

Step 2: Test the Monitor

Run /aave-monitor check to fetch your position immediately and see the alert format:

/aave-monitor check
→ Fetching position for 0x1234...5678 on Ethereum...
→ Health Factor: 2.31 (Stable ✓)
→ Total Collateral: $50,342.12
→ Total Debt: $21,804.00
→ Borrowed Assets: USDC (15,000), WETH (0.5), USDT (6,804)
→ Supplied Assets: WETH (10), USDC (20,000), DAI (30,000)

Step 3: Enable Proactive Monitoring

Run /aave-monitor enable to start automatic checks every 6 hours. The skill registers a cron job that silently runs in the background and alerts you only when health factor drops below threshold.

For manual override:

/aave-monitor enable --interval 4   # Check every 4 hours
/aave-monitor disable               # Stop monitoring
/aave-monitor status                # See current config + last check result

Configuration Reference

See references/config-guide.md for detailed config options, chain support, and threshold guidance.

See references/aave-api.md for Aave V3 GraphQL schema and query patterns.

Security & Credentials: See SECURITY.md for how credentials are handled and threat model.

For auditors: See SECURITY.md for code review checklist and architecture details.

Read the full file on GitHub · 258 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 · 258 lines · 100 tokens per session scan A 13625bce6219

Subscribe to this mod's changes

aave-liquidation-monitor is a skill published in the GitHub repository Lord1Egypt/awesome-skill-forge (2 stars, last pushed 3mo ago), licensed MIT. It adds 100 tokens to every session and 2,003 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to aave-liquidation-position-monitor, differing in 8 lines, and is treated as a copy.