OpenClicky is a native macOS menu-bar companion by Jason Kneen. It provides push-to-talk voice help, screen-aware responses, a cursor overlay for pointing at UI elements, and an Agent Mode dashboard for coding, research, writing, and automation tasks.
OpenClicky uses local configuration only. There is no Google login requirement and no hosted key-sync flow.
- macOS 14.2 or newer
- Xcode with the macOS SDK
- A signing team configured in Xcode for local runs
- Local API keys supplied outside the repository
leanring-buddy.xcodeprojandleanring-buddy/contain the macOS app target.leanring-buddyTests/contains focused app tests.leanring-buddyUITests/contains UI test scaffolding.AppResources/OpenClicky/contains bundled model instructions, skills, wiki seed, Codex runtime, and completion audio.appcast.xml,clicky-demo.gif, anddmg-background.pngsupport distribution and release packaging.docs/APP_UPDATES.mddocuments the Sparkle update feed and direct-distribution release flow.
The legacy leanring-buddy folder and scheme names are kept for project continuity. The product, bundle display name, and app identity are OpenClicky.
Do not commit API keys to this repository.
OpenClicky can read local secrets from:
- the in-app Settings fields
- launch environment variables
- a secrets file at
~/.config/openclicky/secrets.env - a custom file path set with
OPENCLICKY_SECRETS_FILE
Supported values:
ANTHROPIC_API_KEY=your_anthropic_key
ELEVENLABS_API_KEY=your_elevenlabs_key
ELEVENLABS_VOICE_ID=your_elevenlabs_voice_id
OPENAI_API_KEY=your_openai_or_codex_keyRecommended local setup:
mkdir -p ~/.config/openclicky
chmod 700 ~/.config/openclicky
$EDITOR ~/.config/openclicky/secrets.env
chmod 600 ~/.config/openclicky/secrets.envThe repo .gitignore excludes .env and .env.local, but the app no longer reads repo-local .env files. Keep secrets outside the project directory.
Open the project in Xcode:
open leanring-buddy.xcodeprojIn Xcode:
- Select the
leanring-buddyscheme. - Select the OpenClicky app target.
- Set your signing team.
- Run the app with
Cmd+R. - Grant Accessibility, Microphone, and Screen Recording permissions when macOS asks.
Do not use terminal xcodebuild for permission testing. macOS TCC permissions are tied to the signed app identity and install path, and throwaway command-line builds can cause permission loops.
For a lightweight syntax check that does not disturb macOS permissions, run swiftc -parse over the changed source files. Avoid launching unsigned or temporary build products for permission testing.
OpenClicky uses Sparkle for direct-distribution OTA updates. Installed builds check the signed appcast.xml feed from this repository's main branch, then download and install signed release DMGs from GitHub Releases. See docs/APP_UPDATES.md for the release checklist and appcast item template.
OpenClicky is maintained by Jason Kneen.
This project builds on the original open-source Clicky work:
- Original project: farzaa/clicky
- Original creator: Farza, GitHub @farzaa, X @FarzaTV
OpenClicky has also incorporated ideas and implementation patterns from these forks:
- @danpeg's danpeg/clicky, reviewed locally as
clicky-teach, for tutor-mode direction and idle observation behavior. - @milind-soni's milind-soni/tiptour-macos, for developer-menu/debug tooling patterns and related teaching-assistant UX ideas.
MIT. Copyright 2026 Jason Kneen. Portions are derived from or informed by the upstream MIT-licensed projects credited above.