Skip to main content
Agents are AI-powered assistants that combine blockchain data access, domain expertise, and specialized tools to solve complex analysis problems. Each agent is equipped with skills that define what it knows and what it can do.
Flipspace Agents interface showing available agents with their skills and tools

Key Concepts

Agents

AI assistants that can query data, analyze patterns, and generate insights. Each agent has a specific purpose and is equipped with relevant skills.

Skills

Reusable packages of domain knowledge and tools. Skills give agents the context and capabilities they need to perform specific tasks.

How Agents Work

Agents combine three key components:
  1. AI Model — The underlying language model (Claude, GPT, etc.) that powers reasoning and conversation
  2. Skills — Domain knowledge and tool access packaged for specific use cases
  3. Tools — Capabilities like SQL querying, table discovery, and data visualization
When you chat with an agent, it uses its assigned skills to understand your question, query the right data, and generate meaningful insights.

Getting Started

Agents and skills are created and managed through the Flipside CLI. To build your own:
1

Install the CLI

Follow the CLI installation guide to set up the Flipside CLI on your machine.
2

Create an Agent

Use flipside agents init to create a new agent configuration. See the CLI Agents documentation for details.
3

Create Skills

Use flipside skills init to create skills that give your agent domain knowledge and tools. See the CLI Skills documentation for details.
4

Deploy

Push your agent and skills to make them available in Flipspace.

Install CLI

Get started with the Flipside CLI

CLI: Agents

Create and deploy agents

CLI: Skills

Create and deploy skills

Agent Architecture

┌─────────────────────────────────────────────┐
│                   Agent                      │
│  ┌─────────────────────────────────────┐    │
│  │           AI Model                   │    │
│  │     (Claude, GPT, Gemini)           │    │
│  └─────────────────────────────────────┘    │
│                    │                         │
│  ┌─────────┬───────┴───────┬─────────┐     │
│  │ Skill 1 │    Skill 2    │ Skill 3 │     │
│  │         │               │         │     │
│  │ Tools:  │   Tools:      │ Tools:  │     │
│  │ - SQL   │   - Tables    │ - HTML  │     │
│  │ - Viz   │   - Schema    │ - SQL   │     │
│  └─────────┴───────────────┴─────────┘     │
└─────────────────────────────────────────────┘

Learn More

Agents

Browse and use AI agents

Skills

Understand agent skills

CLI: Agents

Create agents via CLI

CLI: Skills

Create skills via CLI