-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
81 lines (81 loc) · 2.25 KB
/
Copy pathmkdocs.yml
File metadata and controls
81 lines (81 loc) · 2.25 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
site_name: OpenCode Dev 源码拆解
site_description: OpenCode AI coding agent 的架构、Session V2、上下文工程与扩展系统源码笔记
site_url: https://hanqing.github.io/opencode-dev-notes/
repo_url: https://github.com/Hanqing/opencode-dev-notes
repo_name: Hanqing/opencode-dev-notes
edit_uri: edit/main/docs/
theme:
name: material
language: zh
features:
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: 切换到深色模式
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: 切换到浅色模式
font:
text: Noto Sans SC
code: JetBrains Mono
icon:
repo: fontawesome/brands/github
custom_dir: docs/overrides
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- 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
- toc:
permalink: true
plugins:
- search
nav:
- 首页: index.md
- 01 总览: 01-overview.md
- 02 分层与依赖: 02-layers.md
- 03 Server 与 API: 03-server-api.md
- 04 Session V2: 04-session-v2.md
- 05 上下文工程: 05-context.md
- 06 LLM 与 Provider: 06-llm.md
- 07 工具与安全: 07-tools.md
- 08 事件与回放: 08-events.md
- 09 持久化与工作区: 09-storage-workspace.md
- 10 多端 UI: 10-clients.md
- 11 扩展与发布: 11-extensibility-release.md
- 12 阅读方法: 12-reading-map.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/anomalyco/opencode
name: OpenCode upstream
extra_css:
- stylesheets/extra.css
copyright: "基于 OpenCode 源码快照整理 · 文档 CC BY-SA 4.0"