-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
82 lines (78 loc) · 2.43 KB
/
Copy pathmkdocs.yml
File metadata and controls
82 lines (78 loc) · 2.43 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
site_name: Loop Engineering
site_description: An alpha Python runtime for budgeted, verifiable agent loops.
site_url: https://chillum-codex.github.io/loop-engineering/
repo_url: https://github.com/chillum-codeX/loop-engineering
repo_name: chillum-codeX/loop-engineering
edit_uri: edit/main/docs/
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.footer
- navigation.indexes
- toc.follow
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- content.action.edit
icon:
repo: fontawesome/brands/github
nav:
- Home: index.md
- Quickstart: QUICKSTART.md
- Tutorials:
- Overview: tutorials/index.md
- 1. Your first loop: tutorials/01-your-first-loop.md
- 2. Recovery and resilience: tutorials/02-recovery-and-resilience.md
- 3. Deterministic gates: tutorials/03-deterministic-gates.md
- 4. Persistence and checkpoints: tutorials/04-persistence-and-checkpoints.md
- Tool selection: tool-comparison.md
- Patterns:
- Daily triage: patterns/daily-triage.md
- PR babysitter: patterns/pr-babysitter.md
- CI sweeper: patterns/ci-sweeper.md
- Dependency sweeper: patterns/dependency-sweeper.md
- Changelog drafter: patterns/changelog-drafter.md
- Post-merge cleanup: patterns/post-merge-cleanup.md
- Issue triage: patterns/issue-triage.md
- Runtime specifications:
- State machine: STATE_MACHINE_SPECIFICATION.md
- Step lifecycle: STEP_LIFECYCLE_SPECIFICATION.md
- Recovery execution: RECOVERY_EXECUTION_SPECIFICATION.md
- Loop readiness levels: LOOP_READINESS_LEVELS.md
- Validation history: FINAL_VALIDATION_REPORT.md
markdown_extensions:
- tables
- fenced_code
- attr_list
- md_in_html
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
strict: true