| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Your AI-powered meeting assistant that runs locally
CatsUp is a stealthy, cross-platform meeting assistant designed to run locally on your machine. It detects when you join a meeting, records the session, transcribes in real-time, and uses AI to generate summaries and answer questions about the discussion.
brew tap geiserx/catsup
brew install --cask catsupOr install directly:
brew install --cask geiserx/catsup/catsupDownload the latest release from the Releases page.
CatsUp is built with a decoupled architecture to ensure cross-platform compatibility:
| Layer | Description |
|---|---|
| Core UI | React + TypeScript + Vite |
| Windows | .NET 6 (WPF/WinForms) using WASAPI and Media Foundation |
| macOS | Swift (SwiftUI) using AVFoundation and ScreenCaptureKit |
| Linux | Python using Xlib/EWMH and FFmpeg |
| AI Backend | Cloud (OpenAI, Anthropic, Google) or Local (Whisper.cpp, Ollama, LLaVA) |
# Clone the repository
git clone https://github.com/GeiserX/CatsUp.git
cd CatsUp
# Build the UI
cd ui
npm install
npm run buildWindows:
cd platform/windows
dotnet runmacOS:
cd platform/macos
swift runLinux:
cd platform/linux
python main.pyThe project includes GitHub Actions workflows for automated cross-platform builds.
| Platform | Command |
|---|---|
| Windows | dotnet publish -c Release |
| macOS | swift build -c release |
| Linux | python -m PyInstaller |
CatsUp supports multiple AI providers for transcription, vision, and chat:
| Provider | Transcription | Vision | Chat |
|---|---|---|---|
| OpenAI | Whisper | GPT-4o | GPT-4o |
| Anthropic | — | Claude | Claude |
| Speech-to-Text | Gemini | Gemini | |
| Local | Whisper.cpp | LLaVA/Qwen-VL | Ollama |
Contributions are welcome! Please check out the development branch and read our contributing guidelines.
This project is licensed under the GNU General Public License v3.0 — see the LICENSE file for details.
| Back | FazBrowse Home | New Git URL |