| title | AI-Friendly Documentation |
|---|---|
| description | Access Basic Memory docs as clean markdown for AI agents using llms.txt and content negotiation. |
::tip This documentation site supports the llms.txt specification — AI agents can fetch clean markdown directly, no HTML parsing required. See the full reference at Reference → AI-Friendly Documentation. ::
Ask your AI to read the docs and it just works:
Fetch https://docs.basicmemory.com/llms.txt and read the Basic Memory documentation
| Method | URL | What you get |
|---|---|---|
| Index | /llms.txt |
List of all pages with direct markdown links |
| Full docs | /llms-full.txt |
Complete documentation in one file |
| Raw markdown | /raw/<path>.md |
Any single page as markdown |
| Content negotiation | Any page + Accept: text/markdown |
Returns markdown instead of HTML |
# Get the full docs index
curl https://docs.basicmemory.com/llms.txt
# Fetch a specific page as markdown
curl https://docs.basicmemory.com/raw/start-here/what-is-basic-memory.md
# Content negotiation — same URL, markdown response
curl -H "Accept: text/markdown" https://docs.basicmemory.com/start-here/what-is-basic-memoryFull reference with usage patterns and code examples. ::
title: llms.txt Specification icon: i-lucide-external-link to: https://llmstxt.org/
The open standard for AI-friendly documentation. :: :::