mermaid diagram

This commit is contained in:
John Lancaster
2026-06-18 21:49:08 -05:00
parent 85ae1fe8eb
commit c3dc66b20f
4 changed files with 155 additions and 40 deletions
+41 -38
View File
@@ -10,44 +10,47 @@ It also treats Markdown as the single source of truth for both MCP resources and
## Completed-State Layout
```text
project-root/
|
|- pyproject.toml
|- uv.lock
|- zensical.toml
|
|- docs/
| |- index.md
| |- architecture.md
| |- mcp_layout.md
|
|- site/
| |- ... static files built by zensical ...
|
|- skills/
| |- pytest-scaffolding/
| | |- SKILL.md
| | |- references/
| |- python-logging-dictconfig/
| | |- SKILL.md
| | |- references/
| |- fastapi-uv-docker/
| |- SKILL.md
| |- references/
|
|- src/
|- personal_mcp/
|- main.py
|- web/
| |- app.py
| |- docs_mount.py
|- catalog/
| |- server.py
|- skills/
|- pytest_scaffolding/
|- python_logging_dictconfig/
|- fastapi_uv_docker/
```mermaid
---
config:
themeVariables:
treeView:
labelColor: '#FFFFFF'
lineColor: '#FFFFFF'
---
treeView-beta
"project-root"
"pyproject.toml"
"uv.lock"
"zensical.toml"
"docs"
"index.md"
"architecture.md"
"mcp_layout.md"
"site"
"static build output"
"skills"
"pytest-scaffolding"
"SKILL.md"
"references"
"python-logging-dictconfig"
"SKILL.md"
"references"
"fastapi-uv-docker"
"SKILL.md"
"references"
"src"
"personal_mcp"
"main.py"
"web"
"app.py"
"docs_mount.py"
"catalog"
"server.py"
"skills"
"pytest_scaffolding"
"python_logging_dictconfig"
"fastapi_uv_docker"
```
Notes: