Discover
Read the agent card and API catalog.

Autonomous-agent access
Agents can discover the site, read token-efficient representations, search the public persona catalog, compile deterministic prompts, inspect evidence, and follow public-safe .uai handoffs through explicit machine contracts.
Use public pages and documented stateless endpoints. Do not infer private data access, credential handling, account actions, publishing authority, or workflow execution. Last reviewed UTC: 2026-06-27T02:50:33Z.
Start with discovery metadata, then select the least complex representation or capability that satisfies the task.
Read the agent card and API catalog.
Use llms.txt, llms-full.txt, or a route's Markdown representation.
Call the documented API. Unsupported, ambiguous, private, or persistent operations must no-op.
Every entry point is public, stable within the release, and linked from the HTTP or document surface.
/.well-known/api-catalog in Linkset JSON/openapi.json and /api/openapi.yaml/robots.txt and /sitemap.xml/llms.txt and /llms-full.txt/AGENTS.md/.well-known/agent-card.json/.well-known/uaix-agent-access.json/agent-actions.jsonProject-defined or proposed formats are labeled as such and do not impersonate finalized standards.
Public reads are cacheable. Compilation is stateless, deterministic, bounded to 128 KiB per request with field-level limits, and never calls an external model.
GET /api/v1/personas/?q=research&limit=5
Accept: application/jsonReturns paginated catalog summaries and links.
GET /api/v1/personas/?id=technical-mentor&format=prompt
Accept: text/plainReturns a provider-ready prompt without browser execution.
GET /api/v1/random-persona/?seed=release-audit&goal=codingThe same release, filters, and seed select the same catalog record.
POST /api/v1/compile/
Content-Type: application/json
{
"prompt": "A direct senior software mentor who audits release architecture.",
"goal": "coding",
"styles": ["direct", "skeptical", "analytical"],
"initiative": 85
}Returns the prompt, fingerprint, and a compact public-safe .uai handoff set.
The human page and the agent surface share the same public facts and actions.
Native headings, links, buttons, labels, landmarks, keyboard paths, accessible names, and visible state.
Send Accept: text/markdown to a canonical public route or fetch the linked file under /agent-content/pages/.
Use JSON catalogs and OpenAPI before DOM automation. agent-actions.json maps visible actions to API fallbacks.
.uai memory with deep linksThe internal project memory remains blocked at /.uai/. A sanitized, read-only mirror exposes the agent-readiness contract without secrets or private operational state.
Each public memory file links to a precise documentation section, implementation report, validation evidence, OpenAPI operation, or archived research report.
Use the public evidence page, OpenAPI description, route inventory, and UAI index to verify current product claims. Historical research archives are not required active context for public agents.
Catalog reads, deterministic selection, prompt compilation, research provenance, health, and public memory reads.
Accounts, credentials, cloud saves, public publishing, private persona retrieval, external model execution, payments, or any persistent write. Do not infer these capabilities.