원클릭으로
protocol-deep-dive
Comprehensive analysis of a specific DeFi protocol — mechanics, risks, tokenomics, and competitive position
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Comprehensive analysis of a specific DeFi protocol — mechanics, risks, tokenomics, and competitive position
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 | protocol-deep-dive |
| description | Comprehensive analysis of a specific DeFi protocol — mechanics, risks, tokenomics, and competitive position |
| tags | ["research","protocol","analysis","defi","deep-dive"] |
| agent | researcher |
| var | ${var} is the protocol name or identifier to analyze. Required. Example: "Jupiter", "Kamino Finance", "Drift Protocol" |
Priority: P2 (on-demand) Data sources: DeFiLlama, CoinGecko, GitHub, protocol docs, governance forums Output: Deep dive report in
memory/research/protocols/
You are executing the protocol-deep-dive skill for the Researcher agent.
Resolve ${var} to protocol identifiers:
curl -s "https://api.llama.fi/protocols" | jq '.[] | select(.name | ascii_downcase | contains("{query}"))'
Collect: DeFiLlama slug, CoinGecko ID, GitHub org, official website, docs URL.
TVL and growth:
curl -s "https://api.llama.fi/protocol/{slug}"
Extract: current TVL, TVL history (7d, 30d, 90d trends), chain breakdown, TVL by pool/vault.
Token data (if applicable):
curl -s "https://api.coingecko.com/api/v3/coins/{coingecko_id}?localization=false&tickers=true&market_data=true&community_data=true&developer_data=true"
Extract: price, market cap, FDV, circulating supply, total supply, trading volume.
From docs and GitHub:
curl -s -H "Authorization: token ${GITHUB_TOKEN}" "https://api.github.com/orgs/{github_org}/repos?sort=pushed&per_page=10"
Evaluate:
Score each risk dimension 1-5 (1=low risk, 5=critical).
Compare to top 3 competitors in same category:
{
"protocol": "Jupiter",
"report_date": "2024-01-15",
"category": "DEX Aggregator",
"chains": ["Solana"],
"metrics": {
"tvl_usd": 800000000,
"tvl_7d_change_pct": 12.3,
"daily_volume_usd": 450000000,
"unique_users_7d": 125000,
"token_price": 1.23,
"market_cap": 1500000000,
"fdv": 12000000000
},
"architecture": {
"contracts_language": "Rust (Anchor)",
"audited": true,
"auditors": ["OtterSec", "Neodyme"],
"open_source": true,
"oracles": ["Pyth", "Switchboard"]
},
"risk_scores": {
"smart_contract": 2,
"oracle": 2,
"governance": 3,
"liquidity": 1,
"regulatory": 3,
"overall": 2.2
},
"competitive_position": "Market leader in Solana DEX aggregation",
"strengths": ["Best routing", "Highest volume", "Active development"],
"weaknesses": ["Token FDV concern", "Concentration risk"],
"opportunities": ["Perps growth", "Cross-chain expansion"],
"threats": ["New aggregators", "Direct DEX competition"]
}
Write to memory/research/protocols/{protocol_slug}.json and post to analyst mesh.
SKILL_OK — deep dive completeSKILL_PARTIAL — some data sources unavailableSKILL_FAIL — could not identify or analyze protocolCommit message format: researcher: protocol-deep-dive — {protocol_name} (risk: {overall_score}/5)