This repository was archived by the owner on Jul 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
109 lines (104 loc) · 2.88 KB
/
Copy pathmkdocs.yml
File metadata and controls
109 lines (104 loc) · 2.88 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
site_name: Agent Kernel
site_description: Framework-agnostic foundation for AI agent systems
site_url: https://agent-kernel.github.io/agent-kernel/
repo_url: https://github.com/agent-kernel/agent-kernel
repo_name: agent-kernel/agent-kernel
validation:
nav:
omitted_files: info
not_found: warn
absolute_links: info
links:
not_found: info
anchors: info
unrecognized_links: info
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
- content.tabs.link
palette:
- scheme: default
primary: deep purple
accent: amber
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: deep purple
accent: amber
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- gen-files:
scripts:
- scripts/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
paths: [src]
options:
docstring_style: google
show_source: true
show_root_heading: true
show_symbol_type_heading: true
members_order: source
merge_init_into_class: true
show_if_no_docstring: false
signature_crossrefs: true
- mermaid2
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid_custom
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Quickstart: getting-started/quickstart.md
- Concepts:
- concepts/index.md
- Schema Contracts: concepts/schemas.md
- Tool Broker: concepts/tool-broker.md
- Executor: concepts/executor.md
- Context Assembler: concepts/context-assembler.md
- Tracing: concepts/tracing.md
- Guides:
- guides/index.md
- Architecture: guides/architecture.md
- Framework Agnosticism: guides/framework-agnosticism.md
- Trust Boundaries: guides/trust-boundaries.md
- Thinking Escalation: guides/thinking-escalation.md
- Skills System: guides/skills.md
- Public/Private Separation: guides/public-private.md
- Examples:
- examples/index.md
- Minimal Agent: examples/minimal-agent.md
- Personal Assistant: examples/personal-assistant.md
- Multi-Agent Debate: examples/multi-agent-debate.md
- Tool Workflow: examples/tool-workflow.md
- API Reference: reference/
- Contributing: contributing.md
- Changelog: changelog.md