-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
221 lines (200 loc) · 6.35 KB
/
mkdocs.yml
File metadata and controls
221 lines (200 loc) · 6.35 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
212
213
214
215
216
217
218
219
220
221
# ============================================================
# MSCP - MkDocs Material Configuration
# ============================================================
site_name: "MSCP - Minimal Self-Consciousness Protocol"
site_url: "https://dotnetpower.github.io/mscp/"
site_author: "Moon Hyuk Choi"
site_description: >-
A safety-oriented framework for structurally self-aware AI agents.
Six-level cognition taxonomy from Tool Agents to Proto-AGI,
16-layer cognitive architecture, 30+ safety mechanisms,
71 formal definitions, and 144 academic references.
repo_name: dotnetpower/mscp
repo_url: https://github.com/dotnetpower/mscp
edit_uri: edit/main/docs/
docs_dir: docs
site_dir: site
copyright: >-
Copyright © 2026 Moon Hyuk Choi - Independent Research Project
# ============================================================
# Theme
# ============================================================
theme:
name: material
language: en
custom_dir: docs/overrides
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to 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: Inter
code: JetBrains Mono
features:
- header.autohide
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.top
- navigation.footer
- search.suggest
- search.highlight
- search.share
- content.action.edit
- content.action.view
- content.code.copy
- content.code.annotate
- toc.follow
icon:
repo: fontawesome/brands/github
logo: material/brain
favicon: assets/images/favicon.png
# ============================================================
# Navigation
# ============================================================
nav:
- Home: index.md
- MSCP Overview: MSCP_Overview.md
- Agent Levels:
- Level Series: levels/README.md
- "L1: Tool Agent": levels/Level_1_Tool_Agent.md
- "L2: Autonomous Agent": levels/Level_2_Autonomous_Agent.md
- "L3: Self-Regulating Agent": levels/Level_3_Self_Regulating_Agent.md
- "L4: Adaptive General Agent": levels/Level_4_Adaptive_General_Agent.md
- "L4.5: Self-Architecting": levels/Level_4_5_Self_Architecting.md
- "L4.8: Strategic Self-Modeling": levels/Level_4_8_Strategic_Self_Modeling.md
- "L4.9: Autonomous Strategic": levels/Level_4_9_Autonomous_Strategic_Agent.md
- "L5: Proto-AGI": levels/Level_5_Proto_AGI.md
# ============================================================
# Plugins
# ============================================================
plugins:
- search:
lang:
- en
- ko
separator: '[\s\-\.]+'
- i18n:
docs_structure: suffix
fallback_to_default: true
reconfigure_material: false
languages:
- locale: en
default: true
name: English
build: true
- locale: ko
name: 한국어
build: true
theme:
language: ko
nav_translations:
Home: 홈
MSCP Overview: MSCP 개요
Agent Levels: 에이전트 레벨
Level Series: 레벨 시리즈
"L1: Tool Agent": "L1: 도구 에이전트"
"L2: Autonomous Agent": "L2: 자율 에이전트"
"L3: Self-Regulating Agent": "L3: 자기조절 에이전트"
"L4: Adaptive General Agent": "L4: 적응형 범용 에이전트"
"L4.5: Self-Architecting": "L4.5: 자기설계"
"L4.8: Strategic Self-Modeling": "L4.8: 전략적 자기모델링"
"L4.9: Autonomous Strategic": "L4.9: 자율 전략"
"L5: Proto-AGI": "L5: 프로토-AGI"
- minify:
minify_html: true
# ============================================================
# Extensions
# ============================================================
markdown_extensions:
# --- Python Markdown ---
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
toc_depth: 3
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
# --- PyMdown Extensions ---
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- 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.smartsymbols
- pymdownx.snippets
- 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
# ============================================================
# Extra CSS / JS (KaTeX)
# ============================================================
extra_css:
- https://cdn.jsdelivr.net/npm/katex@0.16.11/dist/katex.min.css
- stylesheets/extra.css
extra_javascript:
- https://cdn.jsdelivr.net/npm/katex@0.16.11/dist/katex.min.js
- https://cdn.jsdelivr.net/npm/katex@0.16.11/dist/contrib/auto-render.min.js
- javascripts/katex.js
# ============================================================
# Extra - SEO, Social, Analytics
# ============================================================
extra:
alternate:
- name: English
link: /mscp/
lang: en
- name: 한국어
link: /mscp/ko/
lang: ko
social:
- icon: fontawesome/brands/github
link: https://github.com/dotnetpower/mscp
name: MSCP on GitHub
- icon: fontawesome/solid/envelope
link: mailto:moonchoi@microsoft.com
name: Contact the author
analytics:
provider: google
property: G-HCKE5F50NS
generator: false
# Note: All OG/Twitter/SEO meta tags are rendered via docs/overrides/main.html
# with per-page dynamic values. No extra.meta needed here.