Bug
The Repository Architecture section in README.md has two inaccuracies:
-
Stale folder name – the code-block root label is editor-v2/ instead of editor/.
Cloning the repo produces a directory called editor, not editor-v2. CONTRIBUTING.md and SETUP.md both use editor/ correctly.
-
Missing ui package – the packages list only shows core and viewer, but packages/ui (shared UI components) also exists and is documented in SETUP.md.
Current (incorrect)
editor-v2/
├── apps/
│ └── editor/ # Next.js application
├── packages/
│ ├── core/ # Schema definitions, state management, systems
│ └── viewer/ # 3D rendering components
Expected
editor/
├── apps/
│ └── editor/ # Next.js application
├── packages/
│ ├── core/ # Schema definitions, state management, systems
│ ├── viewer/ # 3D rendering components
│ └── ui/ # Shared UI components
Small documentation-only fix — happy to open a PR if helpful.
Bug
The Repository Architecture section in
README.mdhas two inaccuracies:Stale folder name – the code-block root label is
editor-v2/instead ofeditor/.Cloning the repo produces a directory called
editor, noteditor-v2.CONTRIBUTING.mdandSETUP.mdboth useeditor/correctly.Missing
uipackage – the packages list only showscoreandviewer, butpackages/ui(shared UI components) also exists and is documented inSETUP.md.Current (incorrect)
Expected
Small documentation-only fix — happy to open a PR if helpful.