Installation
MeetGist requires an Apple-Silicon Mac on macOS 14+.
MeetGist is free and open source, and not yet distributed as a notarized download — so you build it from source. It’s two commands.
Build & install
Prerequisites: Xcode (the full app, not just the Command Line Tools) and
XcodeGen — brew install xcodegen.
git clone https://github.com/MeetGist/meetgist.gitcd meetgistmake install-app # build, sign, and install /Applications/MeetGist.appopen /Applications/MeetGist.appmake install-app builds a Release app, signs it with a stable local identity
(created once, automatically), and copies it to /Applications. That stable
signature is what lets macOS remember your Microphone and Screen-Recording grants
across rebuilds — a plain ad-hoc Xcode build changes identity every time and would
keep re-asking and re-appearing as a “new” app. Always launch from /Applications,
not from Xcode.
Because the build is self-signed (not notarized), the first launch may show an “unidentified developer” notice — right-click the app and choose Open once.
The app is fully native — everything runs inside it, no Python or terminal needed.
Next: grant permissions and add your API key, both inside the app.