Skip to content

Commit 5e5ff21

Browse files
committed
feat(sidebars): add 'Agentic Coding' sidebar for enhanced navigation and include related categories
1 parent 0b4d9bc commit 5e5ff21

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

docusaurus.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@ const config = {
8888
position: 'left',
8989
label: 'Development',
9090
},
91+
{
92+
type: 'docSidebar',
93+
sidebarId: 'agenticSidebar',
94+
position: 'left',
95+
label: 'Agentic Coding',
96+
},
9197
{
9298
to: '/blog',
9399
label: 'Blog',

sidebars.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ const sidebars = {
7777
'development/git-commit-prompting',
7878
'development/prompt-strategy',
7979
'development/refactoring-prompt',
80+
'devins/development',
8081
{
8182
type: 'category',
8283
label: 'Patterns',
@@ -89,6 +90,29 @@ const sidebars = {
8990
],
9091
},
9192
],
93+
agenticSidebar: [
94+
{
95+
type: 'category',
96+
label: 'Custom Remote Agent',
97+
items: [
98+
'agent/agent',
99+
'agent/agent-action',
100+
'agent/custom-ai-agent',
101+
'agent/custom-request-response',
102+
'agent/server-example',
103+
],
104+
},
105+
{
106+
type: 'category',
107+
label: 'AI Agent Language',
108+
items: [
109+
'devins/devins',
110+
'devins/quick-start',
111+
'devins/orchestration',
112+
'devins/devins-language',
113+
],
114+
},
115+
]
92116
}
93117

94118
export default sidebars

0 commit comments

Comments
 (0)