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

# Bothive Documentation

> Build production-ready AI agents with memory, tools, and observability.

Bothive is the backend for AI agents — runtime, workflows, storage, and observability in one platform. No infrastructure to provision, no glue code to maintain between your model and your data.

Think of it as Firebase, but for agents instead of apps.

## Why Bothive

Most agent frameworks stop at "call a model, get a response." Production agents need more: persistent memory across sessions, tool execution with retries and observability, workflows that chain multiple agents reliably, and a way to ship changes without redeploying everything.

Bothive handles that layer so you can focus on what your agent actually does.

<CardGroup cols={2}>
  <Card title="No infra to manage" icon="server">
    Runtime, storage, and scaling are handled for you.
  </Card>

  <Card title="Built for production" icon="shield-check">
    Retries, observability, and versioning from day one.
  </Card>

  <Card title="Model agnostic" icon="shuffle">
    Bring your own provider — swap models without rewriting agents.
  </Card>

  <Card title="Naira-native billing" icon="credit-card">
    Local payment rails, no currency friction.
  </Card>
</CardGroup>

## Get started

<Card title="Quickstart" icon="rocket" href="/quickstart">
  Deploy your first agent in under five minutes.
</Card>

```bash theme={null}
npm install -g bothive-cli
bothive init my-agent
bothive deploy
```

## Core building blocks

<CardGroup cols={2}>
  <Card title="Runtime" icon="bolt" href="/concepts/architecture">
    Execute agents with memory, tools, and state built in. Handles retries and streaming out of the box.
  </Card>

  <Card title="Workflows" icon="git-branch" href="/guides/build-your-first-agent">
    Chain agents and tools into pipelines with conditional branching and error handling.
  </Card>

  <Card title="HiveStore" icon="database" href="/concepts/memory">
    Persistent storage purpose-built for agent state — not a bolted-on database.
  </Card>

  <Card title="HiveMind" icon="sparkles" href="/guides/build-your-first-agent">
    Turn a prompt or voice note into a working agent, no boilerplate required.
  </Card>

  <Card title="HiveLang" icon="code" href="/concepts/hivelang">
    A small DSL for defining agent behavior declaratively, when you need more control than a prompt gives you.
  </Card>

  <Card title="Observability" icon="chart-line" href="/concepts/observability">
    Trace every run, tool call, and token — down to the individual agent step.
  </Card>
</CardGroup>

## Common use cases

<AccordionGroup>
  <Accordion title="Customer support agents">
    Agents that remember conversation history across sessions and hand off to humans when confidence drops.
  </Accordion>

  <Accordion title="Multi-agent swarms">
    Coordinate several specialized agents on one task — a researcher, a writer, a reviewer — with shared state via Workflows.
  </Accordion>

  <Accordion title="Internal tools and copilots">
    Give agents access to your internal APIs and data through HiveStore, scoped and audited.
  </Accordion>

  <Accordion title="Voice-to-agent prototyping">
    Describe an agent out loud with HiveMind and get a deployable version in minutes.
  </Accordion>
</AccordionGroup>

## Pricing and plans

Free to start, with credit caps that scale as you grow. Multi-agent swarms and agent export are available on Pro.

<Card title="Platform status" icon="signal" href="/platform-status">
  See plan details and what's included at each tier.
</Card>

## Need help?

<CardGroup cols={2}>
  <Card title="Join the community" icon="message-circle" href="/community">
    Get help and share what you're building on Discord or Telegram.
  </Card>

  <Card title="API reference" icon="terminal" href="/api/overview">
    Full endpoint documentation for every Bothive service.
  </Card>
</CardGroup>
