> ## Documentation Index
> Fetch the complete documentation index at: https://tbd-6fc993ce-hypeship-intro-app-platform.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# wrangle the wild web

We build crazy fast, open source infra for AI agents to access the internet. Trusted by Cash App, Framer, and 3,000+ teams.

<Columns className="responsive-columns" cols={4}>
  <Card title="Sandboxed Chromium" img="https://mintlify.s3.us-west-1.amazonaws.com/tbd-6fc993ce-hypeship-intro-app-platform/images/chromium.svg" href="/introduction/create">
    We spin up cloud browsers in \<30ms with GPU acceleration when needed.
  </Card>

  <Card title="Auth" img="https://mintlify.s3.us-west-1.amazonaws.com/tbd-6fc993ce-hypeship-intro-app-platform/images/auth.svg" href="/auth/overview">
    We manage auth for your agents so you don't have to.
  </Card>

  <Card title="Stealth Mode" img="https://mintlify.s3.us-west-1.amazonaws.com/tbd-6fc993ce-hypeship-intro-app-platform/images/stealth.svg" href="/browsers/bot-detection/overview">
    We solve CAPTCHAs and manage residential proxies to help you see fewer of them.
  </Card>

  <Card title="o11y" img="https://mintlify.s3.us-west-1.amazonaws.com/tbd-6fc993ce-hypeship-intro-app-platform/images/o11y.svg" href="/introduction/observe">
    You can view sessions live and record them as MP4s for debugging.
  </Card>
</Columns>

## start here

<Columns cols={3}>
  <Card title="Create" href="/introduction/create">
    Spin up a browser and pick the shape — headless, stealth, GPU, profiles.
  </Card>

  <Card title="Control" href="/introduction/control">
    Drive it with computer use, playwright execution, CDP, or WebDriver BiDi.
  </Card>

  <Card title="Observe" href="/introduction/observe">
    Watch it live, record replays, and capture screenshots.
  </Card>
</Columns>

<div className="tinker-box">
  <h3 style={{ margin: 0, fontSize: '1.5rem', fontWeight: 600 }}>fast setup</h3>

  <div className="tinker-box-row">
    <div style={{ flexShrink: 0 }}>
      <img src="https://mintlify.s3.us-west-1.amazonaws.com/tbd-6fc993ce-hypeship-intro-app-platform/images/tinker-bot.svg" alt="" className="block dark:hidden" style={{ width: '146px', height: 'auto' }} />

      <img src="https://mintlify.s3.us-west-1.amazonaws.com/tbd-6fc993ce-hypeship-intro-app-platform/images/tinker-bot-dark.svg" alt="" className="hidden dark:block" style={{ width: '146px', height: 'auto' }} />
    </div>

    <div className="tinker-box-content">
      <p style={{ margin: 0, fontSize: '0.9375rem', lineHeight: 1.6, opacity: 0.8 }}>
        copy and paste this into your AI coding agent (Cursor, Claude, Windsurf, etc.). it installs the Kernel CLI and skills, authenticates you, and opens a live browser session that you or your agent can interact with.
      </p>

      <div>
        <CopyPromptButton />
      </div>
    </div>
  </div>
</div>

## App Platform

Our [app platform](/apps/develop) is a serverless compute service for running agent loops triggered on demand or by scheduled events without having to provision or manage sandboxes. Your agent runs co-located with its browser to minimize network latency.

Scaffold a project from a template:

```bash theme={null}
kernel create --template computer-use
```

Deploy and invoke it on demand:

```bash theme={null}
kernel deploy agent.ts
kernel invoke my-agent my-task --payload '{"url": "https://example.com"}'
```

### scaling

once you're ready to scale, check out how to create a [pool of reserved browsers](/browsers/pools/overview).
