> ## Documentation Index
> Fetch the complete documentation index at: https://docs.binibit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Hive Overview

> Hierarchical agent system that runs the BaiDEX agent layer. Queens, Scouts, Workers, Swarm.

<Card title="See the full economic model" icon="chart-pie" href="/tokenomics/ecosystem-overview">
  Tokenomics → Ecosystem Overview shows how the Hive fits into the wider system.
</Card>

## What the Agent Hive is

The Agent Hive is the **registry of all agents and all pools** in the Binibit ecosystem. Three tiers, hive principle:

```mermaid theme={null}
flowchart TB
    Queens["QUEENS (3)<br/><br/>Strategic layer<br/>ecosystem-wide coordination<br/>cross-pool liquidity, risk control,<br/>referral intelligence"]
    Scouts["SCOUTS (2)<br/><br/>Tactical layer<br/>token analysis, risk scoring,<br/>rug detection, signal generation"]
    Workers["WORKERS (N)<br/><br/>Execution layer<br/>one per Agent Token<br/>manages Agent Pool, monitors trades,<br/>distributes incentives"]
    Swarm["SWARM<br/><br/>Active runtime: subset of Workers<br/>currently deployed in the field<br/>Swarm ⊆ Hive"]

    Queens -- signals --> Scouts
    Scouts -- targets --> Workers
    Workers -.- Swarm

    classDef queen fill:#fce7f3,stroke:#db2777,color:#831843
    classDef scout fill:#fef9c3,stroke:#ca8a04,color:#713f12
    classDef worker fill:#dcfce7,stroke:#16a34a,color:#14532d
    classDef swarm fill:#e0f2fe,stroke:#0284c7,color:#0c4a6e

    class Queens queen
    class Scouts scout
    class Workers worker
    class Swarm swarm
```

Override chain: **Queen > Scout > Worker**. Every override is logged on-chain.

## Inside the docs

<CardGroup cols={2}>
  <Card title="Hierarchy" icon="sitemap" href="/agent-hive/hierarchy">
    Override chain and decision flow
  </Card>

  <Card title="Agent Queens" icon="crown" href="/agent-hive/queens">
    Strategic agents — 3 instances
  </Card>

  <Card title="Agent Scouts" icon="binoculars" href="/agent-hive/scouts">
    Tactical analysts — 2 instances
  </Card>

  <Card title="Agent Workers" icon="user-gear" href="/agent-hive/workers">
    Per-token executors — N instances
  </Card>

  <Card title="Agent Swarm" icon="bolt" href="/agent-hive/swarm">
    Active runtime layer
  </Card>

  <Card title="Action logs" icon="list-check" href="/agent-hive/action-logs">
    On-chain transparency
  </Card>

  <Card title="Voting & governance" icon="check-to-slot" href="/agent-hive/voting">
    User governance, Level 20+ gate
  </Card>

  <Card title="API" icon="terminal" href="/agent-hive/api">
    /api/agents/\* endpoints
  </Card>

  <Card title="Trust model" icon="shield-halved" href="/agent-hive/trust-model">
    How agent actions are verifiable
  </Card>
</CardGroup>

## Lifecycle

```
Spawn Agent Token  →  Worker created  →  Worker joins Swarm
                  →  Swarm reports to Scouts (eventually)
                  →  Scouts report to Queens
                  →  Queens coordinate strategy
                  →  Strategy flows back as signals
                  →  Workers act on signals
```

Continuous loop. No external trigger needed beyond user activity (spawns, swaps, LP).

## Related

<CardGroup cols={2}>
  <Card title="AgentT Launchpad" icon="rocket" href="/agentt-launchpad/overview">
    Where Agent Tokens spawn
  </Card>

  <Card title="BaiDEX" icon="layer-group" href="/baidex/overview">
    Where Workers manage liquidity
  </Card>

  <Card title="Tokenomics" icon="chart-pie" href="/tokenomics/agent-token-sinks">
    How Hive activity drives sinks
  </Card>

  <Card title="BiniChain" icon="link" href="/binichain/overview">
    Where action logs live
  </Card>
</CardGroup>
