-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathmkdocs.yml
More file actions
267 lines (258 loc) · 9.03 KB
/
mkdocs.yml
File metadata and controls
267 lines (258 loc) · 9.03 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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
site_name: AgentOps
site_description: Context compiler for coding agents. Assembles, validates, and delivers the right context so every session starts loaded, not cold.
site_url: https://boshu2.github.io/agentops/
site_author: AgentOps
repo_name: boshu2/agentops
repo_url: https://github.com/boshu2/agentops
edit_uri: edit/main/docs/
docs_dir: docs
site_dir: _site
# Keep building even when the knowledge graph links outside docs/ (e.g., ../skills/).
# Strict link checking runs as a separate CI job via tests/docs/validate-links.sh + lychee.
strict: false
theme:
name: material
language: en
favicon: assets/favicon.svg
logo: assets/logo.svg
custom_dir: docs/overrides
palette:
# Dark mode default (slate) — toggle flips to light.
- media: "(prefers-color-scheme)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to system preference
font:
text: Inter
code: Space Mono
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.footer
- navigation.instant
- navigation.instant.prefetch
- navigation.tracking
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.action.edit
- content.action.view
- content.tabs.link
- content.tooltips
- toc.follow
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/boshu2/agentops
name: AgentOps on GitHub
extra_css:
- assets/stylesheets/extra.css
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
permalink_title: Anchor link
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem
- 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:
use_pygments: true
linenums: false
anchor_linenums: false
pygments_lang_class: true
guess_lang: false
auto_title: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
base_path:
- docs
- .
- 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
plugins:
- search:
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
- gen-files:
scripts:
- docs/_hooks/gen_skill_pages.py
- docs/_hooks/gen_cli_reference.py
- section-index
- include-markdown
- git-revision-date-localized:
enable_creation_date: false
fallback_to_build_date: true
strict: false
type: date
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Newcomer Guide: newcomer-guide.md
- Create Your First Skill: create-your-first-skill.md
- Behavioral Discipline: behavioral-discipline.md
- FAQ: FAQ.md
- Contributing: CONTRIBUTING.md
- Security: SECURITY.md
- Changelog: CHANGELOG.md
- Upgrading: UPGRADING.md
- Daemon Migration: daemon-migration.md
- Skills:
- skills/index.md
- Skills Reference: SKILLS.md
- Decision Tree: skills-decision-tree.md
- Skill API: SKILL-API.md
- Skill Router: SKILL-ROUTER.md
- Catalog: skills/catalog.md
- CLI:
- cli/index.md
- Command Reference: cli/commands.md
- CLI ↔ Skills Map: cli-skills-map.md
- Hooks Overview: HOOKS.md
- Hooks Reference: cli/hooks.md
- Architecture:
- architecture/index.md
- How It Works: how-it-works.md
- Architecture Overview: ARCHITECTURE.md
- Software Factory: software-factory.md
- Intent-to-Loop Hexagon: architecture/intent-to-loop-hexagon.md
- Behavior-Shaping Environment: architecture/behavior-shaping-environment.md
- Codex Hookless Lifecycle: architecture/codex-hookless-lifecycle.md
- Primitive Chains: architecture/primitive-chains.md
- PDC Framework: architecture/pdc-framework.md
- FAAFO Alignment: architecture/faafo-alignment.md
- Failure Patterns: architecture/failure-patterns.md
- AO Command Customization: architecture/ao-command-customization-matrix.md
- Workflows:
- workflows/README.md
- Complete Cycle: workflows/complete-cycle.md
- Session Lifecycle: workflows/session-lifecycle.md
- Quick Fix: workflows/quick-fix.md
- Debug Cycle: workflows/debug-cycle.md
- Knowledge Synthesis: workflows/knowledge-synthesis.md
- Assumption Validation: workflows/assumption-validation.md
- Post-Work Retro: workflows/post-work-retro.md
- Multi-Domain: workflows/multi-domain.md
- Continuous Improvement: workflows/continuous-improvement.md
- Infrastructure Deployment: workflows/infrastructure-deployment.md
- Meta-Observer: workflows/meta-observer-pattern.md
- Concepts:
- Philosophy: philosophy.md
- Sovereignty Proof:
- sovereignty-proof/index.md
- 2026-05-15 RPI-leanness reframe: sovereignty-proof/evidence/2026-05-15-rpi-leanness-codex-reframe.md
- 2026-05-16 CDLC F6+F7 findings: sovereignty-proof/evidence/2026-05-16-cdlc-f6-f7-codex-findings.md
- Assurance Profile: assurance-profile.md
- Knowledge Flywheel: knowledge-flywheel.md
- The Science: the-science.md
- CDLC: cdlc.md
- Brownian Ratchet: brownian-ratchet.md
- Context Lifecycle: context-lifecycle.md
- Context Packet: context-packet.md
- Curation Pipeline: curation-pipeline.md
- Evolve Setup: evolve-setup.md
- Local Compute Routing: local-compute-routing.md
- Seed Definition: seed-definition.md
- Scale Without Swarms: scale-without-swarms.md
- Strategic Direction: strategic-direction.md
- Leverage Points: leverage-points.md
- Levels:
- levels/index.md
- L1 — Basics: levels/L1-basics/README.md
- L2 — Persistence: levels/L2-persistence/README.md
- L3 — State Management: levels/L3-state-management/README.md
- L4 — Parallelization: levels/L4-parallelization/README.md
- L5 — Orchestration: levels/L5-orchestration/README.md
- Comparisons:
- comparisons/README.md
- vs SDD: comparisons/vs-sdd.md
- vs GSD: comparisons/vs-gsd.md
- vs Superpowers: comparisons/vs-superpowers.md
- vs Claude-Flow: comparisons/vs-claude-flow.md
- vs Compound Engineer: comparisons/vs-compound-engineer.md
- Reference:
- reference/index.md
- Glossary: GLOSSARY.md
- Environment Variables: ENV-VARS.md
- Schemas: SCHEMAS.md
- Testing: TESTING.md
- CI/CD: CI-CD.md
- Releasing: RELEASING.md
- Incident Runbook: INCIDENT-RUNBOOK.md
- Troubleshooting: troubleshooting.md
- Agent Footguns: agent-footguns.md
- AgentOps Brief: agentops-brief.md
- AgentOps System Map: agentops-system-map.md
- Reference Deep-Dive: reference.md
- Contracts:
- contracts/index.md
- Repo Execution Profile: contracts/repo-execution-profile.md
- Autodev Program: contracts/autodev-program.md
- RPI Run Registry: contracts/rpi-run-registry.md
- Next-Work Queue: contracts/next-work.schema.md
- Finding Registry: contracts/finding-registry.md
- Finding Compiler: contracts/finding-compiler.md
- Hook Runtime Contract: contracts/hook-runtime-contract.md
- Headless Invocation: contracts/headless-invocation-standards.md
- Codex Skill API: contracts/codex-skill-api.md
- Context Assembly Interface: contracts/context-assembly-interface.md
- Session Intelligence Trust Model: contracts/session-intelligence-trust-model.md
- AgentOps Daemon: contracts/agentops-daemon.md
- GasCity Integration: contracts/gascity-integration.md
- AgentWorker Runtime: contracts/agent-worker.md
- OpenClaw Consumer API: contracts/openclaw-consumer-api.md
- Dream Run: contracts/dream-run-contract.md
- Dream Report: contracts/dream-report.md
- Swarm Evidence: contracts/swarm-evidence.md
- Scope Escape Report: contracts/scope-escape-report.md
- Dispatch Checklist: contracts/dispatch-checklist.md