/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ const sidebars = { mainSidebar: [ 'index', // ========================================== // DIATAXIS STRUCTURE (Autogenerated) // Just drop files in folders - sidebar updates automatically // Use _category_.json in folders to control labels/order // Use sidebar_position in frontmatter to order files // ========================================== { type: 'category', label: 'Tutorials', collapsed: false, link: { type: 'doc', id: 'tutorials/index' }, items: [{ type: 'autogenerated', dirName: 'tutorials' }], }, { type: 'category', label: 'How-To Guides', collapsed: false, link: { type: 'doc', id: 'how-to/index' }, items: [{ type: 'autogenerated', dirName: 'how-to' }], }, { type: 'category', label: 'Explanation', collapsed: false, link: { type: 'doc', id: 'explanation/index' }, items: [{ type: 'autogenerated', dirName: 'explanation' }], }, { type: 'category', label: 'Reference', collapsed: false, link: { type: 'doc', id: 'reference/index' }, items: [{ type: 'autogenerated', dirName: 'reference' }], }, // ========================================== // LEGACY STRUCTURE (Being Migrated) // Remove sections as they become empty // ========================================== { type: 'html', value: '
Legacy to be migrated
', }, { type: 'category', label: 'Core Concepts', collapsed: true, items: [{ type: 'autogenerated', dirName: 'bmad-core-concepts' }], }, { type: 'category', label: 'Modules', collapsed: true, items: [{ type: 'autogenerated', dirName: 'modules' }], }, ], }; export default sidebars;