Agents
Use llms.txt, llms-full.txt, MCP, and registry JSON from AI coding agents.
Agents
VLLNT UI exposes agent-readable surfaces so coding agents can discover components, inspect install contracts, and cite current documentation without scraping the rendered site.
llms.txt
Use /llms.txt for a compact overview of the registry. It includes install guidance, core docs links, and component links grouped by category.
https://ui.vllnt.ai/llms.txtllms-full.txt
Use /llms-full.txt when the agent needs one larger text context. It includes the main docs pages and component metadata summaries.
https://ui.vllnt.ai/llms-full.txtRegistry JSON
Use /r/registry.json for discovery and /r/<name>.json for exact install descriptors. JSON is the most reliable source for file paths, dependencies, and registry dependencies.
MCP
The /mcp route is reserved for agent workflows that need a structured protocol endpoint. Treat registry JSON as the canonical install contract and MCP as an integration surface.
Safe agent workflow
- Fetch
/llms.txtfor orientation. - Fetch
/r/registry.jsonto choose components. - Fetch individual
/r/<name>.jsondescriptors before editing code. - Prefer package source over generated registry files when contributing upstream.
- Run the project gates before opening a PR.