AI agent skills and CLI tools for querying blockchain data across 40+ chains.
Add the Flipside skill to your AI coding assistant:
npx skills add FlipsideCrypto/flipside-toolsOr manually copy skills/flipside/ to your .claude/skills/ directory.
curl -fsSL https://raw.githubusercontent.com/FlipsideCrypto/flipside-tools/main/install.sh | shflipside loginVerify your setup:
flipside whoamiThe best way to use Flipside is through an AI coding assistant like Claude Code. The skill teaches your assistant how to query blockchain data correctly.
- Open Claude Code in any directory
- Ask about blockchain data:
"What were the top 10 DEX swaps on Ethereum yesterday?"
"Show me wallet activity for vitalik.eth in the last week"
"Find all USDC transfers over $1M on Arbitrum today"
Claude Code will use the Flipside skill to:
- Check your available agents and skills
- Use chat or agents to query blockchain data
- Generate correct SQL against Flipside's data warehouse
Analyze token transfers:
"I want to analyze large token transfers on Solana. Find transfers over 10,000 SOL in the past 24 hours and show me the top senders."
Build a data pipeline:
"Help me create an automation that tracks daily trading volume for the top 10 tokens on Uniswap and saves the results."
Create a custom agent:
"I want to build an agent that monitors whale wallets. Help me set up the agent YAML and deploy it."
You can also use the CLI directly if preferred:
# Start an interactive chat
flipside chat
# List available agents in your org
flipside agents list
# Run a query through an agent (use org/agent_name format)
flipside agents run <org>/<agent_name> --message "Show me the largest ETH transfers today"
# Run SQL directly
flipside query create "SELECT * FROM ethereum.core.ez_token_transfers LIMIT 10"When you install the Flipside skill, your AI assistant learns:
- First Steps: Always check available agents with
flipside agents list - Golden Rule: Use chat or agents for SQL—don't write queries from scratch
- Query Patterns: Correct SQL syntax for Flipside's Snowflake warehouse
- Full CLI Reference: Commands for agents, automations, queries, and skills
The skill includes detailed references for:
- Agents - Creating and deploying AI agents
- Queries - SQL patterns and table discovery
- Automations - Building data pipelines
- Tables - Common tables by chain
flipside-tools/
├── skills/
│ └── flipside/ # AI agent skill for blockchain analytics
│ ├── SKILL.md # Main skill definition
│ ├── references/ # Detailed docs (agents, automations, queries)
│ ├── scripts/ # Validation helpers
│ └── assets/ # YAML templates
├── install.sh # CLI installer
└── README.md
Check for skill updates:
npx skills checkUpdate to the latest version:
npx skills updateMIT