Skip to content

Commit cbdfadb

Browse files
committed
updates to docs
1 parent dd9c552 commit cbdfadb

10 files changed

Lines changed: 1889 additions & 52 deletions

File tree

backend/.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
**Dockerfile
1212
**/requirements-dev.txt
1313
.example.env
14+
**/.plans/
1415
**/.venv/
1516
Makefile
1617
**/.vscode

backend/mkdocs.yml

Lines changed: 45 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,28 @@ site_dir: src/public/docs
33
docs_dir: ../docs
44
use_directory_urls: false
55
nav:
6-
- Home: /docs/
7-
# - Agents:
8-
# - Overview: agents/index.md
9-
# - API: /api#/Agent
10-
# - Settings:
11-
# - Overview: settings/index.md
12-
# - API: /api#/Settings
13-
# - Storage:
14-
# - Overview: storage/index.md
15-
# - API: /api#/Storage
16-
# - Threads:
17-
# - Overview: threads/index.md
18-
# - API: /api#/Thread
19-
- Tools:
6+
- Home: index.md
7+
- Getting Started: getting-started.md
8+
- Core Features:
9+
- Assistants:
10+
- Overview: assistants/index.md
11+
- API Reference: /api#/Assistant
12+
- Threads:
13+
- Overview: threads/index.md
14+
- API Reference: /api#/Thread
15+
- Storage:
16+
- Overview: storage/index.md
17+
- API Reference: /api#/Storage
18+
- Projects:
19+
- API Reference: /api#/Project
20+
- Prompts:
21+
- API Reference: /api#/Prompt
22+
- Tools & Integrations:
2023
- Overview: tools/tools.md
2124
- Search: tools/search.md
22-
- Shell: tools/shell_exec.md
2325
- MCP: tools/mcp.md
2426
- A2A: tools/a2a.md
25-
26-
- API: /api
27+
- API Documentation: /api
2728
theme:
2829
name: material
2930
features:
@@ -56,6 +57,33 @@ markdown_extensions:
5657
- pymdownx.details
5758
- pymdownx.tabbed:
5859
alternate_style: true
60+
- attr_list
61+
- md_in_html
62+
- def_list
63+
- footnotes
64+
- tables
65+
- toc:
66+
permalink: true
67+
toc_depth: 3
68+
69+
# Site metadata
70+
site_url: https://orchestra.enso.sh
71+
site_description: Composable AI Agent Infrastructure built on LangGraph with MCP & A2A protocol support
72+
site_author: Enso Labs
73+
74+
# Copyright
75+
copyright: Copyright © 2025 Enso Labs. All rights reserved.
76+
5977
extra:
6078
base_url: '/docs/'
6179
homepage: /
80+
social:
81+
- icon: fontawesome/brands/discord
82+
link: https://discord.com/invite/QRfjg4YNzU
83+
name: Join our Discord
84+
- icon: fontawesome/brands/github
85+
link: https://github.com/enso-labs
86+
name: Enso Labs on GitHub
87+
- icon: fontawesome/solid/link
88+
link: https://enso.sh/socials
89+
name: Follow us on social media

0 commit comments

Comments
 (0)