forked from im-hashim/automotive-claude-code-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
207 lines (189 loc) · 5.51 KB
/
Copy pathmkdocs.yml
File metadata and controls
207 lines (189 loc) · 5.51 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# MkDocs configuration for Automotive Claude Code
site_name: Automotive Claude Code Agents
site_description: Universal AI-powered development platform for automotive industry
site_author: Automotive Claude Code Contributors
site_url: https://automotive-claude-code.readthedocs.io/
# Repository
repo_name: automotive-opensource/automotive-claude-code-agents
repo_url: https://github.com/automotive-opensource/automotive-claude-code-agents
edit_uri: edit/main/docs/
# Copyright
copyright: Copyright © 2024-2026 Automotive Claude Code Contributors
# Theme
theme:
name: material
language: en
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.top
- navigation.footer
- search.suggest
- search.highlight
- search.share
- toc.follow
- toc.integrate
- content.code.copy
- content.code.annotate
- content.tabs.link
icon:
repo: fontawesome/brands/github
logo: material/car-electric
# Plugins
plugins:
- search:
lang: en
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
- tags
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_source: true
show_root_heading: true
show_category_heading: true
- mermaid2:
version: 10.6.1
# Markdown extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
toc_depth: 3
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Extra
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/automotive-opensource/automotive-claude-code-agents
- icon: fontawesome/brands/python
link: https://pypi.org/project/automotive-claude-code/
- icon: fontawesome/brands/docker
link: https://hub.docker.com/r/automotive-claude-code/agents
analytics:
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: Thanks for your feedback!
# Navigation
nav:
- Home:
- Overview: index.md
- Quick Start: getting-started.md
- Installation: installation.md
- Architecture: architecture.md
- User Guide:
- Introduction: user-guide/introduction.md
- Skills: user-guide/skills.md
- Agents: user-guide/agents.md
- Commands: user-guide/commands.md
- Workflows: user-guide/workflows.md
- LLM Council: user-guide/llm-council.md
- Automotive Domains:
- ADAS/Autonomous: domains/adas.md
- Battery Management: domains/battery.md
- AUTOSAR: domains/autosar.md
- Diagnostics: domains/diagnostics.md
- Infotainment: domains/infotainment.md
- Connectivity: domains/connectivity.md
- Skills Catalog:
- Overview: skills/overview.md
- ADAS Skills: skills/adas.md
- Battery Skills: skills/battery.md
- AUTOSAR Skills: skills/autosar.md
- Diagnostic Skills: skills/diagnostic.md
- Safety Skills: skills/safety.md
- API Reference:
- Overview: api/overview.md
- Tool Router: api/tool-router.md
- LLM Council: api/llm-council.md
- Adapters: api/adapters.md
- Utilities: api/utilities.md
- Development:
- Contributing: development/contributing.md
- Development Setup: development/setup.md
- Creating Skills: development/creating-skills.md
- Creating Agents: development/creating-agents.md
- Testing: development/testing.md
- Code Style: development/code-style.md
- Standards:
- ISO 26262: standards/iso26262.md
- AUTOSAR: standards/autosar.md
- ASPICE: standards/aspice.md
- MISRA C: standards/misra.md
- Examples:
- Battery SOC Estimation: examples/battery-soc.md
- ADAS Object Detection: examples/adas-detection.md
- UDS Diagnostics: examples/uds-diagnostics.md
- AUTOSAR Configuration: examples/autosar-config.md
- About:
- License: about/license.md
- Changelog: about/changelog.md
- Roadmap: about/roadmap.md
- Contributors: about/contributors.md
- Security: about/security.md