fix: replace subgraph diagram with simple 3-node flowchart — subgraphs with external connections break Mermaid layout
This commit is contained in:
parent
a2e1a4f7e0
commit
f4e6d87f62
1 changed files with 6 additions and 20 deletions
26
README.md
26
README.md
|
|
@ -11,27 +11,13 @@
|
|||
## How it works
|
||||
|
||||
```mermaid
|
||||
flowchart TB
|
||||
subgraph host["Your Machine"]
|
||||
secrets["Secrets and Keys"]
|
||||
folders["Workspace Folders"]
|
||||
end
|
||||
flowchart LR
|
||||
host["Your Machine<br/>Secrets and workspace folders"]
|
||||
container["Bounded Container<br/>Claude Code, Codex, Gemini"]
|
||||
repo["Git Repository<br/>Rules, state docs, scripts"]
|
||||
|
||||
subgraph container["Bounded Container — Agents Work Here"]
|
||||
claude["Claude Code"]
|
||||
codex["Codex CLI"]
|
||||
gemini["Gemini CLI"]
|
||||
end
|
||||
|
||||
subgraph repo["Git Repository — The Persistent Memory"]
|
||||
rules["Rules"]
|
||||
state["State Docs"]
|
||||
tools["Scripts"]
|
||||
end
|
||||
|
||||
folders -->|mounts into| container
|
||||
container <-->|reads before acting / writes when done| repo
|
||||
secrets -.->|stays on host — never enters container| host
|
||||
host -->|mounts into| container
|
||||
container -->|reads and writes| repo
|
||||
```
|
||||
|
||||
The container is bounded and disposable. The repository is permanent. Agents read the repo before every session — not the chat history — so context survives restarts, rebuilds, and parallel sessions.
|
||||
|
|
|
|||
Loading…
Reference in a new issue