Skip to content

Commit f2d32f8

Browse files
committed
Updated Format
1 parent 7ba9030 commit f2d32f8

File tree

7 files changed

+38
-4
lines changed

7 files changed

+38
-4
lines changed

Diff for: docs/1_index.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
11
# Overview
22

3-
Welcome to the Codebolt library.
3+
**Codebolt** is a Code Editor, with focus on AI Agents. It allows for software developers to use AI Agents for multiple things from code generation to testing, depoloyment and documentation. The Codebolt Agents are the building blocks of the Codebolt Platform.
4+
5+
6+
## Codebolt Agents
7+
Codebolt Agents are
8+
<!-- - completion,
9+
- generation,
10+
- review,
11+
- analysis,
12+
- refactoring,
13+
- testing,
14+
- debugging,
15+
- profiling,
16+
- optimization,
17+
- security,
18+
- monitoring,
19+
- deployment,
20+
- integration,
21+
- collaboration,
22+
- documentation,
23+
- visualization, etc. -->
File renamed without changes.

Diff for: docs/api/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"className": "red",
77
"link": {
88
"type": "doc",
9-
"id": "api_index"
9+
"id": "1_api_index"
1010
}
1111
}
File renamed without changes.

Diff for: docs/user/index.md

Whitespace-only changes.

Diff for: docusaurus.config.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,23 @@ const config: Config = {
6262
src: 'img/logo.jpg',
6363
},
6464
items: [
65+
{
66+
type: 'docSidebar',
67+
sidebarId: 'userSidebar',
68+
position: 'left',
69+
label: 'Codebolt App',
70+
},
71+
{
72+
type: 'docSidebar',
73+
sidebarId: 'devSidebar',
74+
position: 'left',
75+
label: 'Agent Dev',
76+
},
6577
{
6678
type: 'docSidebar',
6779
sidebarId: 'jsapiSidebar',
6880
position: 'left',
69-
label: 'AI Agents',
81+
label: 'API Specs',
7082
},
7183
{
7284
to: '/blog',

Diff for: sidebars.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
1212
*/
1313
const sidebars: SidebarsConfig = {
1414
// By default, Docusaurus generates a sidebar from the docs folder structure
15-
jsapiSidebar: [{type: 'autogenerated', dirName: '.'}],
15+
jsapiSidebar: [{type: 'autogenerated', dirName: 'api'}],
16+
userSidebar: [{type: 'autogenerated', dirName: 'user'}],
17+
devSidebar: [{type: 'autogenerated', dirName: 'developer'}],
1618

1719
// But you can create a sidebar manually
1820

0 commit comments

Comments
 (0)