通过清算警报主动监控 Aave V3 借入头寸。跨链(以太坊、Polygon、Arbitrum 等)查询用户抵押品、债务和健康因素。当健康因素低于可配置阈值(严重为 1.05,警告)时,向 Telegram/Discord/Slack 发送紧急警报
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install aave-liquidation-monitor或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install aave-liquidation-monitor⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/aave-liquidation-monitor/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: aave-liquidation-monitor description: "Proactive monitoring of Aave V3 borrow positions with liquidation alerts. Queries user collateral, debt, and health factor across chains (Ethereum, Polygon, Arbitrum, etc.). Sends urgent alerts to Telegram/Discord/Slack when health factor drops below configurable thresholds (critical at 1.05, warning at 1.2). Use when you need continuous monitoring of Aave positions, want alerts before liquidation risk occurs, or need periodic summaries of your borrowing health." ---
Configure your wallet and thresholds once, then the skill runs automatically every 6 hours (configurable).
Run /aave-config init to set up:
Example:
/aave-config init
→ Wallet: 0x1234...5678
→ Thresholds: 1.05 (critical), 1.2 (warning)
→ Interval: 6 hours
→ Verbosity: quiet (alerts only)
→ Channel: telegram
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)
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
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.
- If HF < 1.05 → CRITICAL (red alert, send immediately) - If HF < 1.2 → WARNING (yellow alert, send immediately) - If HF > 1.5 → STABLE (no alert, unless verbose mode enables daily summary)
NO private keys are requested or stored — this is read-only monitoring only.
The skill uses OpenClaw's built-in message routing — it does NOT store Telegram, Discord, or Slack tokens.
Example:
/aave-config set channel telegram
→ OpenClaw sends alerts via your pre-configured Telegram channel
You must have a messaging channel already set up in OpenClaw. See OpenClaw docs for setting up Telegram/Discord/Slack integrations.
✅ Aave GraphQL API (public) — reads your position data ✅ OpenClaw message routing — sends formatted alerts to your configured channel ✅ Cron scheduler — runs background checks on your interval
❌ Does NOT:
Critical Alert (HF < 1.05):
🚨 AAVE LIQUIDATION RISK – CRITICAL
Health Factor: 1.02 (Liquidation threshold: 1.0)
⏰ Action required immediately!
📊 Position Summary:
Total Collateral: $50,000
Total Debt: $48,000
Debt Ratio: 96%
Borrowed (at risk):
- USDC: 40,000
- WETH: 8 ETH (~$31k)
Suggested Actions:
1. Repay debt (especially WETH)
2. Supply more collateral
3. Enable eMode if available (higher LTV on correlated assets)
Last checked: 2026-02-11 08:15 UTC
Warning Alert (HF < 1.2):
⚠️ AAVE WARNING
Health Factor: 1.15 (Approaching 1.2 threshold)
Position approaching liquidation. Consider:
- Repaying $2,000 USDC or
- Adding $5,000 collateral (WETH or stETH)
Stable Position (HF > 1.5, verbose mode only):
✅ AAVE POSITION HEALTHY
Health Factor: 2.31
Total Collateral: $50,342.12
Total Debt: $21,804.00
All clear. Check again tomorrow.
# One-time position check
/aave-monitor check
# Start automatic monitoring
/aave-monitor enable
# Change thresholds (e.g., earlier warning at HF 1.3)
/aave-config set thresholds 1.05 1.3
# Check monitoring status
/aave-monitor status
# View last 5 check results with alerts
/aave-monitor history 5
# Disable monitoring temporarily
/aave-monitor disable
Primary: Ethereum mainnet
Also works (with same config address where applicable):
Edit scripts/monitor.js to add chains or customize per-chain endpoints.
Change check interval:
/aave-config set interval 4 # Check every 4 hours
Change alert thresholds:
/aave-config set thresholds 1.1 1.25 # Critical at 1.1, warning at 1.25
Enable verbose mode (daily summaries even if stable):
/aave-config set verbosity verbose
Switch notification channel:
/aave-config set channel discord
See scripts/monitor.js for the core monitoring logic (GraphQL queries, health factor calculation, alert formatting).
See scripts/cron-runner.js for cron job integration with OpenClaw's cron scheduler.
"Invalid wallet address" → Check format: must be 0x... format. Try /aave-config view to see current config.
"Health factor not returned by API" → Wallet may not have Aave position. Try /aave-monitor check for immediate response.
"API endpoint unreachable" → Aave API may be down. Skill retries automatically. Check https://status.aave.com.
"No notifications sent" → Check that your notification channel is active. Run /aave-monitor check to test delivery.
---
Last Updated: 2026-02-11 | Status: Ready for configuration
安装 Aave 清算监控 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/aave-liquidation-monitor/ 目录(个人级,所有项目可用),或 .claude/skills/aave-liquidation-monitor/(项目级)。重启 AI 客户端后,用 /aave-liquidation-monitor 主动调用,或让 AI 根据上下文自动发现并使用。
Aave 清算监控 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Aave 清算监控 可免费安装使用。请查阅仓库了解许可证信息。
通过清算警报主动监控 Aave V3 借入头寸。跨链(以太坊、Polygon、Arbitrum 等)查询用户抵押品、债务和健康因素。当健康因素低于可配置阈值(严重为 1.05,警告)时,向 Telegram/Discord/Slack 发送紧急警报
Aave 清算监控 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。