# Ship Already — Agent Guide

## What this product does

Ship Already is an AI-powered workspace that helps makers turn unfinished projects into launched products. It organizes projects around what needs to ship, keeps notes and todos in one place, and provides an AI cofounder that spots stalling and redirects you toward shipping. The site is currently a waitlist landing page.

## Key routes

- `GET /` — Landing page: product overview, features, and waitlist email capture.
- `POST /api/subscribe` — Waitlist signup. JSON body: `{ "email": "you@example.com" }`. Returns JSON; no auth required.
- `GET /llms.txt` — LLM-readable site summary.
- `GET /agents.md` — This file.
- `GET /.well-known/agent-card.json` — Agent manifest.
- `GET /.well-known/ai-agent.json` — Agent guardrails.
- `GET /sitemap.xml` — Sitemap.

## How agents should interact

- Reading any page content is allowed.
- The only write action available is joining the waitlist via `POST /api/subscribe` with a valid email address you have been explicitly given by the user. Do not submit emails the user has not provided.
- There is no login, pricing, checkout, or payment flow on this site.
- There are no destructive actions on this site.
- Interactive elements are tagged with `data-testid` and `data-agent-action` attributes for reliable automation.
