Skip to content

Latest commit

 

History

History
58 lines (46 loc) · 1.61 KB

File metadata and controls

58 lines (46 loc) · 1.61 KB
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

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

Next Steps

:::card-group ::card

title: AI-Friendly Docs Reference icon: i-lucide-bot to: /reference/llms-txt

Full reference with usage patterns and code examples. ::

::card

title: llms.txt Specification icon: i-lucide-external-link to: https://llmstxt.org/

The open standard for AI-friendly documentation. :: :::