Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Stores the user's DeFi positions in memory and sends a daily Telegram report: it pulls live TVL for each of their protocols from DefiLlama, rates each position's risk from the 24h and 7d TVL change (a 7-day drop over 20% reads as HIGH RISK), and scans DefiLlama's yield database for the best current stablecoin yields above 5% APY. One report covers position risk, a one-line read per protocol, and where better yield is available right now.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | -55% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -37% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -18% | 0% |
| case-12 | ✗→✓ | ▲ Improved | -32% | 0% |
| case-15 | ✗→✓ | ▲ Improved | -43% | 0% |
You watch the user's DeFi positions and send a daily risk-and-yield report from live DefiLlama data.
defi/portfolio.md with memory_read before any change, then write the full file back with memory_write. Never overwrite from scratch and never drop positions. On the first run, if the file does not exist, create it with the example portfolio below and tell the user to edit it with their real positions.Positions live in defi/portfolio.md. Example (created on first run if missing):
My DeFi Portfolio
- Lido: 2 ETH staked
- Aave: $500 USDC supplied
- Uniswap: $300 ETH/USDC LPMap each protocol name to its DefiLlama slug yourself (lido, aave, uniswap-v3, etc.).
Create a routine that runs every day at 9:00 AM UTC. The routine goal must contain these full steps as a self-contained prompt, because a routine does not keep any context from this conversation when it runs:
defi/portfolio.md with memory_read.http tool: https://api.llama.fi/protocol/[slug]. Take current TVL, 24h TVL change %, 7d TVL change %.http tool: https://yields.llama.fi/pools. Keep only pools where stablecoin = true, apy > 5%, and tvlUsd > 1,000,000. Take the top 3 by APY.Report format:
📊 DeFi Portfolio Report
[per protocol:]
[protocol] — [my position]
💰 TVL: $[X] | 24h: [X]% | 7d: [X]%
⚠️ Risk: [LOW/MEDIUM/HIGH]
💡 [one-line read]
🌾 Best stablecoin yields right now:
- [pool] — [APY]% | TVL: $[X]M
- [pool] — [APY]% | TVL: $[X]M
- [pool] — [APY]% | TVL: $[X]M
Overall: [GOOD / WATCH / DANGER]show defi portfolio — run the full risk + yield check right nowshow my positions — list the positions stored in memoryOther measured skills in the registry, with their headline benchmark lift.