Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,10 @@ export default defineConfig({
// widely consumed by AI agents.
starlightLlmsTxt({
projectName: 'Warp',
// Excludes open-source-licenses from llms-full.txt and llms-small.txt.
// The file is ~25k lines and causes a stack overflow in hast-util-to-text.
// llms-custom sets exclude it separately via explicit path enumeration below.
exclude: ['support-and-community/community/open-source-licenses'],
description:
'Documentation for Warp, the agentic development environment, and Oz, Warp\'s programmable agent for running and coordinating agents at scale.',
customSets: [
Expand All @@ -149,7 +153,9 @@ export default defineConfig({
{ label: 'Getting Started', description: 'Installation, quickstart, and migration guides.', paths: ['getting-started/**'] },
{ label: 'Knowledge and Collaboration', description: 'Warp Drive, teams, and the Admin Panel.', paths: ['knowledge-and-collaboration/**'] },
{ label: 'Reference', description: 'CLI and API reference.', paths: ['reference/**'] },
{ label: 'Support', description: 'Troubleshooting, billing, and privacy.', paths: ['support-and-community/**'] },
// Excludes support-and-community/community/ — open-source-licenses.mdx is ~25k
// lines and causes a stack overflow in hast-util-to-text during llms-txt generation.
{ label: 'Support', description: 'Troubleshooting, billing, and privacy.', paths: ['support-and-community/index', 'support-and-community/plans-and-billing/**', 'support-and-community/privacy-and-security/**', 'support-and-community/troubleshooting-and-support/**'] },
{ label: 'Guides (Warp University)', description: 'Task-oriented walkthroughs.', paths: ['university/**'] },
],
}),
Expand Down
Loading
Loading