LLM docs
To learn how to create one-shot components with AI, visit the AI-powered component creation page
The LLM text format presents documentation in a clean, plain text format optimized for large language models (LLMs) like Claude, ChatGPT, and others.
llms.txt
The llms.txt
format is a structured index of documentation pages organized by sections, including page titles, URLs and descriptions. This format is ideal for AI assistants to understand the documentation structure without processing the full content.
https://docs.wavs.xyz/llms.txt
curl https://docs.wavs.xyz/llms.txt
llms-full.txt
The llms-full.txt
format returns all documentation pages as a single text document.
https://docs.wavs.xyz/llms-full.txt
curl https://docs.wavs.xyz/llms-full.txt
Markdown Format
Get any page as standard Markdown by appending .md
to its URL.
curl https://docs.wavs.xyz/path/to/page.md
Examples:
/overview.md
- Overview page as Markdown/tutorial/1-overview.md
- Tutorial introduction as Markdown/handbook/service.md
- Service handbook as Markdown
WAVS foundry template
An llm-ingestible full markdown version of the WAVS foundry template is available at https://docs.wavs.xyz/wavs-foundry-template.md.
curl https://docs.wavs.xyz/wavs-foundry-template.md
WAVS-WASI-utils crate docs
An llm-ingestible full markdown version of the WAVS-WASI-Utils docs is available at https://docs.wavs.xyz/wavs-wasi-utils.md.
curl https://docs.wavs.xyz/wavs-wasi-utils.md
Search API
Search the documentation programmatically using the search API endpoint.
curl "https://docs.wavs.xyz/api/search-custom?q=your_query"
Examples:
- Search for "component":
https://docs.wavs.xyz/api/search-custom?q=component
The search API returns JSON results with page titles, URLs, and content snippets.