# Agents Guide — Start Close In

## What this product does

Start Close In is an AI guide that helps people find direction through guided conversation, reflection exercises, and simple prompts. It is designed for people who feel stuck and don't know what's next; it helps them identify one small, honest step forward rather than a grand plan. The website (startclosein.com) is a single-page landing site with an email waitlist.

## Key routes

- `/` — Landing page: product overview, sample guided conversation, how-it-walks, features, reflection prompts, and waitlist signup form.
- `/api/subscribe` — POST endpoint that adds an email address to the waitlist (JSON body: `{ "email": "..." }`).
- `/llms.txt` — LLM-readable summary of the product and site.
- `/.well-known/agent-card.json` — Agent manifest (A2A-style).
- `/.well-known/ai-agent.json` — Agent guardrails and interaction rules.
- `/sitemap.xml` — Sitemap.

## How agents should interact

- Reading and summarizing public page content is allowed.
- The only interactive flow is the waitlist form: an email input and a submit button. The submit button is tagged with `data-agent-action="join-waitlist"` and `data-testid="waitlist-submit"`; the email input has `data-testid="waitlist-email-input"`.
- Only submit the waitlist form with an email address the user has explicitly provided and asked you to submit.
- There are no purchase, payment, or account-deletion flows on this site.
- Do not attempt to access admin, API, or analytics endpoints beyond `POST /api/subscribe` on the user's behalf.
