-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
180 lines (174 loc) · 5.39 KB
/
mkdocs.yml
File metadata and controls
180 lines (174 loc) · 5.39 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
site_name: Lango
site_url: https://langoai.github.io/lango/
site_description: A high-performance AI agent built with Go
repo_name: langoai/lango
repo_url: https://github.com/langoai/lango
edit_uri: edit/main/docs/
copyright: Copyright © 2026 langoai - MIT License
theme:
name: material
logo: assets/logo.png
favicon: assets/logo.png
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: amber
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: amber
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.top
- navigation.indexes
- navigation.footer
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- toc.follow
plugins:
- search
- minify:
minify_html: true
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
toc_depth: 3
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- 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
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/langoai/lango
generator: false
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- Configuration Basics: getting-started/configuration.md
- Architecture:
- architecture/index.md
- System Overview: architecture/overview.md
- Project Structure: architecture/project-structure.md
- Data Flow: architecture/data-flow.md
- Features:
- features/index.md
- AI Providers: features/ai-providers.md
- Channels: features/channels.md
- Knowledge System: features/knowledge.md
- Observational Memory: features/observational-memory.md
- Embedding & RAG: features/embedding-rag.md
- Knowledge Graph: features/knowledge-graph.md
- Knowledge Ontology: features/ontology.md
- Multi-Agent Orchestration: features/multi-agent.md
- A2A Protocol: features/a2a-protocol.md
- P2P Network: features/p2p-network.md
- P2P Economy: features/economy.md
- Smart Contracts: features/contracts.md
- Observability: features/observability.md
- Skill System: features/skills.md
- Proactive Librarian: features/librarian.md
- System Prompts: features/system-prompts.md
- Smart Accounts: features/smart-accounts.md
- Config Presets: features/config-presets.md
- ZKP: features/zkp.md
- Learning: features/learning.md
- Agent Format: features/agent-format.md
- MCP Integration: features/mcp-integration.md
- RunLedger (Task OS): features/run-ledger.md
- Session Provenance: features/provenance.md
- Operational Alerting: features/alerting.md
- Exec Safety: features/exec-safety.md
- Cockpit TUI: features/cockpit.md
- Automation:
- automation/index.md
- Cron Scheduling: automation/cron.md
- Background Tasks: automation/background.md
- Workflow Engine: automation/workflows.md
- Security:
- security/index.md
- Encryption & Secrets: security/encryption.md
- PII Redaction: security/pii-redaction.md
- Tool Approval: security/tool-approval.md
- Authentication: security/authentication.md
- Payments:
- payments/index.md
- USDC Payments: payments/usdc.md
- X402 Protocol: payments/x402.md
- CLI Reference:
- cli/index.md
- Core Commands: cli/core.md
- Config Management: cli/config.md
- Agent & Memory: cli/agent-memory.md
- A2A Commands: cli/a2a.md
- Security Commands: cli/security.md
- Payment Commands: cli/payment.md
- P2P Commands: cli/p2p.md
- Economy Commands: cli/economy.md
- Contract Commands: cli/contract.md
- Metrics Commands: cli/metrics.md
- Automation Commands: cli/automation.md
- Status Dashboard: cli/status.md
- MCP Commands: cli/mcp.md
- Smart Account Commands: cli/smartaccount.md
- Provenance Commands: cli/provenance.md
- RunLedger Commands: cli/run.md
- Sandbox Commands: cli/sandbox.md
- Alerts Commands: cli/alerts.md
- Learning Commands: cli/learning.md
- Gateway & API:
- gateway/index.md
- HTTP API: gateway/http-api.md
- WebSocket: gateway/websocket.md
- Deployment:
- deployment/index.md
- Docker: deployment/docker.md
- Production Checklist: deployment/production.md
- Development:
- development/index.md
- Build & Test: development/build-test.md
- Configuration Reference: configuration.md