Replace text diagrams with mermaid

This commit is contained in:
Suvin Nimnaka
2026-02-02 19:01:52 +05:30
committed by Sebastian
parent 9f4466c116
commit 8d4c8f0010
5 changed files with 153 additions and 71 deletions

View File

@@ -797,22 +797,35 @@ Commit the updated `.secrets.baseline` once it reflects the intended state.
## The Trust Hierarchy
<p align="center">
```mermaid
%%{init: {
'theme': 'base',
'themeVariables': {
'primaryColor': '#ffffff',
'primaryTextColor': '#000000',
'primaryBorderColor': '#000000',
'lineColor': '#000000',
'secondaryColor': '#f9f9fb',
'tertiaryColor': '#ffffff',
'clusterBkg': '#f9f9fb',
'clusterBorder': '#000000',
'nodeBorder': '#000000',
'mainBkg': '#ffffff',
'edgeLabelBackground': '#ffffff'
}
}}%%
flowchart TB
A["Owner (Peter)"] -- Full trust --> B["AI (Clawd)"]
B -- Trust but verify --> C["Friends in allowlist"]
C -- Limited trust --> D["Strangers"]
D -- No trust --> E["Mario asking for find ~"]
E -- Definitely no trust 😏 --> F[" "]
F:::Class_transparent_box
classDef Class_transparent_box fill:transparent, stroke:transparent
```
Owner (Peter)
│ Full trust
AI (Clawd)
│ Trust but verify
Friends in allowlist
│ Limited trust
Strangers
│ No trust
Mario asking for find ~
│ Definitely no trust 😏
```
</p>
## Reporting Security Issues