# Agents — Yes Machine Book

## What this product is

Yes Machine Book (https://yesmachinebook.com) is a practical playbook by Miguel for building automated sales systems: lead qualification, self-booking calendars, automated proposal generation, and follow-up sequences. The website is a single-page landing site whose only interactive flow is an email waitlist signup.

## Key routes

- `GET /` — Landing page (book overview, chapter list, waitlist signup form).
- `POST /api/subscribe` — Waitlist signup. JSON body: `{"email": "you@example.com"}`. Returns JSON.
- `GET /llms.txt` — LLM-readable site summary.
- `GET /agents.md` — This file.
- `GET /.well-known/agent-card.json` — Agent manifest (A2A-style).
- `GET /.well-known/ai-agent.json` — Guardrails for agents.
- `GET /sitemap.xml`, `GET /robots.txt` — Crawl metadata.

## How agents should interact

- Reading any public page is allowed and encouraged.
- The waitlist form on `/` (input `data-testid="waitlist-email-input"`, submit button `data-testid="waitlist-submit"`) may be submitted **only with a real email address explicitly provided by the user** for the purpose of joining the waitlist.
- There is no checkout, pricing, account, or login on this site. Do not attempt purchase, payment, or account-creation flows — none exist.
- Do not submit fabricated or bulk email addresses, and do not submit the form more than once per user request.
- There is no public API beyond `/api/subscribe`, and no authentication.
