-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
126 lines (119 loc) · 3.83 KB
/
Copy pathmkdocs.yml
File metadata and controls
126 lines (119 loc) · 3.83 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
site_name: GitHub App
site_description: A GitHub App webhook server powered by the Claude Agent SDK.
site_url: https://chrisleekr.github.io/github-app/
repo_url: https://github.com/chrisleekr/github-app
repo_name: chrisleekr/github-app
edit_uri: edit/main/docs/
strict: true
extra_css:
- stylesheets/extra.css
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.instant.progress
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.footer
- toc.follow
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.select
- content.code.annotate
- content.action.edit
plugins:
- search
# social/privacy require Pillow + cairosvg and add ~10s to the build, so they
# only run when CI=true (set automatically by GitHub Actions). Local builds
# via `bun run docs:build` will skip them: that is intentional.
- social:
enabled: !ENV [CI, false]
- privacy:
enabled: !ENV [CI, false]
markdown_extensions:
- admonition
- attr_list
- md_in_html
- footnotes
- tables
- toc:
permalink: true
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
# Snippet base paths resolve against the working directory at build time,
# so always invoke `mkdocs build` / `mkdocs serve` from the repo root.
# Running from a subdirectory will fail strict mode on missing snippets
# (e.g. docs/CHANGELOG.md includes the root CHANGELOG.md via "--8<-- ").
- pymdownx.snippets:
base_path:
- .
- docs
check_paths: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
nav:
- Home: index.md
- Use the bot:
- Repo configuration: use/repo-config.md
- Invoking: use/invoking.md
- Workflows:
- Catalog: use/workflows/index.md
- bot:ship: use/workflows/ship.md
- bot:triage: use/workflows/triage.md
- bot:plan: use/workflows/plan.md
- bot:implement: use/workflows/implement.md
- bot:review: use/workflows/review.md
- bot:resolve: use/workflows/resolve.md
- bot:remember: use/workflows/remember.md
- Scheduled actions: use/scheduled-actions.md
- Review learnings: use/review-learnings.md
- Safety: use/safety.md
- Run the service:
- Local development: operate/setup.md
- GitHub App creation: operate/github-app.md
- Deployment: operate/deployment.md
- Configuration: operate/configuration.md
- Observability: operate/observability.md
- Runbooks:
- Daemon fleet: operate/runbooks/daemon-fleet.md
- Triage: operate/runbooks/triage.md
- Stuck bot:ship session: operate/runbooks/stuck-ship-intent.md
- Scheduled actions: operate/runbooks/scheduled-actions.md
- Build on it:
- Architecture: build/architecture.md
- Extending: build/extending.md
- Conventions: build/conventions.md
- Contributing: build/contributing.md
- Changelog: changelog.md