aeon-skill-pack-liquidpad
May 30, 2026 ยท View on GitHub
Aeon skill pack for monitoring LiquidPad โ an independent, MIT-licensed launchpad on Base built on Liquid Protocol's open-source primitives.
Quick view
| You'll get | When | From |
|---|---|---|
| ๐ฅ Burn alert | new $LPAD buyback & burn cycle | /api/burn (every 6h) |
| ๐ New token alert | every LiquidPad-deployed token, with on-chain provenance verified | /api/token-stats + /api/verify (every 30m) |
| ๐ Daily digest | tokens deployed, weekly momentum, top by 24h volume | /api/stats (daily 14:00 UTC) |
| ๐ฐ Fee tracker | estimated claimable trading fees on every launched token | /api/token-stats (daily 08:00 UTC) |
All four skills run on public, CORS-enabled, no-auth endpoints โ no API keys to provision, no rate-limit tokens to rotate.
Independent third-party project. Not affiliated with Liquid Protocol. Full attribution at liquidpad.site/built-on-liquid.
Listed in aeon framework's skill-packs.json and ECOSYSTEM.md.
Install
In your Aeon repo:
./install-skill-pack liquidpadbot/aeon-skill-pack-liquidpad
This downloads the pack, runs Aeon's security scanner against each SKILL.md, copies skills into your skills/ folder, and adds disabled entries to aeon.yml. Toggle them on from the Aeon dashboard.
Verify install
Right after install, confirm the pack registered correctly:
grep liquidpad aeon.yml # 4 entries, all enabled: false
ls skills/liquidpad-* # 4 directories
cat skills.lock # pack: LiquidPad provenance row
Run any single skill manually with ./aeon once before scheduling โ easiest sanity check that /api/burn and friends are reachable from your Actions sandbox.
Skills
| Slug | Schedule | Category | What it does |
|---|---|---|---|
liquidpad-burn-monitor | every 6h | crypto | Alert on new $LPAD buyback & burn cycles. |
liquidpad-token-alert | every 30m | crypto | Notify on every new token launched through LiquidPad, with on-chain provenance verified. |
liquidpad-stats-digest | daily 14:00 UTC | crypto | Daily protocol digest โ tokens deployed, weekly momentum, top by volume. |
liquidpad-fee-tracker | daily 08:00 UTC | crypto | Estimated claimable fees on every LiquidPad-launched token. Surface top earners. |
All schedules are defaults โ configurable via aeon.yml after install.
Endpoints used
Every skill in this pack consumes LiquidPad's public, CORS-enabled, no-auth endpoints:
| Endpoint | Used by |
|---|---|
GET /api/burn | burn-monitor |
GET /api/stats | stats-digest |
GET /api/token-stats | token-alert ยท fee-tracker |
GET /api/verify/{address} | token-alert (provenance check) |
No API key. No rate-limit token. No upstream dependency on LiquidPad's infrastructure beyond the cached read endpoints. Same data the website renders, delivered to your notification channel on a schedule.
Why these skills
LiquidPad self-deploys to several surfaces (Telegram bot, CLI, MCP server, X bot). Aeon users โ many of whom run their own self-funding agents โ benefit from monitoring LiquidPad without keeping a browser tab open. Specifically:
- Burn monitor turns on-chain proof events into push notifications.
- Token alert combined with
/api/verifyis the anti-impersonation primitive โ confirm a token actually launched through LiquidPad before signal-boosting it. - Stats digest replaces the daily "wen LiquidPad update" check.
- Fee tracker answers "is anyone actually earning?" โ useful sanity check for a deflationary launchpad.
Compatible with
- Aeon (any version with
install-skill-pack+skills-pack.jsonmanifest support) - Aeon's notification backends: Telegram, Discord, Slack, Email
- Aeon's MCP server / A2A gateway โ these skills work the same when called from Claude Desktop, Claude Code, LangChain, AutoGen, CrewAI, OpenAI Agents SDK
Related
- LiquidPad MCP server โ
npx -y liquidpad-mcpfor direct tool access from Claude / Cursor / Kiro - LiquidPad CLI โ
npm i -g liquidpad-clifor command-line deploys - LiquidPad on Telegram โ concept curator + API key issuance
- LiquidPad on X โ pitch a vibe, ship a token
- Liquid Protocol SDK โ the underlying primitive
- Aeon framework โ the autonomous agent framework this pack runs on
License
MIT โ see LICENSE.
Trademarks for "Aeon", "Liquid Protocol", and "$LIQ" belong to their respective owners. This pack references those names solely for accurate attribution and ecosystem interoperability.