Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T01:25:52.451Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

book.toml

112 lines · 4.8 KB · toml
1[book]
2authors = ["The Zed Team"]
3language = "en"
4multilingual = false
5src = "src"
6title = "Zed"
7site-url = "/docs/"
8
9[build]
10extra-watch-dirs = ["../crates/docs_preprocessor"]
11
12# zed-html is a "custom" renderer that just wraps the
13# builtin mdbook html renderer, and applies post-processing
14# as post-processing is not possible with mdbook in the same way
15# pre-processing is
16# The config is passed directly to the html renderer, so all config
17# options that apply to html apply to zed-html
18[output.zed-html]
19command = "cargo run -p docs_preprocessor -- postprocess"
20# Set here instead of above as we only use it replace the `#description#` we set in the template
21# when no front-matter is provided value
22default-description = "Learn how to use and customize Zed, the fast, collaborative code editor. Official docs on features, configuration, AI tools, and workflows."
23default-title = "Zed Code Editor Documentation"
24no-section-label = true
25preferred-dark-theme = "dark"
26additional-css = ["theme/page-toc.css", "theme/plugins.css", "theme/highlight.css", "theme/consent-banner.css"]
27additional-js  = ["theme/page-toc.js", "theme/plugins.js", "theme/c15t@2.0.0-rc.3.js", "theme/analytics.js"]
28
29[output.zed-html.print]
30enable = false
31
32# Redirects for `/docs` pages.
33#
34# All of the source URLs are interpreted relative to mdBook, so they must:
35# 1. Not start with `/docs`
36# 2. End in `.html`
37#
38# The destination URLs are interpreted relative to `https://zed.dev`.
39# - Redirects to other docs pages should end in `.html`
40# - You can link to pages on the Zed site by omitting the `/docs` in front of it.
41[output.zed-html.redirect]
42# AI
43"/ai.html" = "/docs/ai/overview.html"
44"/assistant-panel.html" = "/docs/ai/agent-panel.html"
45"/assistant.html" = "/docs/assistant/assistant.html"
46"/assistant/assistant-panel.html" = "/docs/ai/agent-panel.html"
47"/assistant/assistant.html" = "/docs/ai/overview.html"
48"/assistant/commands.html" = "/docs/ai/agent-panel.html"
49"/assistant/configuration.html" = "/docs/ai/quick-start.html"
50"/assistant/context-servers.html" = "/docs/ai/mcp.html"
51"/assistant/contexts.html" = "/docs/ai/agent-panel.html"
52"/assistant/inline-assistant.html" = "/docs/ai/inline-assistant.html"
53"/assistant/model-context-protocol.html" = "/docs/ai/mcp.html"
54"/assistant/prompting.html" = "/docs/ai/skills.html"
55"/language-model-integration.html" = "/docs/assistant/assistant.html"
56"/model-improvement.html" = "/docs/ai/ai-improvement.html"
57"/ai/temperature.html" = "/docs/ai/agent-settings.html#model-temperature"
58"/ai/subscription.html" = "/docs/account/zed-hosted-models.html"
59"/ai/models.html" = "/docs/account/zed-hosted-models.html"
60"/ai/plans-and-usage.html" = "/docs/account/plans-and-pricing.html"
61"/ai/billing.html" = "/docs/account/billing.html"
62"/ai/configuration.html" = "/docs/ai/quick-start.html"
63"/ai/set-up-ai.html" = "/docs/ai/quick-start.html"
64
65# Core
66"/configuring-zed.html" = "/docs/reference/all-settings.html"
67
68# Collaboration
69"/channels.html" = "/docs/collaboration/channels.html"
70"/collaboration.html" = "/docs/collaboration/overview.html"
71
72# Community
73"/community/feedback.html" = "/community-links"
74"/conversations.html" = "/community-links"
75
76# Debugger
77"/debuggers.html" = "/docs/debugger.html"
78
79# MCP
80"/assistant/model-context-protocolCitedby.html" = "/docs/ai/mcp.html"
81"/context-servers.html" = "/docs/ai/mcp.html"
82"/extensions/context-servers.html" = "/docs/extensions/mcp-extensions.html"
83
84# Languages
85"/adding-new-languages.html" = "/docs/extensions/languages.html"
86"/elixir.html" = "/docs/languages/elixir.html"
87"/javascript.html" = "/docs/languages/javascript.html"
88"/languages/languages/html.html" = "/docs/languages/html.html"
89"/languages/languages/javascript.html" = "/docs/languages/javascript.html"
90"/languages/languages/makefile.html" = "/docs/languages/makefile.html"
91"/languages/languages/nim.html" = "/docs/languages/nim.html"
92"/languages/languages/ruby.html" = "/docs/languages/ruby.html"
93"/languages/languages/scala.html" = "/docs/languages/scala.html"
94"/python.html" = "/docs/languages/python.html"
95"/ruby.html" = "/docs/languages/ruby.html"
96
97# Zed development
98"/contribute-to-zed.html" = "/docs/development.html#contributor-links"
99"/contributing.html" = "/docs/development.html#contributor-links"
100"/developing-zed.html" = "/docs/development.html"
101"/development/development/linux.html" = "/docs/development/linux.html"
102"/development/development/macos.html" = "/docs/development/macos.html"
103"/development/development/windows.html" = "/docs/development/windows.html"
104
105# Our custom preprocessor for expanding commands like `{#kb action::ActionName}`,
106# and other docs-related functions.
107#
108# Comment the below section out if you need to bypass the preprocessor for some reason.
109[preprocessor.zed-docs-preprocessor]
110command = "cargo run -p docs_preprocessor --"
111renderer = ["html", "zed-html"]
112
Served at tenant.openagents/omega Member data and write actions are omitted.