bash git clone https://github.com/webadderall/Recordly.git recordly cd recordly npm install npm run dev bash npm run build # Compile TypeScript npm run dist # Package with electron-builder bash xattr -rd com.apple.quarantine /Applications/Recordly.app recordly/ ├── src/ │ ├── main/ # Electron main process (capture, IPC, native helpers) │ ├── renderer/ # Electron renderer process (editor UI, PixiJS pipeline) │ ├── shared/ # Types, constants shared between main and renderer │ └── native/ # Platform-specific native helpers (macOS SCK, Windows WGC) ├── public/ # Static assets ├── CONTRIBUTING.md…