Skill 詳細
emblem-market-research
Direct market research but limited to crypto intelligence.
使用前に確認
自動レビューは関連性のみを確認し、安全性や推奨を保証しません。使用前に出典の説明を読んでください。
SKILL.md
これはレビュー時に保存された抜粋です。完全で最新の内容は外部ソースを確認してください。
--- name: emblem-market-research description: > Crypto market intelligence via EmblemAI. Trending tokens, on-chain analytics, derivatives data, and smart money tracking from CoinGecko, CoinGlass, Birdeye, and Nansen. Use when the user wants market data, trending tokens, derivatives analytics, or on-chain intelligence. license: MIT compatibility: > Requires Node.js >= 18.0.0, @emblemvault/agentwallet CLI, and internet access. Works on Claude Code, Cursor, Codex, OpenClaw, and other agents following the Agent Skills spec. metadata: author: EmblemAI version: "1.1.0" homepage: https://emblemvault.ai docs: https://emblemvault.ai/docs docs-interactive: https://emblemvault.dev --- # Emblem Market Research Crypto market intelligence powered by **EmblemAI**. Real-time data from CoinGecko, CoinGlass, Birdeye, and Nansen — trending tokens, derivatives analytics, on-chain smart money tracking, and token deep dives. **Requires**: `npm install -g @emblemvault/agentwallet` --- ## What This Skill Can Do | Capability | Tools Used | |-----------|------------| | Trending tokens (all chains) | `getTrendingCoins`, `birdeyeTrendingTokens` | | Token price lookup | `getCryptoPrice`, `searchCryptoByName` | | Token deep dive (volume, trades, liquidity) | `birdeyeTradeData` | | Open interest history | `getCoinglassOpenInterestHistory` | | Derivatives risk/greed indices | `getCoinglassCDRIIndex`, `getCoinglassCGDIIndex` | | Whale tracking (futures) | `getCoinglassFuturesWhaleIndex`, `getCoinglassHyperliquidWhaleAlert` | | Funding rates | `getCoinglassPremiumIndex` | | ETF flows (BTC/ETH) | `getCoinglassBitcoinETFNetAssetsHistory`, `getCoinglassEthereumETFNetAssetsHistory` | | Smart money flows | `nansen_smart_money_flows`, `nansen_smart_money_trades` | | Smart money holdings | `nansen_smart_money_holdings` | | Token screening | `nansen_token_screener` | | Wallet profiling | `nansen_wallet_profiler` | | P&L leaderboard | `nansen_pnl_leaderboard` | ### Not Supported These features have no backing tools: - Technical analysis (RSI, MACD, support/resistance) — no charting or TA tools exist - Social sentiment (Twitter, Telegram, Discord monitoring) — no social API tools - Fear/Greed Index — no dedicated tool (CoinGlass CDRI is derivatives-specific, not the same) - DeFiLlama TVL data — no DeFiLlama tools exist - BTC dominance / total market cap — no dedicated tool --- ## Quick Start ```bash npm install -g @emblemvault/agentwallet # What's trending (uses getTrendingCoins) emblemai --agent --profile default -m "Use getTrendingCoins to show what's trending in crypto right now" # Token deep dive (uses birdeyeTradeData) emblemai --agent --profile default -m "Use birdeyeTradeData to analyze SOL — show volume, trades, buy/sell ratio, and liquidity" ``` **Trigger phrases:** - "What's trending in crypto?" - "Analyze this token" - "Show derivatives data for BTC" - "What are whales buying?" - "Show smart money flows" --- ## Data Sources | Source | Tools | Coverage | |--------|-------|----------| | **CoinGecko** | `getTrendingCoins`, `getCryptoPrice`, `searchCryptoByName` | Trending coins, price lookup | | **Birdeye** | `birdeyeTradeData`, `birdeyeTrendingTokens`, `searchEvmTokensBirdeye` | Token analytics, multi-chain trending, trade data | | **CoinGlass** | `getCoinglassOpenInterestHistory`, `getCoinglassCDRIIndex`, `getCoinglassCGDIIndex`, `getCoinglassFuturesWhaleIndex`, `getCoinglassHyperliquidWhaleAlert`, `getCoinglassPremiumIndex`, `getCoinglassBitcoinETFNetAssetsHistory`, etc. | Derivatives, funding rates, open interest, whale tracking, ETF flows | | **Nansen** | `nansen_smart_money_flows`, `nansen_smart_money_trades`, `nansen_smart_money_holdings`, `nansen_token_screener`, `nansen_wallet_profiler`, `nansen_pnl_leaderboard` | Smart money analytics, on-chain flows, wallet profiling | --- ## Workflow: Token Research ### Step 1: Discovery Find what's moving. ```bash emblemai --agent --profile default -m "Use getTrendingCoins toGitHub で全文を読む (外部ページ)