What's New
AI-Friendly Documentation
Access Basic Memory docs as clean markdown for AI agents using llms.txt and content negotiation.
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
Access Methods
| 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 |
Quick Examples
# 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-memory

