Clipboard monitor that watches for specific content patterns and lets you route them to configured targets — instantly, with a single keypress.
It sits in your system tray, monitors the clipboard for regex matches (meeting links, Code With Me sessions, etc.), and pops up a compact window where you pick a target and hit Enter. Plugins handle the actual delivery — they're just executables that speak JSON over stdin/stdout.
cargo install tauri-cligit clone https://github.com/it-atelier-gn/clipygo.git
cd clipygo
npm install
cargo tauri dev
# or build a release binary
cargo tauri build
Everything is configured through the in-app settings window (tray icon → Settings). Config is stored at %APPDATA%\clipygo\config.json.
clipygo is extended through plugins — any executable that speaks JSON over stdin/stdout. Plugins provide targets, handle delivery, and can push real-time events back to clipygo. See the plugin docs for the full protocol reference, examples, and how to write your own.
Contributions are welcome. For substantial changes, open an issue first to discuss the approach.
cd src-tauri && cargo check && cargo clippy
MIT © 2026 Georg Nelles