The documentation site for Brainpod, published at docs.brainpod.io.
Built with Lume and the simple-wiki theme.
Requires Deno.
deno task serveThe site will be available at http://localhost:3000 with hot reload.
deno task buildOutput is written to ./_site.
src/: Published documentation and site assetssrc/resources/: Resource referencesrc/blueprints/: Blueprint guidessrc/_includes/: Theme template overrides and categorized sidebar navigationsrc/llms.page.ts: Generatedllms.txtandllms-full.txtendpoints.pi/skills/update-docs/: Documentation synchronization skill
Create a new .md file in the appropriate directory and add frontmatter:
---
order: 5 # Controls position in the sidebar
hide_menu: false
metas:
description: "Page description for search engines."
keywords: ["keyword one", "keyword two"]
---
# Page TitleAdd every published page to the appropriate group in src/_includes/templates/menu.vto. Resource and blueprint pages use collapsible groups in the sidebar.
The build publishes two text endpoints:
/llms.txt: A concise, categorized index of the documentation/llms-full.txt: The complete documentation corpus in one text file
Both files are generated from published Markdown by src/llms.page.ts. Do not edit files in _site/.
Use the project skill when synchronizing documentation with the platform, CLI, or public API:
/skill:update-docs
The skill treats ../brainpod, ../cli, and the public OpenAPI contract as authoritative sources and documents its verification requirements.