Skip to content
English | δΈ­ζ–‡

Agent Experience Guide

How to make your service, application, or tool great for AI agents.

AX

Agent Experience Guide

Key Concepts
DiscoveryIdentityAuthIntegrationErrorsArchitecture
Actions

The web was built for humans. Every button, form, and navigation menu assumes a person with eyes and hands. But the fastest-growing user base isn't human β€” it's AI agents. Every website already has an agent experience. The question is whether it's good or bad.

Just as UX taught us to design for users, and DX taught us to design for developers, AX (Agent Experience) is the discipline of designing for AI agents β€” software that browses sites, calls APIs, reads docs, and completes tasks on behalf of people. This guide is a practical, open-source handbook on how to do it well.

Why This Guide Exists

This guide tells you how to get there β€” concrete, actionable steps with code examples, patterns, and anti-patterns.

The Six Stages

  1. Discovery β€” Can agents find you?
  2. Identity β€” Do agents understand what you do?
  3. Auth & Access β€” Can agents authenticate and act?
  4. Integration β€” Is the plumbing there?
  5. Errors & Recovery β€” Can agents self-heal?
  6. End-User Experience β€” Can humans interact through agents?

Quick Start

  1. Add /llms.txt to your site root describing what your site does.
  2. Return typed errors with retry guidance from every API endpoint.
  3. Let agents authenticate with scoped API tokens instead of browser-only OAuth.

β†’ Start reading