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

# Glossary

> Key product terms used throughout the BoundBot workspace.

export const BrowserWrapper = ({src, alt, title, description, height = '280px', caption, imgStyle = {}, children, imagePadding = '0px'}) => {
  const legacyDocsImagePrefix = '/images/';
  const productionDocsImagePrefix = '/docs/images';
  const rawSrc = typeof src === 'string' ? src : src && (src.src || src.default) || '';
  const imageSrc = rawSrc.startsWith(legacyDocsImagePrefix) ? `${productionDocsImagePrefix}/${rawSrc.slice(legacyDocsImagePrefix.length)}` : rawSrc;
  return <Frame caption={caption || alt || title} width="100%">
      <div style={{
    border: '1px solid #e2e8f0',
    borderRadius: '12px',
    overflow: 'hidden',
    boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
    width: '100%'
  }}>
        <div style={{
    backgroundColor: '#f8fafc',
    padding: '10px 15px',
    borderBottom: '1px solid #e2e8f0',
    display: 'flex',
    gap: '6px'
  }}>
          <div style={{
    width: '10px',
    height: '10px',
    borderRadius: '50%',
    backgroundColor: '#ff5f56'
  }} />
          <div style={{
    width: '10px',
    height: '10px',
    borderRadius: '50%',
    backgroundColor: '#ffbd2e'
  }} />
          <div style={{
    width: '10px',
    height: '10px',
    borderRadius: '50%',
    backgroundColor: '#27c93f'
  }} />
        </div>
        <div style={{
    overflow: 'hidden',
    background: '#ffffff',
    width: '100%',
    padding: imagePadding
  }}>
          {src ? <img src={imageSrc} alt={alt || ''} data-docs-screenshot style={{
    ...imgStyle,
    width: '100%',
    minWidth: '100%',
    height: 'auto',
    display: 'block',
    borderRadius: '0px'
  }} /> : children ? children : null}
        </div>
      </div>
    </Frame>;
};

Key product terms and where to find them in the BoundBot dashboard:

* **Team**: the main workspace container for bots, channels, data, and integrations. <a href="https://www.boundbot.com/dashboard/settings/general" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Bot**: the AI assistant configuration that defines tone, prompt, welcome copy, and reply behavior. <a href="https://www.boundbot.com/dashboard/bots" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Channel**: the connection between BoundBot and a platform such as WebChat, WhatsApp, or Slack. <a href="https://www.boundbot.com/dashboard/channels/webchat" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **WebChat**: the embeddable website widget managed by a public key and UI settings. <a href="https://www.boundbot.com/dashboard/channels/webchat" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **FAQ item**: a text-based knowledge record stored in the knowledge base. <a href="https://www.boundbot.com/dashboard/knowledge/knowledge-base" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **File**: an uploaded document that BoundBot indexes for question answering. <a href="https://www.boundbot.com/dashboard/knowledge/files" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Website source**: a crawl, sitemap, or individual URL source that feeds website content into the knowledge layer. <a href="https://www.boundbot.com/dashboard/knowledge/websites" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Product**: a structured catalog record with price, stock, tags, and optional variants. <a href="https://www.boundbot.com/dashboard/knowledge/products" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Action**: a reusable interaction such as a button, booking flow, lead capture step, or custom API request. <a href="https://www.boundbot.com/dashboard/automations/actions" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Workflow**: a multi-step automation built in the visual editor. <a href="https://www.boundbot.com/dashboard/automations/workflows" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Keyword rule**: a lightweight auto-reply rule that matches a pattern and returns fixed text. <a href="https://www.boundbot.com/dashboard/automations/keyword-rules" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Inbox conversation**: a thread created from any connected channel. <a href="https://www.boundbot.com/dashboard/inbox" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Lead**: captured contact or buyer-interest data collected through conversation flows. <a href="https://www.boundbot.com/dashboard/sales/leads" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Order**: a workspace-level record used for order-aware workflows and support context. <a href="https://www.boundbot.com/dashboard/sales/orders" target="_blank" rel="noopener noreferrer">Open in app</a>.
* **Credits**: the usage currency consumed by AI-generated replies.
* **MCP**: Model Context Protocol; a way to connect external tool servers to BoundBot.

## Related pages

<CardGroup cols={2}>
  <Card title="Documentation home" icon="house" href="/">
    Return to the main docs entry point and choose the next workflow.
  </Card>

  <Card title="Bots" icon="bot" href="/guides/bots">
    See how core bot settings map to the terms used across the product.
  </Card>

  <Card title="Channels overview" icon="messages-square" href="/channels/overview">
    Review the channel types referenced throughout the docs.
  </Card>

  <Card title="Knowledge base" icon="book-open-text" href="/guides/knowledge-base">
    See how FAQs, files, website sources, products, and MCPs work together.
  </Card>
</CardGroup>
