-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
77 lines (76 loc) · 2.86 KB
/
Copy pathastro.config.mjs
File metadata and controls
77 lines (76 loc) · 2.86 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// Custom-domain GitHub Pages deploy: served at the apex of docs.creator-engine.dev,
// so the base path is "/". (CNAME in public/ carries the domain.)
export default defineConfig({
site: 'https://docs.creator-engine.dev',
base: '/',
integrations: [
starlight({
title: 'Creator Engine',
description:
'Run your own coding agent — under governance. Plan, author, review, and merge real work on purpose.',
// Default Starlight theme. The Factory-Floor brand theme is owned by the
// controller and held for a visual checkpoint — see THEME-TODO.md.
social: [
{
icon: 'github',
label: 'GitHub',
href: 'https://github.com/creator-engine',
},
],
sidebar: [
{
label: 'Get Started',
items: [
{ label: 'Install CE', slug: 'get-started/install-ce' },
{ label: 'Your first value', slug: 'get-started/first-value' },
{ label: 'CEO mode vs Dev mode', slug: 'get-started/ceo-vs-dev-mode' },
],
},
{
label: 'Concepts',
items: [
{ label: 'The grader outside the agent', slug: 'concepts/grader-outside-the-agent' },
{ label: 'The governed spine', slug: 'concepts/governed-spine' },
{ label: 'Containment & the three-deputy model', slug: 'concepts/containment-three-deputy' },
{ label: 'Identity & secrets', slug: 'concepts/identity-and-secrets' },
],
},
{
label: 'Guides',
items: [
{ label: 'Onboard a repository', slug: 'guides/onboard-a-repository' },
{ label: 'Configure a governed seat', slug: 'guides/configure-a-governed-seat' },
{ label: 'Run your first playbook', slug: 'guides/run-your-first-playbook' },
{ label: 'Set up review/merge gates', slug: 'guides/review-merge-gates' },
],
},
{
label: 'Playbooks',
items: [
{ label: 'Overview', slug: 'playbooks/overview' },
],
},
{
label: 'Reference',
items: [
{ label: 'CLI (ce …)', slug: 'reference/cli' },
{ label: 'Config schema', slug: 'reference/config-schema' },
{ label: 'Hooks & gates', slug: 'reference/hooks-and-gates' },
],
},
{
label: 'Operations',
items: [
{ label: 'Deploy CE', slug: 'operations/deploy-ce' },
{ label: 'OpenBao / secrets setup', slug: 'operations/openbao-secrets' },
{ label: 'Troubleshooting & FAQ', slug: 'operations/troubleshooting-faq' },
{ label: 'Contributing to CE', slug: 'operations/contributing' },
],
},
],
}),
],
});