-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
113 lines (113 loc) · 2.98 KB
/
Copy pathsidebars.js
File metadata and controls
113 lines (113 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
const sidebars = {
docsSidebar: [
'intro',
{
type: 'category',
label: 'Guides',
collapsed: true,
link: {
type: 'generated-index',
title: 'Guides',
description: 'Step-by-step guides for using AI in your development workflow.',
slug: '/guides',
},
items: [
{
type: 'category',
label: 'Getting Started',
items: ['quickstart', 'setup/web-and-backend', 'setup/dotnet', 'setup/firmware'],
},
{
type: 'category',
label: 'Starter',
items: ['guides/starter/setup', 'guides/starter/workflow'],
},
{
type: 'category',
label: 'Intermediate',
items: ['guides/intermediate/setup', 'guides/intermediate/workflow'],
},
{
type: 'category',
label: 'Pro',
items: ['guides/pro/setup', 'guides/pro/workflow'],
},
'guides/prd',
{
type: 'category',
label: 'Prompting',
items: ['prompting/basics', 'prompting/advanced'],
},
{
type: 'category',
label: 'Code Generation & Debugging',
items: ['code/generation', 'code/debugging', 'code/refactoring'],
},
{
type: 'category',
label: 'Testing with AI',
items: ['testing/unit-tests', 'testing/coverage'],
},
],
},
{
type: 'category',
label: 'Claude Code',
link: {
type: 'generated-index',
title: 'Claude Code',
description: 'Deep-dive into Claude Code capabilities and features.',
slug: '/claude-code',
},
items: [
'claude-code/memory',
'claude-code/commands',
'claude-code/context',
'claude-code/permissions',
'claude-code/auto-mode',
'claude-code/flags',
'claude-code/skills',
'claude-code/subagents',
'claude-code/hooks',
'claude-code/mcp',
'claude-code/plugins',
'claude-code/workflows',
'claude-code/agent-teams',
'claude-code/tmux',
'claude-code/debugging',
'claude-code/tips',
],
},
{
type: 'category',
label: 'More Tools',
link: {
type: 'generated-index',
title: 'More Tools',
description: 'Overview and comparison of AI development tools.',
slug: '/tools',
},
items: [
'tools/overview',
'tools/cursor',
'tools/github-copilot',
'tools/codex',
'tools/gemini-cli',
'tools/aider',
'tools/mistral',
],
},
{
type: 'category',
label: 'Resources',
link: {
type: 'generated-index',
title: 'Resources',
description: 'Additional resources and references.',
slug: '/resources',
},
items: ['resources/github-repos', 'resources/prompt-templates', 'resources/troubleshooting'],
},
],
};
export default sidebars;