Claude Code Skill

Query 0xArchive from Claude Code with curl + jq, including market data, order-level routes, data quality, and wallet signup without running MCP.

Install
Plugin or standalone skill
Client
Claude Code only
Interface
Prompts to curl

Query 0xArchive from Claude Code without running a local MCP server.

The skill turns prompts into curl-based requests across Hyperliquid, HIP-3, and Lighter.xyz, expects curl and jq locally, and covers market data, order-level routes, data quality, and wallet signup.

Install as plugin

Clone the repo and load it as a plugin. Skills are namespaced as /0xarchive:query.

Bash
git clone https://github.com/0xArchiveIO/0xarchive-skill.git
claude --plugin-dir ./0xarchive-skill

Then set your API key: export OXARCHIVE_API_KEY=0xa_your_api_key

Install via OpenClaw

Install from ClawHub using the OpenClaw CLI.

Bash
openclaw install 0xarchive

Install as standalone skill

Copy the skill file directly into your project. It is invoked as /0xarchive and expects curl plus jq in your shell.

Bash
mkdir -p .claude/skills/0xarchive
curl -o .claude/skills/0xarchive/SKILL.md \
https://raw.githubusercontent.com/0xArchiveIO/0xarchive-skill/main/skills/query/SKILL.md

Example prompts

Once installed, call the skill from Claude Code with prompts like these.

  • /0xarchive:query BTC funding rate
  • /0xarchive:query ETH 4h candles last week
  • /0xarchive:query SOL orderbook depth 20
  • /0xarchive:query BTC order flow last hour
  • /0xarchive:query hyna:BTC tpsl orders today
  • /0xarchive:query km:US500 trades last hour
  • /0xarchive:query system health status
  • /0xarchive:query sign up with wallet 0xabc123...

MCP server or skill

Use the MCP server when you need typed tools across clients. Use the skill when you only need Claude Code.

MCP serverSkill plugin
DependenciesNode.js + npmcurl + jq
Compatible withClaude Desktop, Claude Code, Cursor, any MCP clientClaude Code only
Tools73 typed tools with output schemasNatural language → curl commands
UseStructured queries and multi-client setupsFast setup when curl and jq are already available

Where to use the skill next