-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
95 lines (88 loc) · 2.18 KB
/
mkdocs.yml
File metadata and controls
95 lines (88 loc) · 2.18 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
site_name: SHADI
site_description: Secure Host Agentic AI Dynamic Instantiation
site_url: https://example.com/shadi
repo_url: https://github.com/your-org/shadi
repo_name: shadi
extra:
copyright: >
Copyright SHADI Contributors.
extra_css:
- stylesheets/custom.css
theme:
name: material
custom_dir: overrides
font:
text: Roboto
code: Roboto Mono
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
logo_light: assets/img/logo-light.svg
logo_dark: assets/img/logo-dark.svg
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.footer
- navigation.top
- navigation.tracking
- content.code.copy
- content.tabs.link
- search.highlight
- search.share
- search.suggest
- toc.follow
nav:
- Introduction:
- Overview: index.md
- Architecture: architecture.md
- Security Notes: security.md
- Design Overview: design.md
- Guides:
- Getting Started: getting_started.md
- Operations: operations.md
- Sandbox and Policies: sandbox.md
- Demo Walkthrough: demo.md
- SecOps Demo: secops_agent.md
- Integrations:
- API Guide: api_integration.md
- SLIM and A2A: slim_a2a.md
- Google ADK: adk_integration.md
- Mobile: mobile_integration.md
- Reference:
- CLI Reference: cli.md
exclude_docs: |
README.md
markdown_extensions:
- admonition
- md_in_html
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight
- toc:
permalink: true
- codehilite
plugins:
- search