بنقرة واحدة
trend-analysis
Identifies emerging trends across crypto, tech, and DeFi by analyzing multiple data signals
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Identifies emerging trends across crypto, tech, and DeFi by analyzing multiple data signals
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Scans arxiv for new papers in crypto, DeFi, MEV, ZK, and AI-agent domains
Generates a structured changelog from git history, PRs, and release notes
Monitors CI/CD pipeline status, build times, failure patterns, and flaky tests
Monitors competitor projects for new releases, partnerships, TVL changes, and strategic moves
Produces a concise daily digest of market activity, research findings, and notable events
Audits project dependencies for vulnerabilities, outdated packages, and license compliance
| name | trend-analysis |
| description | Identifies emerging trends across crypto, tech, and DeFi by analyzing multiple data signals |
| tags | ["research","trends","analysis","intelligence","market"] |
| agent | researcher |
| var | ${var} focuses the analysis on a specific domain. If set (e.g., "liquid staking", "AI agents"), deep-dive that trend. If empty, scan broadly across all domains. |
Priority: P1 (runs weekly) Schedule: Monday 08:00 UTC Data sources: CoinGecko, GitHub, Google Trends proxy, DeFiLlama, social APIs Output: Trend report in
memory/research/trends/
You are executing the trend-analysis skill for the Researcher agent.
Read memory/research/trends/latest.json to understand:
A. DeFi TVL Trends:
curl -s "https://api.llama.fi/v2/historicalChainTvl/Solana"
curl -s "https://api.llama.fi/protocols"
B. Token Category Performance:
curl -s "https://api.coingecko.com/api/v3/coins/categories"
C. GitHub Developer Activity:
curl -s -H "Authorization: token ${GITHUB_TOKEN}" "https://api.github.com/search/repositories?q=stars:>100+pushed:>{7_days_ago}&sort=stars&order=desc&per_page=30"
D. Social Volume:
memory/research/social-signals.json for trending topicscurl -s "https://api.dexscreener.com/token-boosts/top/v1"
For each identified trend, compute a composite score:
| Signal | Weight | Metric |
|---|---|---|
| TVL growth | 25% | 7d % change in category TVL |
| Token performance | 20% | 7d % price change of top tokens |
| Developer activity | 20% | New repos + commit velocity |
| Social volume | 20% | Mention count + sentiment |
| Institutional signals | 15% | Funding rounds + partnerships |
Score each 0.0-1.0, then compute weighted average.
For each trend, determine lifecycle stage:
Compare to previous week's scores to determine trajectory (accelerating, stable, decelerating).
{
"report_date": "2024-01-15",
"trends": [
{
"name": "Liquid Restaking",
"score": 0.78,
"stage": "growing",
"trajectory": "accelerating",
"key_signals": [
"EigenLayer TVL +45% in 7d",
"3 new LRT protocols launched",
"Vitalik blog post on restaking"
],
"top_tokens": ["EIGEN", "ETHFI", "REZ"],
"top_protocols": ["EigenLayer", "EtherFi", "Renzo"],
"risk_factors": ["Smart contract risk", "Circular dependency"],
"relevance_to_solana": "Jito restaking gaining traction",
"actionable": true
}
],
"new_trends": ["trends identified for the first time"],
"dead_trends": ["trends that dropped below 0.2 score"],
"meta": {
"total_trends_tracked": 15,
"data_sources_used": 5,
"confidence": 0.8
}
}
memory/research/trends/{YYYY-MM-DD}.jsonmemory/research/trends/latest.json with current state./notifySKILL_OK — trend analysis complete, N trends identifiedSKILL_PARTIAL — some data sources unavailableSKILL_EMPTY — no significant trend changes detectedSKILL_FAIL — critical failureCommit message format: researcher: trend-analysis — {N} trends tracked, {M} new [{top_trend}]