-
Notifications
You must be signed in to change notification settings - Fork 705
align mintlify nav with current docs structure #2526
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,6 +35,7 @@ | |
| { | ||
| "group": "Usage", | ||
| "pages": [ | ||
| "usage/readme", | ||
| "usage/modules", | ||
| "usage/blueprints", | ||
| "usage/configuration", | ||
|
|
@@ -49,6 +50,7 @@ | |
| { | ||
| "group": "Data streams", | ||
| "pages": [ | ||
| "usage/data_streams/readme", | ||
| "usage/data_streams/advanced_streams", | ||
| "usage/data_streams/quality_filter", | ||
| "usage/data_streams/reactivex", | ||
|
|
@@ -59,6 +61,7 @@ | |
| { | ||
| "group": "Sensor streams", | ||
| "pages": [ | ||
| "usage/sensor_streams/readme", | ||
| "usage/sensor_streams/advanced_streams", | ||
| "usage/sensor_streams/quality_filter", | ||
| "usage/sensor_streams/reactivex", | ||
|
|
@@ -76,30 +79,45 @@ | |
| ] | ||
| }, | ||
| { | ||
| "group": "Agents", | ||
| "group": "Coding agents", | ||
| "pages": [ | ||
| "agents/index", | ||
| "agents/style", | ||
| "agents/code-quality-rules", | ||
| "agents/testing", | ||
| "coding-agents/index", | ||
| "coding-agents/style", | ||
| "coding-agents/code-quality-rules", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "coding-agents/testing", | ||
| "coding-agents/worktrees", | ||
| { | ||
| "group": "Authoring agent docs", | ||
| "pages": [ | ||
| "agents/docs/index", | ||
| "agents/docs/codeblocks", | ||
| "agents/docs/doclinks" | ||
| "coding-agents/docs/index", | ||
| "coding-agents/docs/codeblocks", | ||
| "coding-agents/docs/doclinks" | ||
| ] | ||
| } | ||
| ] | ||
|
Comment on lines
+82
to
97
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The group was renamed from |
||
| }, | ||
| { | ||
| "group": "Capabilities", | ||
| "pages": [ | ||
| { | ||
| "group": "Agents", | ||
| "pages": [ | ||
| "capabilities/agents/readme" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Manipulation", | ||
| "pages": [ | ||
| "capabilities/manipulation/readme", | ||
| "capabilities/manipulation/adding_a_custom_arm", | ||
| "capabilities/manipulation/openarm_integration" | ||
| "capabilities/manipulation/openarm_integration", | ||
| "capabilities/manipulation/a750" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Mapping", | ||
| "pages": [ | ||
| "capabilities/mapping/relocalization" | ||
| ] | ||
| }, | ||
| { | ||
|
|
@@ -113,13 +131,15 @@ | |
| { | ||
| "group": "Navigation", | ||
| "pages": [ | ||
| "capabilities/navigation/readme", | ||
| "capabilities/navigation/nav_stack", | ||
| { | ||
| "group": "Native", | ||
| "pages": [ | ||
| "capabilities/navigation/native/index" | ||
| ] | ||
| } | ||
| "capabilities/navigation/native/index" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Perception", | ||
| "pages": [ | ||
| "capabilities/perception/readme" | ||
| ] | ||
| }, | ||
| { | ||
|
|
@@ -156,6 +176,7 @@ | |
| "development/grid_testing", | ||
| "development/large_file_management", | ||
| "development/profiling_dimos", | ||
| "development/releasing", | ||
| "development/writing_docs" | ||
| ] | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The three new entries
usage/readme,usage/data_streams/readme, andusage/sensor_streams/readmereference lowercasereadme, but the actual files on disk aredocs/usage/README.md,docs/usage/data_streams/README.md, anddocs/usage/sensor_streams/README.md(all uppercase). On the case-sensitive Linux filesystem where Mintlify typically deploys, these lookups will fail to resolve the file, resulting in 404s. The other pages in this codebase all use lowercase filenames consistently — consider renaming the threeREADME.mdfiles toreadme.md.