From 38a075f2b607121ae083673ffc6844ecef92ac4a Mon Sep 17 00:00:00 2001 From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Date: Fri, 3 Apr 2026 16:39:08 -0700 Subject: [PATCH 1/2] Fix invalid navigation $ref example in settings docs The config/navigation.json example showed a bare array, but navigation is an object with a groups key. Updated the example to match the actual schema so users copying it get working configuration. Co-Authored-By: Claude Sonnet 4.6 --- organize/settings.mdx | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/organize/settings.mdx b/organize/settings.mdx index 1a7e84e15..c120fa9f5 100644 --- a/organize/settings.mdx +++ b/organize/settings.mdx @@ -84,16 +84,18 @@ Add a `$ref` property with a relative file path anywhere in your `docs.json`. Mi ``` ```json config/navigation.json -[ - { - "group": "Get started", - "pages": ["index", "quickstart"] - }, - { - "group": "Guides", - "pages": ["guides/first-steps", "guides/advanced"] - } -] +{ + "groups": [ + { + "group": "Get started", + "pages": ["index", "quickstart"] + }, + { + "group": "Guides", + "pages": ["guides/first-steps", "guides/advanced"] + } + ] +} ``` - Referenced files can contain their own `$ref` references. Nested paths resolve relative to the file that contains them, not relative to `docs.json`. From ce8344cb382b0ae3cefd96c59487339841b031dc Mon Sep 17 00:00:00 2001 From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Date: Fri, 3 Apr 2026 16:49:29 -0700 Subject: [PATCH 2/2] Move CLI installation page to Get started nav group Searches for "cli" had 22 hits with 0% CTR. The installation page was buried in Create content between web editor docs and text formatting. Moving it to Get started makes it findable alongside quickstart. Co-Authored-By: Claude Sonnet 4.6 --- docs.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs.json b/docs.json index bdbca0d38..2b3671dd2 100644 --- a/docs.json +++ b/docs.json @@ -27,6 +27,7 @@ "pages": [ "index", "quickstart", + "installation", "ai-native" ] }, @@ -86,7 +87,6 @@ "editor/keyboard-shortcuts" ] }, - "installation", "create/text", "create/code", {