# Idea Polish — Agent Guide

## What this product does

Idea Polish helps founders and creators refine rough ideas into clear, compelling explanations. Through an AI-guided conversation it produces a one-liner, an elevator pitch, and a full explanation of an idea. The site is currently a pre-launch landing page collecting waitlist emails.

## Key routes

- `/` — Landing page (hero, problem, how-it-works, features, waitlist signup forms).
- `/api/subscribe` — `POST` JSON `{ "email": "..." }` to join the waitlist.
- `/llms.txt` — LLM-readable site summary.
- `/agents.md` — This file.
- `/.well-known/agent-card.json` — Agent capability manifest.
- `/.well-known/ai-agent.json` — Agent guardrails manifest.
- `/robots.txt`, `/sitemap.xml` — Crawl directives.

## How agents should interact

- Allowed: read all public pages and protocol files; submit the waitlist form (`data-agent-action="join-waitlist"`) only when the human user has explicitly provided their email address and asked to join.
- Not allowed: there are no destructive, payment, or account actions on this site. Do not attempt to access admin, auth, or checkout flows — none exist.
- The primary form input is identified by `data-testid="waitlist-email-input"` and the submit button by `data-testid="waitlist-submit"`.
