-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
94 lines (88 loc) · 2.53 KB
/
mkdocs.yml
File metadata and controls
94 lines (88 loc) · 2.53 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
site_name: Agent Library
site_description: A personal knowledge library for AI agents — store and search notes, code, PDFs, and images.
site_url: https://arcadeai.github.io/agent-library/
repo_url: https://github.com/ArcadeAI/agent-library
repo_name: ArcadeAI/agent-library
edit_uri: edit/main/docs/
docs_dir: docs
theme:
name: material
# Identity is "Agent Library" (the site_name) rendered as the header text;
# the brand vibe comes from the cyan accent + dark theme defined below and
# in docs/assets/extra.css, not from a borrowed wordmark.
icon:
logo: material/bookshelf
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
- content.action.edit
- toc.follow
# Brand-aligned palette: dark is the primary experience (matches arcade.dev),
# light is offered as an alternate. The actual hex values come from the
# custom CSS in docs/assets/extra.css — these palette entries just pin the
# right Material scheme + a brand-adjacent base color.
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: cyan
toggle:
icon: material/weather-sunny
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: cyan
toggle:
icon: material/weather-night
name: Switch to dark mode
font:
text: Inter
code: JetBrains Mono
extra_css:
- assets/extra.css
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.keys
nav:
- Home: index.md
- Quickstart: quickstart.md
- Install:
- Installing uv: install.md
- Use it with your AI:
- Claude Desktop: integrations/claude-desktop.md
- Claude Code (CLI): integrations/claude-code.md
- Cursor: integrations/cursor.md
- CLI reference: cli.md
- Configuration: configuration.md
- Concepts: concepts.md
- Troubleshooting: troubleshooting.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/ArcadeAI/agent-library