-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
95 lines (89 loc) · 2.61 KB
/
Copy pathmkdocs.yml
File metadata and controls
95 lines (89 loc) · 2.61 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
site_name: YBIS Platform Documentation
site_description: Agentic Development Platform - Self-Bootstrapping, Zero Reinvention
site_url: https://ybis.dev
repo_url: https://github.com/your-org/ybis
repo_name: YBIS Platform
theme:
name: material
palette:
- scheme: default
primary: blue
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: blue
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- content.code.annotate
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_source: true
show_root_heading: true
show_root_toc_entry: true
show_root_full_path: false
show_object_full_path: false
show_category_heading: true
show_if_no_docstring: false
separate_signature: true
heading_level: 3
filters:
- "!^_" # Exclude private members
nav:
- Home: index.md
- Getting Started:
- Quick Start: getting-started/quick-start.md
- Installation: getting-started/installation.md
- Configuration: getting-started/configuration.md
- Constitution: constitution.md
- Discipline: discipline.md
- Architecture:
- Overview: architecture/overview.md
- Workflows: architecture/workflows.md
- Syscalls: architecture/syscalls.md
- Contracts: architecture/contracts.md
- API Reference:
- Syscalls: api/syscalls.md
- Contracts: api/contracts.md
- Adapters: api/adapters.md
- Governance:
- Commit Standards: governance/commit-standards.md
- PR Standards: governance/pr-standards.md
- Code Review: governance/code-review-checklist.md
- Development:
- Testing: development/testing.md
- Contributing: development/contributing.md
- Vendor Research:
- Integration Plan: vendor-research/comprehensive-vendor-integration-plan-2026.md
- Advanced Philosophies: vendor-research/advanced-agent-philosophies-2026.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- admonition
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html