-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
198 lines (183 loc) · 7.4 KB
/
Copy pathzensical.toml
File metadata and controls
198 lines (183 loc) · 7.4 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
# ============================================================================
# MESA Documentation site — Zensical configuration
#
# Built with Zensical (https://zensical.org/), a static site generator from
# the Material for MkDocs team. Run `zensical serve` to preview locally and
# `zensical build` to render to ./site/. GitHub Actions publishes ./site/ to
# GitHub Pages on every push to main (see .github/workflows/docs.yml).
# ============================================================================
[project]
site_name = "MESA — Metadata-Enabled Scientific Agents"
site_description = """
MESA is an NSF IDSS-funded prototype combining an open-source Data Lakehouse, \
a federated iRODS Data Mesh, and Agentic AI orchestration on leveraged NSF \
cyberinfrastructure. This site is the user and developer documentation hub \
for early adopters and project contributors.
"""
site_author = "MESA Project — University of Arizona & RENCI / UNC Chapel Hill"
site_url = "https://cyverse.github.io/mesa/"
copyright = """
Copyright © 2026 The Arizona Board of Regents on behalf of the
University of Arizona. MESA is supported by the NSF IDSS program.
Content licensed under CC BY 4.0; code under Apache 2.0.
"""
repo_name = "cyverse/mesa"
repo_url = "https://github.com/cyverse/mesa"
edit_uri = "edit/main/docs/"
nav = [
{ "Home" = "index.md" },
{ "Getting Started" = [
{ "Overview" = "getting-started/index.md" },
{ "For Early Adopters" = "getting-started/early-adopters.md" },
{ "Accessing MESA" = "getting-started/access.md" },
{ "First Analysis" = "getting-started/first-analysis.md" },
] },
{ "Project" = [
{ "Mission and Scope" = "project/index.md" },
{ "Innovation Goals" = "project/goals.md" },
{ "Work Breakdown Structure" = "project/wbs.md" },
{ "Organization & Governance" = "project/organization.md" },
{ "Schedule & Milestones" = "project/schedule.md" },
{ "Sustainability" = "project/sustainability.md" },
] },
{ "Components" = [
{ "Architecture Overview" = "components/index.md" },
{ "Data Lakehouse (DuckLake)" = "components/lakehouse.md" },
{ "iRODS Data Mesh" = "components/data-mesh.md" },
{ "Agentic AI & MCP" = "components/agentic-ai.md" },
{ "MCP Servers" = [
{ "Overview" = "components/mcp-servers/index.md" },
{ "mesa-mcp" = "components/mcp-servers/mesa-mcp.md" },
{ "mesa-ducklake" = "components/mcp-servers/mesa-ducklake.md" },
{ "irods-mcp-server" = "components/mcp-servers/irods-mcp-server.md" },
{ "formation-mcp" = "components/mcp-servers/formation-mcp.md" },
{ "terrain-mcp" = "components/mcp-servers/terrain-mcp.md" },
] },
] },
{ "Use Cases" = [
{ "Overview" = "use-cases/index.md" },
{ "UC1 — Agentic Discovery + Multi-Omics" = "use-cases/uc1-agentic-discovery.md" },
{ "UC2 — Geospatial + EHT" = "use-cases/uc2-geospatial-eht.md" },
{ "UC3 — IoT / Edge" = "use-cases/uc3-iot-edge.md" },
] },
{ "User Guide" = [
{ "Installing an MCP Client" = "user-guide/mcp-clients.md" },
{ "Connecting to CyVerse" = "user-guide/cyverse-auth.md" },
{ "Metadata with Ontologies" = "user-guide/metadata-ontologies.md" },
{ "Time-Travel Queries" = "user-guide/time-travel.md" },
{ "Troubleshooting" = "user-guide/troubleshooting.md" },
] },
{ "Developer Guide" = [
{ "Contributing" = "developer-guide/contributing.md" },
{ "Repository Layout" = "developer-guide/repos.md" },
{ "Local Development" = "developer-guide/local-dev.md" },
{ "Testing & CI" = "developer-guide/testing.md" },
{ "Security Review" = "developer-guide/security.md" },
] },
{ "Community" = [
{ "Early Adopter Program" = "community/index.md" },
{ "Workshops" = "community/workshops.md" },
{ "Educator Fellows" = "community/educator-fellows.md" },
{ "AI Ethics Advisory Board" = "community/ethics-board.md" },
{ "Contact & Support" = "community/contact.md" },
] },
{ "Policies" = [
{ "Data Governance" = "policies/data-governance.md" },
{ "AI Safety" = "policies/ai-safety.md" },
{ "Security & Compliance" = "policies/security.md" },
{ "License & Attribution" = "policies/license.md" },
] },
]
extra_css = ["stylesheets/extra.css"]
# ----------------------------------------------------------------------------
# Theme configuration
# ----------------------------------------------------------------------------
[project.theme]
language = "en"
features = [
"announce.dismiss",
"content.action.edit",
"content.action.view",
"content.code.annotate",
"content.code.copy",
"content.code.select",
"content.footnote.tooltips",
"content.tabs.link",
"content.tooltips",
"navigation.footer",
"navigation.indexes",
"navigation.instant",
"navigation.instant.prefetch",
"navigation.path",
"navigation.sections",
"navigation.tabs",
"navigation.tabs.sticky",
"navigation.top",
"navigation.tracking",
"search.highlight",
"toc.follow",
]
[project.theme.icon]
logo = "lucide/database"
# University of Arizona-leaning palette — red (UA cardinal) light, navy slate dark
[[project.theme.palette]]
scheme = "default"
primary = "red"
accent = "blue"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
scheme = "slate"
primary = "red"
accent = "blue"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"
# ----------------------------------------------------------------------------
# Social links shown in the footer
# ----------------------------------------------------------------------------
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/cyverse/mesa"
name = "MESA on GitHub"
[[project.extra.social]]
icon = "fontawesome/brands/python"
link = "https://pypi.org/project/mesa-mcp/"
name = "mesa-mcp on PyPI"
# ----------------------------------------------------------------------------
# Markdown extensions (carried over from Zensical defaults)
# ----------------------------------------------------------------------------
[project.markdown_extensions.abbr]
[project.markdown_extensions.admonition]
[project.markdown_extensions.attr_list]
[project.markdown_extensions.def_list]
[project.markdown_extensions.footnotes]
[project.markdown_extensions.md_in_html]
[project.markdown_extensions.toc]
permalink = true
[project.markdown_extensions.pymdownx.arithmatex]
generic = true
[project.markdown_extensions.pymdownx.betterem]
[project.markdown_extensions.pymdownx.caret]
[project.markdown_extensions.pymdownx.details]
[project.markdown_extensions.pymdownx.emoji]
emoji_generator = "zensical.extensions.emoji.to_svg"
emoji_index = "zensical.extensions.emoji.twemoji"
[project.markdown_extensions.pymdownx.highlight]
anchor_linenums = true
line_spans = "__span"
pygments_lang_class = true
[project.markdown_extensions.pymdownx.inlinehilite]
[project.markdown_extensions.pymdownx.keys]
[project.markdown_extensions.pymdownx.magiclink]
[project.markdown_extensions.pymdownx.mark]
[project.markdown_extensions.pymdownx.smartsymbols]
[project.markdown_extensions.pymdownx.superfences]
custom_fences = [
{ name = "mermaid", class = "mermaid", format = "pymdownx.superfences.fence_code_format" }
]
[project.markdown_extensions.pymdownx.tabbed]
alternate_style = true
combine_header_slug = true
[project.markdown_extensions.pymdownx.tasklist]
custom_checkbox = true
[project.markdown_extensions.pymdownx.tilde]