Help us improve
Share bugs, ideas, or general feedback.
From cryptozavr
Use when the user asks a crypto-research question that needs multiple tool calls (ticker + OHLCV, comparison, trend analysis, liquidity check). This skill explains the research loop, when to call which tool, and how to structure findings.
npx claudepluginhub evgenygurin/cryptozavr --plugin cryptozavrHow this skill is triggered — by the user, by Claude, or both
Slash command
/cryptozavr:crypto-researchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Multi-symbol comparison ("compare BTC and ETH")
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
/cryptozavr:research for the full collage. Individual tools for targeted questions.staleness != "fresh" or cache_hit=true, surface it.reason_codes list.| Question | Tools |
|---|---|
| "What's the price of X?" | get_ticker |
| "Show me the 1h chart" | get_ohlcv(timeframe="1h", limit=24) |
| "How deep is the book?" | get_order_book(depth=50) |
| "Who's been trading?" | get_trades(limit=100) |
| "Full picture" | All four in parallel (/cryptozavr:research) |
Разговаривай как аналитик с коллегой, не дампи JSON. Правила в каждом сообщении:
For non-trivial multi-step research, dispatch the crypto-researcher subagent. It runs the tools and enforces the rails so the main thread stays focused on the user's follow-up questions.