-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
143 lines (114 loc) · 3.61 KB
/
mkdocs.yml
File metadata and controls
143 lines (114 loc) · 3.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
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
site_name: CodeClone
site_description: Structural review layer for Python
site_url: https://orenlab.github.io/codeclone/
repo_url: https://github.com/orenlab/codeclone
repo_name: orenlab/codeclone
docs_dir: docs
edit_uri: blob/main/docs/
strict: true
exclude_docs: |
README-pypi.md
theme:
name: material
logo: assets/codeclone-docs-wordmark.svg
favicon: assets/favicon.svg
icon:
repo: fontawesome/brands/github
features:
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.instant
- navigation.tracking
- search.suggest
- search.highlight
- content.code.copy
- content.tabs.link
font:
text: Inter
code: JetBrains Mono
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
extra_css:
- assets/stylesheets/extra.css
plugins:
- search
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- tables
- toc:
permalink: true
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
nav:
- Home: README.md
- Contracts Book:
- Overview: book/README.md
- Foundations:
- Intro: book/00-intro.md
- Architecture Map: book/01-architecture-map.md
- Terminology: book/02-terminology.md
- Contract Spine:
- Exit Codes: book/03-contracts-exit-codes.md
- Config and Defaults: book/04-config-and-defaults.md
- Core Pipeline: book/05-core-pipeline.md
- Baseline: book/06-baseline.md
- Cache: book/07-cache.md
- Report: book/08-report.md
- Interfaces:
- CLI: book/09-cli.md
- MCP Interface: book/20-mcp-interface.md
- VS Code Extension: book/21-vscode-extension.md
- Claude Desktop Bundle: book/22-claude-desktop-bundle.md
- Codex Plugin: book/23-codex-plugin.md
- HTML Render: book/10-html-render.md
- System Properties:
- Security Model: book/11-security-model.md
- Determinism: book/12-determinism.md
- Testing as Spec: book/13-testing-as-spec.md
- Compatibility and Versioning: book/14-compatibility-and-versioning.md
- Quality:
- Health Score: book/15-health-score.md
- Metrics and Gates: book/15-metrics-and-quality-gates.md
- Dead Code: book/16-dead-code-contract.md
- Suggestions and Clone Typing: book/17-suggestions-and-clone-typing.md
- Benchmarking: book/18-benchmarking.md
- Inline Suppressions: book/19-inline-suppressions.md
- Appendix:
- Status Enums: book/appendix/a-status-enums.md
- Schema Layouts: book/appendix/b-schema-layouts.md
- Error Catalog: book/appendix/c-error-catalog.md
- Deep Dives:
- Architecture Narrative: architecture.md
- CFG Semantics: cfg.md
- MCP for AI Agents: mcp.md
- VS Code Extension: vscode-extension.md
- Claude Desktop Bundle: claude-desktop-bundle.md
- Codex Plugin: codex-plugin.md
- Privacy Policy: privacy-policy.md
- Terms of Use: terms-of-use.md
- SARIF for IDEs: sarif.md
- Publishing and Docs Site: publishing.md
- Examples:
- Sample Report: examples/report.md