Folder Tree
This tree shows the final production structure for FABRABS.
/fabrabs-root
│
├── globals/
│ ├── server.js
│ ├── db/
│ ├── auth/
│ ├── permissions/
│ ├── middleware/
│ ├── events/
│ ├── config/
│ └── orchestrator/
│
├── frontends/
│ ├── admin/
│ │ ├── frobals/
│ │ ├── modules/
│ │ ├── index.html
│ │ └── vite.config.js
│ ├── staff/
│ ├── mobile/
│ └── tv/
│
├── modules/
│ ├── messenger/
│ │ ├── agent/
│ │ │ ├── startup.js
│ │ │ ├── agent_rules.md
│ │ │ ├── court_orders.md
│ │ │ ├── linkmap_agent.json
│ │ │ ├── user.log
│ │ │ └── system.log
│ │ ├── content/
│ │ │ ├── backend/
│ │ │ ├── frontend/
│ │ │ └── manifest.json
│ │ └── public_sharepoints/
│ │
│ ├── boards/
│ ├── scheduling/
│ ├── hr/
│ └── more...
│
├── orchestrator/
│ ├── main.js
│ ├── contracts/
│ ├── linkmap_active.json
│ ├── risk_engine.js
│ ├── versioning.js
│ ├── sandbox_runner.js
│ └── api/
│
└── docs/
FABRABS separates concerns clearly:
- modules/ = autonomous units
- globals/ = shared system skeleton
- frontends/ = UI surfaces
- orchestrator/ = control tower
- docs/ = documentation