-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs-full.yml
More file actions
211 lines (205 loc) · 6.89 KB
/
mkdocs-full.yml
File metadata and controls
211 lines (205 loc) · 6.89 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
208
209
210
211
site_name: Viable Systems Model Documentation
site_url: https://viable-systems.github.io/vsm-docs/
site_description: Comprehensive documentation for the Viable Systems Model implementation in Elixir
site_author: Viable Systems Team
repo_name: viable-systems/vsm-docs
repo_url: https://github.com/viable-systems/vsm-docs
edit_uri: edit/main/docs/
theme:
name: material
# custom_dir: overrides # Uncomment when overrides are needed
# logo: assets/logo.png # Uncomment when logo is added
# favicon: assets/favicon.png # Uncomment when favicon is added
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
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.prune
- navigation.indexes
- navigation.top
- search.suggest
- search.highlight
- search.share
- header.autohide
- content.code.annotate
- content.code.copy
- content.tabs.link
plugins:
- search:
separator: '[\s\-\.]+'
- git-revision-date-localized:
enable_creation_date: true
type: iso_datetime
- minify:
minify_html: true
- awesome-pages
- macros
- mermaid2:
version: 10.6.0
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
permalink_title: Link to this section
- 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.magiclink:
repo_url_shorthand: true
user: viable-systems
repo: vsm-docs
- 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:
analytics:
provider: google
property: G-XXXXXXXXXX
social:
- icon: fontawesome/brands/github
link: https://github.com/viable-systems
- icon: fontawesome/brands/twitter
link: https://twitter.com/viablesystems
version:
provider: mike
default: stable
nav:
- Home: index.md
- Overview:
- overview/index.md
- What is VSM: overview/what-is-vsm.md
- Why VSM: overview/why-vsm.md
- Key Concepts: overview/key-concepts.md
- Architecture: overview/architecture.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- First VSM System: getting-started/first-system.md
- Examples: getting-started/examples.md
- Core Subsystems:
- subsystems/index.md
- S1 - Operations:
- subsystems/s1-operations/index.md
- Concepts: subsystems/s1-operations/concepts.md
- Implementation: subsystems/s1-operations/implementation.md
- API Reference: subsystems/s1-operations/api.md
- S2 - Coordination:
- subsystems/s2-coordination/index.md
- Anti-Oscillation: subsystems/s2-coordination/anti-oscillation.md
- Implementation: subsystems/s2-coordination/implementation.md
- API Reference: subsystems/s2-coordination/api.md
- S3 - Control:
- subsystems/s3-control/index.md
- Resource Bargaining: subsystems/s3-control/resource-bargaining.md
- Implementation: subsystems/s3-control/implementation.md
- API Reference: subsystems/s3-control/api.md
- S4 - Intelligence:
- subsystems/s4-intelligence/index.md
- Pattern Recognition: subsystems/s4-intelligence/pattern-recognition.md
- Implementation: subsystems/s4-intelligence/implementation.md
- API Reference: subsystems/s4-intelligence/api.md
- S5 - Policy:
- subsystems/s5-policy/index.md
- Governance: subsystems/s5-policy/governance.md
- Implementation: subsystems/s5-policy/implementation.md
- API Reference: subsystems/s5-policy/api.md
- Support Systems:
- Algedonic Channel:
- subsystems/algedonic/index.md
- Concepts: subsystems/algedonic/concepts.md
- Implementation: subsystems/algedonic/implementation.md
- API Reference: subsystems/algedonic/api.md
- Temporal Variety:
- subsystems/temporal-variety/index.md
- Novel Contributions: subsystems/temporal-variety/novel-contributions.md
- Implementation: subsystems/temporal-variety/implementation.md
- API Reference: subsystems/temporal-variety/api.md
- Migration Roadmap:
- roadmap/index.md
- Overview: roadmap/overview.md
- Phases:
- roadmap/phases/index.md
- Phase 1 - Foundation: roadmap/phases/phase-1.md
- Phase 2 - Core Infrastructure: roadmap/phases/phase-2.md
- Phase 3 - Basic VSM: roadmap/phases/phase-3.md
- Phase 4 - Extended VSM: roadmap/phases/phase-4.md
- Phase 5 - Integration: roadmap/phases/phase-5.md
- Phase 6 - Applications: roadmap/phases/phase-6.md
- Phase 7 - Enhancement: roadmap/phases/phase-7.md
- Phase 8 - Testing: roadmap/phases/phase-8.md
- Phase 9 - Documentation: roadmap/phases/phase-9.md
- Phase 10 - Deployment: roadmap/phases/phase-10.md
- Packages:
- roadmap/packages/index.md
- Core Infrastructure: roadmap/packages/core-infrastructure.md
- VSM Components: roadmap/packages/vsm-components.md
- Applications: roadmap/packages/applications.md
- Support Libraries: roadmap/packages/support-libraries.md
- Guides:
- guides/index.md
- Building VSM Systems: guides/building-systems.md
- Integrating with Phoenix: guides/phoenix-integration.md
- Scaling VSM: guides/scaling.md
- Monitoring & Observability: guides/monitoring.md
- Security Considerations: guides/security.md
- API Reference:
- api-reference/index.md
- Core APIs: api-reference/core.md
- Subsystem APIs: api-reference/subsystems.md
- Integration APIs: api-reference/integration.md
- Utilities: api-reference/utilities.md
- Reference:
- reference/index.md
- Glossary: reference/glossary.md
- Bibliography: reference/bibliography.md
- Contributing: reference/contributing.md
- License: reference/license.md