From e8cd1d0464f6afce1fb6bfa24565348e6e31a098 Mon Sep 17 00:00:00 2001 From: forcetrainer Date: Sat, 3 Jan 2026 01:17:19 -0500 Subject: [PATCH] fix(docs): add category labels for sidebar folders MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add _category_.json files to control display labels and position for autogenerated sidebar categories. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- docs/explanation/architecture/_category_.json | 1 + docs/explanation/bmad-builder/_category_.json | 1 + docs/explanation/core-concepts/_category_.json | 1 + docs/explanation/creative-intelligence/_category_.json | 1 + docs/explanation/features/_category_.json | 1 + docs/explanation/game-dev/_category_.json | 1 + docs/explanation/philosophy/_category_.json | 1 + docs/how-to/brownfield/_category_.json | 1 + docs/how-to/customization/_category_.json | 1 + docs/how-to/ide-setup/_category_.json | 1 + docs/how-to/installation/_category_.json | 1 + docs/how-to/troubleshooting/_category_.json | 1 + docs/how-to/workflows/_category_.json | 1 + docs/reference/agents/_category_.json | 1 + docs/reference/configuration/_category_.json | 1 + docs/reference/faq/_category_.json | 1 + docs/reference/glossary/_category_.json | 1 + docs/reference/workflows/_category_.json | 1 + docs/tutorials/advanced/_category_.json | 1 + docs/tutorials/first-project/_category_.json | 1 + docs/tutorials/getting-started/_category_.json | 1 + 21 files changed, 21 insertions(+) create mode 100644 docs/explanation/architecture/_category_.json create mode 100644 docs/explanation/bmad-builder/_category_.json create mode 100644 docs/explanation/core-concepts/_category_.json create mode 100644 docs/explanation/creative-intelligence/_category_.json create mode 100644 docs/explanation/features/_category_.json create mode 100644 docs/explanation/game-dev/_category_.json create mode 100644 docs/explanation/philosophy/_category_.json create mode 100644 docs/how-to/brownfield/_category_.json create mode 100644 docs/how-to/customization/_category_.json create mode 100644 docs/how-to/ide-setup/_category_.json create mode 100644 docs/how-to/installation/_category_.json create mode 100644 docs/how-to/troubleshooting/_category_.json create mode 100644 docs/how-to/workflows/_category_.json create mode 100644 docs/reference/agents/_category_.json create mode 100644 docs/reference/configuration/_category_.json create mode 100644 docs/reference/faq/_category_.json create mode 100644 docs/reference/glossary/_category_.json create mode 100644 docs/reference/workflows/_category_.json create mode 100644 docs/tutorials/advanced/_category_.json create mode 100644 docs/tutorials/first-project/_category_.json create mode 100644 docs/tutorials/getting-started/_category_.json diff --git a/docs/explanation/architecture/_category_.json b/docs/explanation/architecture/_category_.json new file mode 100644 index 00000000..1492a6e8 --- /dev/null +++ b/docs/explanation/architecture/_category_.json @@ -0,0 +1 @@ +{ "label": "Architecture", "position": 2 } diff --git a/docs/explanation/bmad-builder/_category_.json b/docs/explanation/bmad-builder/_category_.json new file mode 100644 index 00000000..d5b54ed6 --- /dev/null +++ b/docs/explanation/bmad-builder/_category_.json @@ -0,0 +1 @@ +{ "label": "BMAD Builder", "position": 7 } diff --git a/docs/explanation/core-concepts/_category_.json b/docs/explanation/core-concepts/_category_.json new file mode 100644 index 00000000..039be874 --- /dev/null +++ b/docs/explanation/core-concepts/_category_.json @@ -0,0 +1 @@ +{ "label": "Core Concepts", "position": 1 } diff --git a/docs/explanation/creative-intelligence/_category_.json b/docs/explanation/creative-intelligence/_category_.json new file mode 100644 index 00000000..62061a4e --- /dev/null +++ b/docs/explanation/creative-intelligence/_category_.json @@ -0,0 +1 @@ +{ "label": "Creative Intelligence", "position": 5 } diff --git a/docs/explanation/features/_category_.json b/docs/explanation/features/_category_.json new file mode 100644 index 00000000..fe929998 --- /dev/null +++ b/docs/explanation/features/_category_.json @@ -0,0 +1 @@ +{ "label": "Features", "position": 4 } diff --git a/docs/explanation/game-dev/_category_.json b/docs/explanation/game-dev/_category_.json new file mode 100644 index 00000000..9309fc1e --- /dev/null +++ b/docs/explanation/game-dev/_category_.json @@ -0,0 +1 @@ +{ "label": "Game Development", "position": 6 } diff --git a/docs/explanation/philosophy/_category_.json b/docs/explanation/philosophy/_category_.json new file mode 100644 index 00000000..63203f27 --- /dev/null +++ b/docs/explanation/philosophy/_category_.json @@ -0,0 +1 @@ +{ "label": "Philosophy", "position": 3 } diff --git a/docs/how-to/brownfield/_category_.json b/docs/how-to/brownfield/_category_.json new file mode 100644 index 00000000..0d8a7f90 --- /dev/null +++ b/docs/how-to/brownfield/_category_.json @@ -0,0 +1 @@ +{ "label": "Brownfield", "position": 5 } diff --git a/docs/how-to/customization/_category_.json b/docs/how-to/customization/_category_.json new file mode 100644 index 00000000..48b48b30 --- /dev/null +++ b/docs/how-to/customization/_category_.json @@ -0,0 +1 @@ +{ "label": "Customization", "position": 3 } diff --git a/docs/how-to/ide-setup/_category_.json b/docs/how-to/ide-setup/_category_.json new file mode 100644 index 00000000..6b821a56 --- /dev/null +++ b/docs/how-to/ide-setup/_category_.json @@ -0,0 +1 @@ +{ "label": "IDE Setup", "position": 2 } diff --git a/docs/how-to/installation/_category_.json b/docs/how-to/installation/_category_.json new file mode 100644 index 00000000..eba8cf67 --- /dev/null +++ b/docs/how-to/installation/_category_.json @@ -0,0 +1 @@ +{ "label": "Installation", "position": 1 } diff --git a/docs/how-to/troubleshooting/_category_.json b/docs/how-to/troubleshooting/_category_.json new file mode 100644 index 00000000..331b0f35 --- /dev/null +++ b/docs/how-to/troubleshooting/_category_.json @@ -0,0 +1 @@ +{ "label": "Troubleshooting", "position": 6 } diff --git a/docs/how-to/workflows/_category_.json b/docs/how-to/workflows/_category_.json new file mode 100644 index 00000000..a384be41 --- /dev/null +++ b/docs/how-to/workflows/_category_.json @@ -0,0 +1 @@ +{ "label": "Workflows", "position": 4 } diff --git a/docs/reference/agents/_category_.json b/docs/reference/agents/_category_.json new file mode 100644 index 00000000..73bcb741 --- /dev/null +++ b/docs/reference/agents/_category_.json @@ -0,0 +1 @@ +{ "label": "Agents", "position": 1 } diff --git a/docs/reference/configuration/_category_.json b/docs/reference/configuration/_category_.json new file mode 100644 index 00000000..fe958952 --- /dev/null +++ b/docs/reference/configuration/_category_.json @@ -0,0 +1 @@ +{ "label": "Configuration", "position": 3 } diff --git a/docs/reference/faq/_category_.json b/docs/reference/faq/_category_.json new file mode 100644 index 00000000..6be0a2d0 --- /dev/null +++ b/docs/reference/faq/_category_.json @@ -0,0 +1 @@ +{ "label": "FAQ", "position": 5 } diff --git a/docs/reference/glossary/_category_.json b/docs/reference/glossary/_category_.json new file mode 100644 index 00000000..3f725333 --- /dev/null +++ b/docs/reference/glossary/_category_.json @@ -0,0 +1 @@ +{ "label": "Glossary", "position": 4 } diff --git a/docs/reference/workflows/_category_.json b/docs/reference/workflows/_category_.json new file mode 100644 index 00000000..dbd46ee2 --- /dev/null +++ b/docs/reference/workflows/_category_.json @@ -0,0 +1 @@ +{ "label": "Workflows", "position": 2 } diff --git a/docs/tutorials/advanced/_category_.json b/docs/tutorials/advanced/_category_.json new file mode 100644 index 00000000..598fd89f --- /dev/null +++ b/docs/tutorials/advanced/_category_.json @@ -0,0 +1 @@ +{ "label": "Advanced", "position": 3 } diff --git a/docs/tutorials/first-project/_category_.json b/docs/tutorials/first-project/_category_.json new file mode 100644 index 00000000..4cf64e87 --- /dev/null +++ b/docs/tutorials/first-project/_category_.json @@ -0,0 +1 @@ +{ "label": "First Project", "position": 2 } diff --git a/docs/tutorials/getting-started/_category_.json b/docs/tutorials/getting-started/_category_.json new file mode 100644 index 00000000..93571c98 --- /dev/null +++ b/docs/tutorials/getting-started/_category_.json @@ -0,0 +1 @@ +{ "label": "Getting Started", "position": 1 }