Introduction
What is LongtermWiki?
Section titled “What is LongtermWiki?”LongtermWiki is a monorepo framework for building LLM-assisted knowledge bases. It provides:
- Shared UI components (
@cairn/ui) - Graph visualizations, shadcn/ui components - Shared design tokens (
@cairn/tailwind) - Consistent theming across sites - Site templates - Astro + Starlight configurations
Monorepo Structure
Section titled “Monorepo Structure”cairn/├── apps/│ ├── longterm/ # AI safety knowledge base│ └── meta/ # This documentation site├── packages/│ ├── ui/ # @cairn/ui - shared components│ └── tailwind/ # @cairn/tailwind - shared theme└── pnpm-workspace.yamlQuick Start
Section titled “Quick Start”# Clone the repogit clone https://github.com/quantified-uncertainty/cairn
# Install dependenciespnpm install
# Run the meta docspnpm --filter meta dev