forked from salesforce/agentscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
137 lines (134 loc) · 4.61 KB
/
sidebars.ts
File metadata and controls
137 lines (134 loc) · 4.61 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
* Copyright (c) 2026, Salesforce, Inc.
* All rights reserved.
* SPDX-License-Identifier: Apache-2.0
* For full license text, see the LICENSE file in the repo root or https://www.apache.org/licenses/LICENSE-2.0
*/
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
tutorialSidebar: [
'intro',
{
type: 'category',
label: 'Getting Started',
items: [{ type: 'autogenerated', dirName: 'getting-started' }],
},
{
type: 'category',
label: 'Language Guide',
items: [
'language/syntax',
'language/blocks',
'language/reasoning',
'language/expressions',
],
},
{
type: 'category',
label: 'Architecture',
items: [{ type: 'autogenerated', dirName: 'architecture' }],
},
{
type: 'category',
label: 'Packages',
items: [
'packages/overview',
'packages/language',
'packages/dialect',
'packages/tooling',
'packages/cli',
'packages/vscode-extension',
],
},
{
type: 'category',
label: 'Extending',
items: [
'extending/custom-lint-passes',
'extending/custom-dialects',
'extending/language-service',
],
},
{
type: 'category',
label: 'Custom Dialects',
link: { type: 'doc', id: 'dialects/index' },
items: [
'dialects/index',
{
type: 'category',
label: 'Agentforce',
link: { type: 'doc', id: 'dialects/agentforce/agent-script' },
items: [
'dialects/agentforce/agent-script',
'dialects/agentforce/ascript-lang',
'dialects/agentforce/ascript-blocks',
'dialects/agentforce/ascript-flow',
'dialects/agentforce/ascript-deep-dive-flow',
'dialects/agentforce/ascript-manage',
{
type: 'category',
label: 'Examples',
items: [
'dialects/agentforce/examples/ascript-examples',
'dialects/agentforce/examples/ascript-example-customer-support',
'dialects/agentforce/examples/ascript-example-rag-jargon',
'dialects/agentforce/examples/ascript-examples-multi-turn',
],
},
{
type: 'category',
label: 'Patterns',
items: [
'dialects/agentforce/patterns/ascript-patterns',
'dialects/agentforce/patterns/ascript-patterns-action-chaining',
'dialects/agentforce/patterns/ascript-patterns-topic-selector',
'dialects/agentforce/patterns/ascript-patterns-conditionals',
'dialects/agentforce/patterns/ascript-patterns-fetch-data',
'dialects/agentforce/patterns/ascript-patterns-filtering',
'dialects/agentforce/patterns/ascript-patterns-required-flow',
'dialects/agentforce/patterns/ascript-patterns-multi-turn',
'dialects/agentforce/patterns/ascript-patterns-resource-references',
'dialects/agentforce/patterns/ascript-patterns-system-overrides',
'dialects/agentforce/patterns/ascript-patterns-transitions',
'dialects/agentforce/patterns/ascript-patterns-variables',
],
},
{
type: 'category',
label: 'Reference',
items: [
'dialects/agentforce/reference/ascript-reference',
'dialects/agentforce/reference/ascript-ref-actions',
'dialects/agentforce/reference/ascript-ref-before-after-reasoning',
'dialects/agentforce/reference/ascript-ref-expressions',
'dialects/agentforce/reference/ascript-ref-instructions',
'dialects/agentforce/reference/ascript-ref-operators',
'dialects/agentforce/reference/ascript-ref-tools',
'dialects/agentforce/reference/ascript-ref-utils',
'dialects/agentforce/reference/ascript-ref-variables',
],
},
],
},
{
type: 'category',
label: 'Agent Fabric',
link: { type: 'doc', id: 'dialects/agentfabric/index' },
items: ['dialects/agentfabric/index'],
},
],
},
{
type: 'category',
label: 'API Reference',
items: [{ type: 'autogenerated', dirName: 'api' }],
},
{
type: 'category',
label: 'Contributing',
items: [{ type: 'autogenerated', dirName: 'contributing' }],
},
],
};
export default sidebars;