-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.ts
More file actions
102 lines (100 loc) · 2.19 KB
/
Copy pathsidebars.ts
File metadata and controls
102 lines (100 loc) · 2.19 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docsSidebar: [
'intro',
{
type: 'category',
label: 'Architecture',
collapsed: false,
items: [
'architecture/overview',
'architecture/trust-model',
'architecture/cryptographic-chain',
],
},
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
'getting-started/prerequisites',
'getting-started/local-build',
'getting-started/run-an-example',
'getting-started/faq',
],
},
{
type: 'category',
label: 'Kernel Core',
collapsed: true,
items: [
'kernel/input-format',
'kernel/journal-format',
'kernel/versioning',
],
},
{
type: 'category',
label: 'SDK',
collapsed: true,
items: [
'sdk/overview',
'sdk/writing-an-agent',
'sdk/constraints-and-commitments',
'sdk/testing',
],
},
{
type: 'category',
label: 'Guest Program',
collapsed: true,
items: [
'guest-program/overview',
'guest-program/transcript-and-hashing',
'guest-program/risc0-build-pipeline',
],
},
{
type: 'category',
label: 'Agent Pack',
collapsed: true,
items: [
'agent-pack/format',
'agent-pack/publishing',
'agent-pack/verification',
'agent-pack/manifest-schema',
],
},
{
type: 'category',
label: 'On-Chain',
collapsed: true,
items: [
'onchain/verifier-overview',
'onchain/solidity-integration',
'onchain/security-considerations',
],
},
{
type: 'category',
label: 'Integration',
collapsed: true,
items: [
'integration/overview',
'integration/reference-integrator',
'integration/golden-path',
],
},
{
type: 'category',
label: 'Reference',
collapsed: true,
items: [
'reference/repo-map',
'reference/glossary',
'reference/changelog',
],
},
],
};
export default sidebars;