You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(web): categorize docs nav and stop calling sessions isolated
Docs navigation is now an explicit category catalog instead of slicing
the route list. The overview pulls the shared-profile contract from
COMMANDS.md. The command reference is filterable from that same source.
@@ -15,23 +14,15 @@ export default function CommandsPage() {
15
14
return(
16
15
<DocsShell
17
16
activePath="/docs/commands"
17
+
sections={commands.groups.map((group)=>({
18
+
id: group.id,
19
+
label: group.title,
20
+
}))}
18
21
kicker={`${commands.count} command forms`}
19
22
title={<>The complete agent surface.</>}
20
23
lede="These usage lines come from the generated command reference, which protocol tests keep in sync with the CLI help output. Unknown parameters fail closed."
0 commit comments