# Caboo Agent Gateway Install Pack

Use these snippets to make the published gateway discoverable from the customer site. Keep the visible site copy consistent with the service catalog.

## Methodology note

Book readiness means the business has a published machine-readable service catalog, booking paths, discovery snippets, and intent tracking. It does not guarantee that every AI agent will autonomously discover or complete bookings.

V1 routes buyers and agents to approved booking paths and records booking intent. It does not write directly to calendars, hold slots, or collect deposits.

## llms.txt snippet

```text
# Caboo

Agent-readiness software and implementation for local service businesses.

Canonical URL: https://app.getcaboo.com
Agent booking gateway: https://app.getcaboo.com/agent/caboo
Agent JSON: https://app.getcaboo.com/agent/caboo.json
Agent Markdown: https://app.getcaboo.com/agent/caboo.md
Services JSON: https://app.getcaboo.com/agent/caboo/services

Bookable services:
- Foundations: Done-with-you implementation that makes a business easier for AI agents to find and describe correctly. — Find + Understand — book: https://app.getcaboo.com/agent/caboo/book?service=foundations
- Agent-Bookable Pilot: Machine-readable booking gateway and pilot implementation for routing buyers to the right appointment path. — Scoped pilot — book: https://app.getcaboo.com/agent/caboo/book?service=agent_bookable_pilot
- Agent-Ready Care: Ongoing upkeep for agent-readiness drift, freshness, retests, and booking gateway maintenance. — Ongoing — book: https://app.getcaboo.com/agent/caboo/book?service=agent_ready_care
- Scoped Audit: Focused audit and implementation plan for complex sites, regulated content, or vertical-specific agent readiness. — Scoped engagement — book: https://app.getcaboo.com/agent/caboo/book?service=scoped_audit

Booking note: This gateway routes booking intent; it does not guarantee autonomous agent-created bookings.
Privacy note: Caboo stores booking intent details only to route and attribute the request.
```

## Schema JSON-LD

```json
{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "@id": "https://app.getcaboo.com/agent/caboo#business",
  "name": "Caboo",
  "description": "Agent-readiness software and implementation for local service businesses.",
  "url": "https://app.getcaboo.com",
  "email": "hello@getcaboo.com",
  "address": {
    "@type": "PostalAddress",
    "addressCountry": "US"
  },
  "areaServed": "Remote",
  "sameAs": [
    "https://app.getcaboo.com/agent/caboo",
    "https://app.getcaboo.com/agent/caboo.json",
    "https://app.getcaboo.com/agent/caboo.md"
  ],
  "potentialAction": {
    "@type": "ReserveAction",
    "target": {
      "@type": "EntryPoint",
      "urlTemplate": "https://app.getcaboo.com/agent/caboo/book?service={service_key}",
      "httpMethod": "GET"
    },
    "result": {
      "@type": "Reservation",
      "name": "Caboo booking request"
    }
  },
  "hasOfferCatalog": {
    "@type": "OfferCatalog",
    "name": "Caboo bookable services",
    "itemListElement": [
      {
        "@type": "Offer",
        "position": 1,
        "name": "Foundations",
        "description": "Done-with-you implementation that makes a business easier for AI agents to find and describe correctly.",
        "url": "https://app.getcaboo.com/agent/caboo/book?service=foundations",
        "priceCurrency": "USD",
        "itemOffered": {
          "@type": "Service",
          "name": "Foundations",
          "serviceType": "agent-readiness",
          "description": "Done-with-you implementation that makes a business easier for AI agents to find and describe correctly.",
          "areaServed": "Remote",
          "provider": {
            "@id": "https://app.getcaboo.com/agent/caboo#business"
          }
        },
        "availability": "https://schema.org/InStock"
      },
      {
        "@type": "Offer",
        "position": 2,
        "name": "Agent-Bookable Pilot",
        "description": "Machine-readable booking gateway and pilot implementation for routing buyers to the right appointment path.",
        "url": "https://app.getcaboo.com/agent/caboo/book?service=agent_bookable_pilot",
        "priceCurrency": "USD",
        "itemOffered": {
          "@type": "Service",
          "name": "Agent-Bookable Pilot",
          "serviceType": "agent-readiness",
          "description": "Machine-readable booking gateway and pilot implementation for routing buyers to the right appointment path.",
          "areaServed": "Remote",
          "provider": {
            "@id": "https://app.getcaboo.com/agent/caboo#business"
          }
        },
        "availability": "https://schema.org/InStock"
      },
      {
        "@type": "Offer",
        "position": 3,
        "name": "Agent-Ready Care",
        "description": "Ongoing upkeep for agent-readiness drift, freshness, retests, and booking gateway maintenance.",
        "url": "https://app.getcaboo.com/agent/caboo/book?service=agent_ready_care",
        "priceCurrency": "USD",
        "itemOffered": {
          "@type": "Service",
          "name": "Agent-Ready Care",
          "serviceType": "agent-readiness",
          "description": "Ongoing upkeep for agent-readiness drift, freshness, retests, and booking gateway maintenance.",
          "areaServed": "Remote",
          "provider": {
            "@id": "https://app.getcaboo.com/agent/caboo#business"
          }
        },
        "availability": "https://schema.org/InStock"
      },
      {
        "@type": "Offer",
        "position": 4,
        "name": "Scoped Audit",
        "description": "Focused audit and implementation plan for complex sites, regulated content, or vertical-specific agent readiness.",
        "url": "https://app.getcaboo.com/agent/caboo/book?service=scoped_audit",
        "priceCurrency": "USD",
        "itemOffered": {
          "@type": "Service",
          "name": "Scoped Audit",
          "serviceType": "agent-readiness",
          "description": "Focused audit and implementation plan for complex sites, regulated content, or vertical-specific agent readiness.",
          "areaServed": "Remote",
          "provider": {
            "@id": "https://app.getcaboo.com/agent/caboo#business"
          }
        },
        "availability": "https://schema.org/InStock"
      }
    ]
  }
}
```

## Visible HTML link

```html
<link rel="alternate" type="application/json" href="https://app.getcaboo.com/agent/caboo.json" title="Caboo agent booking gateway">
<link rel="alternate" type="text/markdown" href="https://app.getcaboo.com/agent/caboo.md" title="Caboo agent booking gateway">
<a href="https://app.getcaboo.com/agent/caboo">View Caboo bookable services</a>
```

## Robots and sitemap

- Do not block /agent/caboo, /agent/caboo.json, or /agent/caboo.md. These are public agent-readiness routes.
- Add to sitemap if appropriate: https://app.getcaboo.com/agent/caboo
- Add to sitemap if appropriate: https://app.getcaboo.com/agent/caboo.json
- Add to sitemap if appropriate: https://app.getcaboo.com/agent/caboo.md
- Add to sitemap if appropriate: https://app.getcaboo.com/agent/caboo/services
- Add to sitemap if appropriate: https://app.getcaboo.com/agent/caboo/install.json
