-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathastro.config.mjs
More file actions
166 lines (165 loc) · 4.78 KB
/
astro.config.mjs
File metadata and controls
166 lines (165 loc) · 4.78 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
// @ts-check
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import catppuccin from "@catppuccin/starlight";
import sitemap from "@astrojs/sitemap";
// https://astro.build/config
export default defineConfig({
site: "https://path.kilo.ai",
integrations: [
starlight({
head: [
{
tag: "script",
attrs: {
src: "/posthog.js",
defer: true,
},
},
],
title: "Agentic Engineering",
editLink: {
baseUrl: "https://github.com/Kilo-Org/agentic-path/edit/main/",
},
components: {
Footer: "./src/components/Footer.astro",
Header: "./src/components/Header.astro",
},
social: [
{
icon: "discord",
label: "Discord",
href: "https://kilo.love/discord",
},
{
icon: "github",
label: "GitHub",
href: "https://github.com/Kilo-Org/agentic-path",
},
],
sidebar: [
{
label: "Introduction",
items: [
{
label: "What is Agentic Engineering?",
slug: "introduction/what-is-agentic-engineering",
},
{
label: "How Agents Work",
slug: "introduction/how-agents-work",
},
{
label: "Working with Agents",
slug: "introduction/working-with-agents",
},
{
label: "Trends & Patterns",
slug: "introduction/trends-patterns",
},
],
},
{
label: "For Engineers",
items: [
{ label: "Getting Started", slug: "engineers/getting-started" },
{
label: "Task Decomposition",
slug: "engineers/task-decomposition",
},
{ label: "Best Practices", slug: "engineers/best-practices" },
],
},
{
label: "For Team Leads",
items: [
{
label: "Adopting Agentic Tools",
slug: "team-leads/adopting-agentic-tools",
},
{
label: "Measuring Impact",
slug: "team-leads/measuring-impact",
},
{
label: "Quality Assurance",
slug: "team-leads/quality-assurance",
},
{
label: "The 1-Pizza Team",
slug: "team-leads/1-pizza-teams",
},
],
},
{
label: "For Executives",
items: [
{ label: "Strategic Vision", slug: "executives/strategic-vision" },
{ label: "ROI Frameworks", slug: "executives/roi-frameworks" },
{
label: "Adoption Playbook",
slug: "executives/adoption-playbook",
},
{
label: "Security & Compliance",
slug: "executives/security-compliance",
},
{
label: "AI-Native Economics",
slug: "executives/ai-native-economics",
},
],
},
{
label: "Use Cases by Phase",
items: [
{
label: "Planning & Design",
slug: "use-cases/planning-design",
},
{ label: "Implementation", slug: "use-cases/implementation" },
{
label: "Deployment & Operations",
slug: "use-cases/deployment-operations",
},
{
label: "Quality & Documentation",
slug: "use-cases/quality-documentation",
},
],
},
{
label: "Governance & Risk",
items: [
{ label: "Security Review", slug: "governance/security-review" },
{ label: "Accountability", slug: "governance/accountability" },
{ label: "Quality Gates", slug: "governance/quality-gates" },
],
},
{
label: "Appendices",
items: [
{ label: "Glossary", slug: "appendices/glossary" },
{ label: "Recommended Reading", slug: "appendices/reading-list" },
{ label: "Prompt Templates", slug: "appendices/prompt-templates" },
],
},
{
label: "Community",
items: [
{ label: "Join the Community", slug: "community" },
{ label: "Contributing", slug: "community/contributing" },
],
},
],
customCss: ["./src/styles/custom.css"],
plugins: [
catppuccin({
dark: { flavor: "mocha", accent: "yellow" },
light: { flavor: "latte", accent: "peach" },
}),
],
}),
sitemap(),
],
});