{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-learn/ai-for-docs/sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"redocly_category":"Learn","type":"markdown"},"seo":{"title":"Use AI to review your docs navigation structure","description":"How to paste a sitemap or folder tree for AI review, which navigation mistakes models flag for new readers, and how Reunite visual pull request review validates a restructure before publish.","siteUrl":"https://redocly.com","image":"/assets/redocly-card.f670aae34a39545a5ea633a540cb3a4a333a1f23bb2ed3c4a1b17a5fbcf0ac85.db81178d.png","lang":"en-US","llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"use-ai-to-review-your-docs-navigation-structure","__idx":0},"children":["Use AI to review your docs navigation structure"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Readers decide whether your API is approachable before they read a single endpoint description. They scan the sidebar, search for authentication, and bail when errors live three levels deep under a label that sounds unrelated. A large language model cannot replace analytics, but it can read your folder tree or ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["sidebars.yaml"]}," outline and flag patterns that confuse first-time integrators."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This article shows what to paste into a navigation review, the problems that show up repeatedly, a before-and-after tree you can adapt from ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://redocly.com/learn/ai-for-docs/ai-reviews"},"children":["Use AI to accelerate and improve reviews"]},", and how to validate the restructure in ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://redocly.com/reunite"},"children":["Reunite"]}," before you merge."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"what-to-share-with-the-model","__idx":1},"children":["What to share with the model"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Paste the structure readers actually see, not an internal wiki map. That usually means a folder tree from your docs repo, the ordered list from ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://redocly.com/docs/realm/navigation/sidebars"},"children":["Sidebars configuration options"]},", or an export of your published sidebar labels."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add a short persona block: who arrives cold this week, what they need to accomplish in the first session, and which pages you consider prerequisites. Without tasks, the model defaults to generic \"logical grouping\" advice."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Note whether navigation is file-driven or explicit. ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://redocly.com/docs/realm/navigation/navigation"},"children":["Navigation in Realm"]}," explains that missing ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["sidebars.yaml"]}," often means order follows the file tree, which may not match how you want newcomers to read."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"prompt-template-for-a-navigation-review","__idx":2},"children":["Prompt template for a navigation review"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Keep the prompt checklist-shaped so output is actionable in a restructuring PR."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"markdown","header":{"controls":{"copy":{}}},"source":"You are reviewing documentation navigation for a first-time API integrator.\n\nTasks they must complete in order:\n1. Create an account and obtain API credentials\n2. Authenticate and make a first successful request\n3. Handle common errors and rate limits\n4. Subscribe to webhooks for order updates\n\nReview the pasted folder tree and answer:\n1. Which tasks are hard to discover from the sidebar alone?\n2. Which sections are too deep (more than two clicks from a sensible entry point)?\n3. Which topics are split across unrelated top-level groups?\n4. Propose a revised tree with one-line justification per move.\n5. List assumptions about reader skill level.\n","lang":"markdown"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Ask for a table of moves rather than a full rewrite of every filename so authors can apply changes incrementally."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"problems-ai-often-flags-for-new-readers","__idx":3},"children":["Problems AI often flags for new readers"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Authentication buried under advanced guides is the classic miss. Integrators expect auth beside getting started, not under a catch-all reference folder they open only after a failed curl."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Error and rate-limit content separated from the operations that trigger those responses forces readers to context-switch. Models often suggest moving error catalogs adjacent to API reference or linking them prominently from getting started."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Examples orphaned at the root while conceptual guides sit elsewhere make tutorials feel optional when they are the real on-ramp. Webhooks promoted to top level without a prerequisite auth page strand readers who land from search."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Orphan pages with no parent group show up when teams add files faster than they update ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://redocly.com/docs/realm/navigation/sidebars"},"children":["Sidebars configuration options"]},". Ask the model to list files that appear disconnected from any stated task flow."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"before-and-after-a-flat-top-level-layout","__idx":4},"children":["Before and after a flat top-level layout"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The learn article on reviews uses a flat tree where foundational topics compete with reference material:"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["docs/"," ","├── getting-started/"," ","├── api-reference/"," ","├── webhooks/"," ","├── authentication/"," ","├── rate-limiting/"," ","├── errors/"," ","└── examples/"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\nA tighter shape for the same content groups onboarding, nests errors with reference, and tuck examples under guides:\n\ndocs/\n├── getting-started/\n│   ├── authentication.md\n│   ├── first-api-call.md\n│   └── rate-limits.md\n├── api-reference/\n│   ├── endpoints/\n│   └── errors.md\n├── guides/\n│   ├── webhooks.md\n│   └── examples/\n└── advanced/\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The moves are explainable in reader terms. Authentication and rate limits belong with first steps. Errors are reference material readers consult from operation pages. Examples are guides, not a peer of the API catalog."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Your product names differ, but the pattern repeats: pull prerequisites up, push deep reference down, and reduce top-level siblings."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"validate-the-restructure-in-reunite-before-publish","__idx":5},"children":["Validate the restructure in Reunite before publish"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["AI proposes moves. Humans still need to see rendered navigation with real labels and cross-links. Edit ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["sidebars.yaml"]}," or move files in the ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://redocly.com/docs/realm/reunite/project/use-editor"},"children":["use the editor"]}," flow, open a pull request, and ask reviewers to use ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://redocly.com/docs/realm/reunite/project/pull-request/review-pull-request"},"children":["review a pull request in Reunite"]},"."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The Review tab opens in Visual view by default, showing rendered pages before and after your changes. That is the right place to confirm a moved auth page still reads well in context and that examples under guides did not break sidebar depth."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Toggle to Code when you need to verify ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["sidebars.yaml"]}," ordering line by line. Filter the file tree on large PRs so reviewers can focus on navigation files first."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Treat the visual diff as the acceptance test for the AI plan. If the sidebar still hides credentials behind three clicks in the preview, reject the merge even when the folder tree looks tidy in Git."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"what-ai-cannot-infer-about-your-audience","__idx":6},"children":["What AI cannot infer about your audience"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Models do not see search console data, support ticket tags, or which pages your sales team demos most. They may over-weight alphabetical order or symmetry when your readers arrive from one high-intent landing page."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["They also cannot know internal politics about which product name must appear in a top-level label. Use AI for reader-task fit; use stakeholders for naming commitments."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"best-practices","__idx":7},"children":["Best practices"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Paste the same sidebar order production uses, including hidden or draft sections you plan to publish soon."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["List five to eight first-week tasks explicitly so the model judges discoverability against work, not aesthetics."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Apply navigation changes in a dedicated PR with only IA edits when possible so visual review stays focused."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Re-run the prompt after major feature launches because new guides often land as orphan files."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"what-this-approach-cannot-replace","__idx":8},"children":["What this approach cannot replace"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This approach cannot replace quantitative path analysis, card-sort studies with real users, or accessibility review of navigation landmarks. It speeds structural critique before you invest in a full rework."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"how-the-pieces-fit-together","__idx":9},"children":["How the pieces fit together"]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"graph LR\n  T[Folder tree or sidebars.yaml] --> A[AI navigation report]\n  A --> E[Edit structure in Reunite]\n  E --> V[Visual PR review]\n  V --> M[Merge and deploy]\n","diagramHtml":"<svg id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" class=\"flowchart\" style=\"max-width: 1297.453125px;\" viewBox=\"0 0 1297.453125 94\" role=\"graphics-document document\" aria-roledescription=\"flowchart-v2\"><style>#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .error-icon{fill:#552222;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .error-text{fill:#552222;stroke:#552222;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edge-thickness-normal{stroke-width:1px;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edge-thickness-thick{stroke-width:3.5px;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edge-pattern-solid{stroke-dasharray:0;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .marker{fill:#333333;stroke:#333333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .marker.cross{stroke:#333333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 p{margin:0;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .label{font-family:\"Redocly Mermaid Sans\",sans-serif;color:#333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .cluster-label text{fill:#333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .cluster-label span{color:#333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .cluster-label span p{background-color:transparent;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .label text,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 span{fill:#333;color:#333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node rect,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node circle,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node ellipse,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node polygon,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .rough-node .label text,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node .label text,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .image-shape .label,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .icon-shape .label{text-anchor:middle;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .rough-node .label,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node .label,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .image-shape .label,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .icon-shape .label{text-align:center;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node.clickable{cursor:pointer;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .root .anchor path{fill:#333333!important;stroke-width:0;stroke:#333333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .arrowheadPath{fill:#333333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edgePath .path{stroke:#333333;stroke-width:1px;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .flowchart-link{stroke:#333333;fill:none;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edgeLabel{background-color:rgba(232,232,232, 0.8);text-align:center;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edgeLabel p{background-color:rgba(232,232,232, 0.8);}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .edgeLabel rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .labelBkg{background-color:rgba(232, 232, 232, 0.5);}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .cluster text{fill:#333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .cluster span{color:#333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#333;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 rect.text{fill:none;stroke-width:0;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .icon-shape,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .image-shape{background-color:rgba(232,232,232, 0.8);text-align:center;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .icon-shape p,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .image-shape p{background-color:rgba(232,232,232, 0.8);padding:2px;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .icon-shape .label rect,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .image-shape .label rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 .node .neo-node{stroke:#9370DB;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 [data-look=\"neo\"].node rect,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 [data-look=\"neo\"].cluster rect,#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 [data-look=\"neo\"].node polygon{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 [data-look=\"neo\"].node path{stroke:#9370DB;stroke-width:1px;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 [data-look=\"neo\"].node .outer-path{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 [data-look=\"neo\"].node .neo-line path{stroke:#9370DB;filter:none;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 [data-look=\"neo\"].node circle{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 [data-look=\"neo\"].icon-shape .icon{fill:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-pointEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 0 L 10 5 L 0 10 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-pointStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"4.5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 5 L 10 10 L 10 0 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-pointEnd-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 11.5 14\" refX=\"11.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"10.5\" markerHeight=\"14\" orient=\"auto\"><path d=\"M 0 0 L 11.5 7 L 0 14 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-pointStart-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 11.5 14\" refX=\"1\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11.5\" markerHeight=\"14\" orient=\"auto\"><polygon points=\"0,7 11.5,14 11.5,0\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></polygon></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-circleEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"11\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-circleStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-1\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-circleEnd-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refY=\"5\" refX=\"12.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"14\" markerHeight=\"14\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-circleStart-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-2\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"14\" markerHeight=\"14\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-crossEnd\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"12\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-crossStart\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"-1\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-crossEnd-margin\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 15 15\" refX=\"17.7\" refY=\"7.5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto\"><path d=\"M 1,1 L 14,14 M 1,14 L 14,1\" class=\"arrowMarkerPath\" style=\"stroke-width: 2.5;\"></path></marker><marker id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-crossStart-margin\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 15 15\" refX=\"-3.5\" refY=\"7.5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto\"><path d=\"M 1,1 L 14,14 M 1,14 L 14,1\" class=\"arrowMarkerPath\" style=\"stroke-width: 2.5; stroke-dasharray: 1, 0;\"></path></marker><g class=\"root\"><g class=\"clusters\"></g><g class=\"edgePaths\"><path d=\"M268,47L272.167,47C276.333,47,284.667,47,292.333,47C300,47,307,47,310.5,47L314,47\" id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-L_T_A_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_T_A_0\" data-points=\"W3sieCI6MjY4LCJ5Ijo0N30seyJ4IjoyOTMsInkiOjQ3fSx7IngiOjMxOCwieSI6NDd9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-pointEnd)\"></path><path d=\"M525.359,47L529.526,47C533.693,47,542.026,47,549.693,47C557.359,47,564.359,47,567.859,47L571.359,47\" id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-L_A_E_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_A_E_0\" data-points=\"W3sieCI6NTI1LjM1OTM3NSwieSI6NDd9LHsieCI6NTUwLjM1OTM3NSwieSI6NDd9LHsieCI6NTc1LjM1OTM3NSwieSI6NDd9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-pointEnd)\"></path><path d=\"M815.188,47L819.354,47C823.521,47,831.854,47,839.521,47C847.188,47,854.188,47,857.688,47L861.188,47\" id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-L_E_V_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E_V_0\" data-points=\"W3sieCI6ODE1LjE4NzUsInkiOjQ3fSx7IngiOjg0MC4xODc1LCJ5Ijo0N30seyJ4Ijo4NjUuMTg3NSwieSI6NDd9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-pointEnd)\"></path><path d=\"M1045.031,47L1049.198,47C1053.365,47,1061.698,47,1069.365,47C1077.031,47,1084.031,47,1087.531,47L1091.031,47\" id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-L_V_M_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_V_M_0\" data-points=\"W3sieCI6MTA0NS4wMzEyNSwieSI6NDd9LHsieCI6MTA3MC4wMzEyNSwieSI6NDd9LHsieCI6MTA5NS4wMzEyNSwieSI6NDd9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256_flowchart-v2-pointEnd)\"></path></g><g class=\"edgeLabels\"><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_T_A_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_A_E_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_E_V_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_V_M_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g></g><g class=\"nodes\"><g class=\"node default\" id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-flowchart-T-0\" data-look=\"classic\" transform=\"translate(138, 47)\"><rect class=\"basic label-container\" style=\"\" x=\"-130\" y=\"-39\" width=\"260\" height=\"78\"></rect><g class=\"label\" style=\"\" transform=\"translate(-100, -24)\"><rect></rect><foreignObject width=\"200\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\"><span class=\"nodeLabel\"><p>Folder tree or sidebars.yaml</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-flowchart-A-1\" data-look=\"classic\" transform=\"translate(421.6796875, 47)\"><rect class=\"basic label-container\" style=\"\" x=\"-103.6796875\" y=\"-27\" width=\"207.359375\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-73.6796875, -12)\"><rect></rect><foreignObject width=\"147.359375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>AI navigation report</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-flowchart-E-3\" data-look=\"classic\" transform=\"translate(695.2734375, 47)\"><rect class=\"basic label-container\" style=\"\" x=\"-119.9140625\" y=\"-27\" width=\"239.828125\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-89.9140625, -12)\"><rect></rect><foreignObject width=\"179.828125\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Edit structure in Reunite</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-flowchart-V-5\" data-look=\"classic\" transform=\"translate(955.109375, 47)\"><rect class=\"basic label-container\" style=\"\" x=\"-89.921875\" y=\"-27\" width=\"179.84375\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-59.921875, -12)\"><rect></rect><foreignObject width=\"119.84375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Visual PR review</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-flowchart-M-7\" data-look=\"classic\" transform=\"translate(1192.2421875, 47)\"><rect class=\"basic label-container\" style=\"\" x=\"-97.2109375\" y=\"-27\" width=\"194.421875\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-67.2109375, -12)\"><rect></rect><foreignObject width=\"134.421875\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Merge and deploy</p></span></div></foreignObject></g></g></g></g></g><defs><filter id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-drop-shadow\" height=\"130%\" width=\"130%\"><feDropShadow dx=\"4\" dy=\"4\" stdDeviation=\"0\" flood-opacity=\"0.06\" flood-color=\"#000000\"></feDropShadow></filter></defs><defs><filter id=\"diagram-2fecff985d0fbaa7c2a3094f3f717cd68e50a0ec868331302c06c908eee3a256-drop-shadow-small\" height=\"150%\" width=\"150%\"><feDropShadow dx=\"2\" dy=\"2\" stdDeviation=\"0\" flood-opacity=\"0.06\" flood-color=\"#000000\"></feDropShadow></filter></defs></svg>","diagramHtmlDark":"<svg id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" class=\"flowchart\" style=\"max-width: 1297.453125px;\" viewBox=\"0 0 1297.453125 94\" role=\"graphics-document document\" aria-roledescription=\"flowchart-v2\"><style>#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .error-icon{fill:#a44141;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .error-text{fill:#ddd;stroke:#ddd;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edge-thickness-normal{stroke-width:1px;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edge-thickness-thick{stroke-width:3.5px;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edge-pattern-solid{stroke-dasharray:0;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edge-pattern-dashed{stroke-dasharray:3;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edge-pattern-dotted{stroke-dasharray:2;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .marker{fill:lightgrey;stroke:lightgrey;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .marker.cross{stroke:lightgrey;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be p{margin:0;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .label{font-family:\"Redocly Mermaid Sans\",sans-serif;color:#ccc;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .cluster-label text{fill:#F9FFFE;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .cluster-label span{color:#F9FFFE;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .cluster-label span p{background-color:transparent;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .label text,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be span{fill:#ccc;color:#ccc;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node rect,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node circle,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node ellipse,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node polygon,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node path{fill:#1f2020;stroke:#ccc;stroke-width:1px;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .rough-node .label text,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node .label text,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .image-shape .label,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .icon-shape .label{text-anchor:middle;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .rough-node .label,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node .label,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .image-shape .label,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .icon-shape .label{text-align:center;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node.clickable{cursor:pointer;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .root .anchor path{fill:lightgrey!important;stroke-width:0;stroke:lightgrey;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .arrowheadPath{fill:lightgrey;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edgePath .path{stroke:lightgrey;stroke-width:1px;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .flowchart-link{stroke:lightgrey;fill:none;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edgeLabel{background-color:hsl(0, 0%, 34.4117647059%);text-align:center;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edgeLabel p{background-color:hsl(0, 0%, 34.4117647059%);}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .edgeLabel rect{opacity:0.5;background-color:hsl(0, 0%, 34.4117647059%);fill:hsl(0, 0%, 34.4117647059%);}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .labelBkg{background-color:rgba(87.75, 87.75, 87.75, 0.5);}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .cluster rect{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:rgba(255, 255, 255, 0.25);stroke-width:1px;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .cluster text{fill:#F9FFFE;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .cluster span{color:#F9FFFE;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:12px;background:hsl(20, 1.5873015873%, 12.3529411765%);border:1px solid rgba(255, 255, 255, 0.25);border-radius:2px;pointer-events:none;z-index:100;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#ccc;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be rect.text{fill:none;stroke-width:0;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .icon-shape,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .image-shape{background-color:hsl(0, 0%, 34.4117647059%);text-align:center;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .icon-shape p,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .image-shape p{background-color:hsl(0, 0%, 34.4117647059%);padding:2px;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .icon-shape .label rect,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .image-shape .label rect{opacity:0.5;background-color:hsl(0, 0%, 34.4117647059%);fill:hsl(0, 0%, 34.4117647059%);}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be .node .neo-node{stroke:#ccc;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be [data-look=\"neo\"].node rect,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be [data-look=\"neo\"].cluster rect,#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be [data-look=\"neo\"].node polygon{stroke:url(#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be [data-look=\"neo\"].node path{stroke:url(#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-gradient);stroke-width:1px;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be [data-look=\"neo\"].node .neo-line path{stroke:#ccc;filter:none;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be [data-look=\"neo\"].node circle{stroke:url(#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-pointEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 0 L 10 5 L 0 10 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-pointStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"4.5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 5 L 10 10 L 10 0 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-pointEnd-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 11.5 14\" refX=\"11.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"10.5\" markerHeight=\"14\" orient=\"auto\"><path d=\"M 0 0 L 11.5 7 L 0 14 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-pointStart-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 11.5 14\" refX=\"1\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11.5\" markerHeight=\"14\" orient=\"auto\"><polygon points=\"0,7 11.5,14 11.5,0\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></polygon></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-circleEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"11\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-circleStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-1\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-circleEnd-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refY=\"5\" refX=\"12.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"14\" markerHeight=\"14\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-circleStart-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-2\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"14\" markerHeight=\"14\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-crossEnd\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"12\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-crossStart\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"-1\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-crossEnd-margin\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 15 15\" refX=\"17.7\" refY=\"7.5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto\"><path d=\"M 1,1 L 14,14 M 1,14 L 14,1\" class=\"arrowMarkerPath\" style=\"stroke-width: 2.5;\"></path></marker><marker id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-crossStart-margin\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 15 15\" refX=\"-3.5\" refY=\"7.5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto\"><path d=\"M 1,1 L 14,14 M 1,14 L 14,1\" class=\"arrowMarkerPath\" style=\"stroke-width: 2.5; stroke-dasharray: 1, 0;\"></path></marker><g class=\"root\"><g class=\"clusters\"></g><g class=\"edgePaths\"><path d=\"M268,47L272.167,47C276.333,47,284.667,47,292.333,47C300,47,307,47,310.5,47L314,47\" id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-L_T_A_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_T_A_0\" data-points=\"W3sieCI6MjY4LCJ5Ijo0N30seyJ4IjoyOTMsInkiOjQ3fSx7IngiOjMxOCwieSI6NDd9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-pointEnd)\"></path><path d=\"M525.359,47L529.526,47C533.693,47,542.026,47,549.693,47C557.359,47,564.359,47,567.859,47L571.359,47\" id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-L_A_E_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_A_E_0\" data-points=\"W3sieCI6NTI1LjM1OTM3NSwieSI6NDd9LHsieCI6NTUwLjM1OTM3NSwieSI6NDd9LHsieCI6NTc1LjM1OTM3NSwieSI6NDd9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-pointEnd)\"></path><path d=\"M815.188,47L819.354,47C823.521,47,831.854,47,839.521,47C847.188,47,854.188,47,857.688,47L861.188,47\" id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-L_E_V_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E_V_0\" data-points=\"W3sieCI6ODE1LjE4NzUsInkiOjQ3fSx7IngiOjg0MC4xODc1LCJ5Ijo0N30seyJ4Ijo4NjUuMTg3NSwieSI6NDd9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-pointEnd)\"></path><path d=\"M1045.031,47L1049.198,47C1053.365,47,1061.698,47,1069.365,47C1077.031,47,1084.031,47,1087.531,47L1091.031,47\" id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-L_V_M_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_V_M_0\" data-points=\"W3sieCI6MTA0NS4wMzEyNSwieSI6NDd9LHsieCI6MTA3MC4wMzEyNSwieSI6NDd9LHsieCI6MTA5NS4wMzEyNSwieSI6NDd9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be_flowchart-v2-pointEnd)\"></path></g><g class=\"edgeLabels\"><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_T_A_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_A_E_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_E_V_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_V_M_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g></g><g class=\"nodes\"><g class=\"node default\" id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-flowchart-T-0\" data-look=\"classic\" transform=\"translate(138, 47)\"><rect class=\"basic label-container\" style=\"\" x=\"-130\" y=\"-39\" width=\"260\" height=\"78\"></rect><g class=\"label\" style=\"\" transform=\"translate(-100, -24)\"><rect></rect><foreignObject width=\"200\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\"><span class=\"nodeLabel\"><p>Folder tree or sidebars.yaml</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-flowchart-A-1\" data-look=\"classic\" transform=\"translate(421.6796875, 47)\"><rect class=\"basic label-container\" style=\"\" x=\"-103.6796875\" y=\"-27\" width=\"207.359375\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-73.6796875, -12)\"><rect></rect><foreignObject width=\"147.359375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>AI navigation report</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-flowchart-E-3\" data-look=\"classic\" transform=\"translate(695.2734375, 47)\"><rect class=\"basic label-container\" style=\"\" x=\"-119.9140625\" y=\"-27\" width=\"239.828125\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-89.9140625, -12)\"><rect></rect><foreignObject width=\"179.828125\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Edit structure in Reunite</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-flowchart-V-5\" data-look=\"classic\" transform=\"translate(955.109375, 47)\"><rect class=\"basic label-container\" style=\"\" x=\"-89.921875\" y=\"-27\" width=\"179.84375\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-59.921875, -12)\"><rect></rect><foreignObject width=\"119.84375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Visual PR review</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-flowchart-M-7\" data-look=\"classic\" transform=\"translate(1192.2421875, 47)\"><rect class=\"basic label-container\" style=\"\" x=\"-97.2109375\" y=\"-27\" width=\"194.421875\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-67.2109375, -12)\"><rect></rect><foreignObject width=\"134.421875\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Merge and deploy</p></span></div></foreignObject></g></g></g></g></g><defs><filter id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-drop-shadow\" height=\"130%\" width=\"130%\"><feDropShadow dx=\"4\" dy=\"4\" stdDeviation=\"0\" flood-opacity=\"0.06\" flood-color=\"#FFFFFF\"></feDropShadow></filter></defs><defs><filter id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-drop-shadow-small\" height=\"150%\" width=\"150%\"><feDropShadow dx=\"2\" dy=\"2\" stdDeviation=\"0\" flood-opacity=\"0.06\" flood-color=\"#FFFFFF\"></feDropShadow></filter></defs><linearGradient id=\"diagram-f9eac4cbeed3556061851c058bdd0a8d6d9625adc6933de5636d01973ece27be-gradient\" gradientUnits=\"objectBoundingBox\" x1=\"0%\" y1=\"0%\" x2=\"100%\" y2=\"0%\"><stop offset=\"0%\" stop-color=\"#cccccc\" stop-opacity=\"1\"></stop><stop offset=\"100%\" stop-color=\"hsl(180, 0%, 18.3529411765%)\" stop-opacity=\"1\"></stop></linearGradient></svg>"},"children":["graph LR\n  T[Folder tree or sidebars.yaml] --> A[AI navigation report]\n  A --> E[Edit structure in Reunite]\n  E --> V[Visual PR review]\n  V --> M[Merge and deploy]\n"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The model narrows which moves are worth trying; Reunite visual review proves the sidebar works for humans."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"learn-more","__idx":10},"children":["Learn more"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When you want Git-backed editing, pull request review, and side-by-side visual diffs on navigation changes, start with ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://redocly.com/reunite"},"children":["Reunite"]}," and the ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://redocly.com/docs/realm/reunite/reunite"},"children":["Reunite documentation"]}," hub for editor and review workflows."]}]},"headings":[{"value":"Use AI to review your docs navigation structure","id":"use-ai-to-review-your-docs-navigation-structure","depth":1},{"value":"What to share with the model","id":"what-to-share-with-the-model","depth":2},{"value":"Prompt template for a navigation review","id":"prompt-template-for-a-navigation-review","depth":2},{"value":"Problems AI often flags for new readers","id":"problems-ai-often-flags-for-new-readers","depth":2},{"value":"Before and after a flat top-level layout","id":"before-and-after-a-flat-top-level-layout","depth":2},{"value":"Validate the restructure in Reunite before publish","id":"validate-the-restructure-in-reunite-before-publish","depth":2},{"value":"What AI cannot infer about your audience","id":"what-ai-cannot-infer-about-your-audience","depth":2},{"value":"Best practices","id":"best-practices","depth":2},{"value":"What this approach cannot replace","id":"what-this-approach-cannot-replace","depth":2},{"value":"How the pieces fit together","id":"how-the-pieces-fit-together","depth":2},{"value":"Learn more","id":"learn-more","depth":2}],"frontmatter":{"seo":{"title":"Use AI to review your docs navigation structure","description":"How to paste a sitemap or folder tree for AI review, which navigation mistakes models flag for new readers, and how Reunite visual pull request review validates a restructure before publish."}},"lastModified":"2026-05-22T12:10:40.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/learn/ai-for-docs/ai-review-docs-navigation-structure","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}