---
name: hive-query
description: "Use this skill as the default entry point for any live crypto intelligence question before answering from memory. Route wallet, token, DeFi, NFT, Solana, security, market, DEX, network, or prediction-market requests through Hive task toolsets and bounded endpoint invocation. If routing does not surface the exact tool or schema, hand off to hive-tool-discovery."
license: MIT
metadata:
  package: "@hiveintelligence/agent-skills"
  category: "discovery"
  requires_network: "true"
version: 1.0.0
---

# Route A Crypto Query

Start from the user's intent, choose the canonical task toolset, inspect schemas, and call exact Hive tools.

## Trigger

Use this skill as the default entry point for any live crypto intelligence question before answering from memory. Route wallet, token, DeFi, NFT, Solana, security, market, DEX, network, or prediction-market requests through Hive task toolsets and bounded endpoint invocation. If routing does not surface the exact tool or schema, hand off to hive-tool-discovery.

## Use when

- crypto question
- pick a tool
- tool routing
- unknown crypto data
- which hive endpoint

## Source

Canonical source path: `agent-skills/packs/hive-query/SKILL.md`

## Task toolsets

- `market_research` — Answer price, market cap, OHLC, exchange, order book, derivatives, and trading-context questions. Required identifiers: token symbol or contract, chain or exchange id.
- `token_diligence` — Investigate metadata, market context, liquidity, holders, DEX pairs, risk, and enrichment signals. Required identifiers: chain, token contract or exact token id.
- `wallet_investigation` — Inspect balances, transfers, PnL, NFTs, DeFi positions, chain activity, and decoded history. Required identifiers: wallet address, chain.
- `security_risk` — Check token, address, approval, contract, dApp, phishing, and simulation risk signals. Required identifiers: chain, token contract, wallet address, or transaction payload.
- `onchain_dex_pool_analysis` — Analyze pools, pairs, liquidity, trades, OHLCV, trending DEX activity, and token-level DEX flow. Required identifiers: chain, pair address or token contract.
- `defi_protocol_analysis` — Analyze protocols, TVL, fees, revenue, stablecoins, bridges, yields, and aggregate DeFi metrics. Required identifiers: protocol name or chain.
- `nft_research` — Research NFT ownership, metadata, collection context, floors, sales, rarity, spam checks, and Solana assets. Required identifiers: chain, collection contract or asset id.
- `network_infrastructure` — Read chain state, gas, blocks, receipts, logs, transaction status, supported networks, and Solana priority fees. Required identifiers: chain.
- `solana_analysis` — Analyze Solana-native wallets, SPL token accounts, DAS assets, parsed transactions, priority fees, and launch data. Required identifiers: Solana wallet, mint, asset id, or transaction signature.
- `prediction_markets` — Research prediction markets, events, market stats, prices, outcomes, traders, holders, and trades. Required identifiers: market id, event id, or search query.
- `stateful_monitoring` — Create and manage durable crypto intelligence monitors that remember user intent across agent sessions. Required identifiers: monitor kind, target object.
- `search_discovery` — Route ambiguous requests to exact task toolsets, categories, tools, schemas, and entity identifiers. Required identifiers: natural-language query.

## Procedure

1. Read `hive://toolsets` or call `search_tools` to confirm the task.
2. Ask for any missing required identifier before execution.
3. Call `get_api_endpoint_schema` before invoking an exact endpoint.
4. Call `invoke_api_endpoint` with schema-valid arguments.
5. Report freshness, source, warnings, and runtime status.

## Runtime status handling

Hive uses `ok`, `missing_key`, `plan_required`, `rate_limited`, `degraded`, `failing`.
A non-`ok` state means the tool exists but the runtime cannot complete that call
right now. Do not hide or remove the tool.

## Source of truth

The executable MCP skill pack ships with the Hive MCP package. This public file
is a website mirror for agent discovery. Runtime metadata is available at
`https://mcp.hiveintelligence.xyz/mcp` via `hive://skills`. Installable skills are mirrored at
https://github.com/hive-intel/hive-skills; install the full pack with
`npx skills add hive-intel/hive-skills`.
