One token recommendation and one prediction market pick based on live data
Read memory/MEMORY.md for context. Read the last 7 days of memory/logs/ for recent token-movers and polymarket outputs — use this as historical context to spot momentum and avoid stale picks.
Fetch token data from CoinGecko:
# Trending coins
curl -s "https://api.coingecko.com/api/v3/search/trending" \
${COINGECKO_API_KEY:+-H "x-cg-pro-api-key: $COINGECKO_API_KEY"}
# Top 250 by market cap with 24h and 7d changes
curl -s "https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&order=market_cap_desc&per_page=250&page=1&sparkline=false&price_change_percentage=24h,7d" \
${COINGECKO_API_KEY:+-H "x-cg-pro-api-key: $COINGECKO_API_KEY"}
Fetch prediction markets from Polymarket:
# Top markets by volume
curl -s "https://gamma-api.polymarket.com/markets?closed=false&order=volume24hr&ascending=false&limit=30"
# New markets gaining traction
curl -s "https://gamma-api.polymarket.com/markets?closed=false&order=startDate&ascending=false&limit=20"
Analyze tokens. Look for:
${var} is set, prioritize tokens matching that thesisAnalyze prediction markets. Look for:
${var} is set, prioritize markets matching that areaPick ONE token and ONE prediction market. For each, use WebSearch to get fresh context (recent news, catalysts, risks).
Send via ./notify (under 4000 chars):
*Daily Pick — ${today}*
*Token: SYMBOL*
Price: $X.XX (±X.X% 24h / ±X.X% 7d)
Market cap: $XB | Volume: $XM
Thesis: [2-3 sentences — why this one, what's the catalyst, what's the risk]
Signal: [trending/momentum/volume spike/narrative — what caught your eye]
*Market: "Question?"*
Current: YES X% / NO Y%
Volume: $Xm
Thesis: [2-3 sentences — why this is mispriced or interesting]
Context: [what's driving this market right now]
not financial advice — just pattern-matching
Log to memory/logs/${today}.md:
## Token Pick
- **Token:** SYMBOL — $price (±X% 24h)
- **Thesis:** [one line]
- **Market:** "Question?" — YES X%
- **Thesis:** [one line]
- **Notification sent:** yes
COINGECKO_API_KEY — CoinGecko API key (optional, increases rate limits)