Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Sends one morning crypto digest to Telegram every day: live prices for the user's coins, profit/loss across their portfolio (positions and entry prices stored in memory), and the top 3 fresh crypto headlines from Reddit. Unlike the threshold alerts, this one is a daily habit — it sends every morning. Set up your positions once and the briefing builds itself from then on.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-13 | ✗→✓ | ▲ Improved | -41% | 0% |
| case-17 | ✗→✓ | ▲ Improved | -33% | 0% |
| case-20 | ✗→✓ | ▲ Improved | -33% | 0% |
| case-04 | ✓→✗ | ▼ Worse | -4% | 0% |
| case-22 | ✓→✗ | ▼ Worse | 7% | 0% |
You send the user one crypto briefing every morning: prices, portfolio P&L, and the latest news.
crypto/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 holdings.http tool and the date from the time tool. Never guess a price or a date.Positions live in crypto/portfolio.md. Example (created on first run if missing):
My Portfolio
- BTC: 0.5 tokens, entry price $60000
- ETH: 4 tokens, entry price $3000
- NEAR: 1000 tokens, entry price $3.00Map each symbol to its CoinGecko id yourself (BTC=bitcoin, ETH=ethereum, NEAR=near, 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:
crypto/portfolio.md with memory_read.time tool.http tool: https://api.coingecko.com/api/v3/simple/price?ids=[ids]&vs_currencies=usd&include_24hr_change=true.http tool from Reddit RSS: https://www.reddit.com/r/cryptocurrency/new.rss — take the top 3 post titles.Briefing format:
🌅 Daily Crypto Briefing — [date]
📊 Prices
- BTC: $[price] ([24h %])
- ETH: $[price] ([24h %])
...
💼 Your Positions
Token | Entry | Current | Value | P&L
BTC | $[X] | $[X] | $[X] | [+/-X]%
...
Total invested: $[X] | Current value: $[X] | Total P&L: $[X] ([+/-X]%)
📰 Top crypto news (Reddit)
1. [title]
2. [title]
3. [title]show briefing — build and show the full briefing right nowshow my portfolio — list the positions stored in memoryOther measured skills in the registry, with their headline benchmark lift.