AI buddy next to your cursor on macOS, running on your own Claude subscription
See the code
An AI buddy that lives next to your cursor on macOS. It sees your screen, talks with you, and points at things.
Runs on your own Claude subscription, so there's no extra subscription to pay.
Download for macOS · Install · How it works · Build from source
https://github.com/user-attachments/assets/74c5427b-ddbb-4436-b680-4bc5aa3d568c
YoClicky is a free, open-source take on Clicky / HeyClicky. Hold a shortcut, ask a question out loud, and a small cursor next to yours answers, then flies over to the button, menu or line of code it's talking about.
HeyClicky routes everything through its own servers and charges a subscription. YoClicky instead uses the Claude Code command-line tool already on your Mac, logged in with your Claude Pro or Max plan. No API keys, no accounts, no YoClicky servers.
control + option, speak, release. YoClicky looks at your screen, answers out loud, and points at what it means.control for a chat window, when you can't talk.control + shift and speak: your words are typed into whatever text field you're in. Uses no tokens.curl -fsSL https://claude.ai/install.sh | bash
claude # log in once with your Claude account, then quit
YoClicky-x.y.dmg from the latest release.In Settings → AI → Test Connection you can check that YoClicky reaches Claude with your account.
YoClicky is free and not notarized by Apple (that costs $99 a year), so the first time you open it macOS says it "could not verify" the app. That's expected. You only do this once:
Or, in Terminal: xattr -dr com.apple.quarantine /Applications/YoClicky.app, then open it normally.
The code is all here, and you can build it yourself if you'd rather not trust a download.
| Shortcut | What it does |
|---|---|
Hold control + option | Ask YoClicky out loud |
Double-tap control | Open or close the text chat |
Hold control + shift | Dictate into the current text field |
All of them can be changed in Settings → Shortcuts.
you speak ──► Apple speech recognition (on your Mac)
│
▼
question + screenshot ──► `claude -p` (Claude Code CLI, your account) ──► answer
│
┌───────────────────────────────────────────────────┘
▼
macOS voice reads it out, the cursor flies to what it's pointing at
Is it really free? YoClicky is free. It needs a Claude Pro or Max plan, which you may already have. It uses that plan instead of a second subscription.
How much of my Claude plan does it use? A question is roughly 5,000 tokens with a screenshot and the cursor close-up, or about 1,500 in Caveman style. Questions Auto sends to Opus use your plan faster than Sonnet. Settings → AI explains what each option costs.
Is it affiliated with Anthropic or HeyClicky? No. It's an independent open-source project built on the MIT-licensed original Clicky. It uses Anthropic's official Claude Code CLI; please follow Anthropic's usage policies and terms for your plan.
Why is my Mac warning me when I open it? Releases aren't notarized by Apple yet, which requires a paid Apple developer account. See step 3 of Install, or build it yourself.
Something doesn't work. Settings → General → Open Logs shows what happened. Please open an issue and include the relevant lines.
Needs Xcode 26 or later (the Liquid Glass code needs the macOS 26 SDK; the app itself still runs on macOS 14.2+).
git clone https://github.com/mekanikal-ch/yoclicky.git
cd yoclicky
open leanring-buddy.xcodeproj # or build from the command line:
SIGN_IDENTITY="Apple Development" scripts/build-local.sh # builds, signs and installs to /Applications
scripts/build-dmg.sh # builds dist/YoClicky-<version>.dmg
build-local.sh signs with a certificate from your keychain, so macOS keeps your permissions between rebuilds. List yours with security find-identity -v -p codesigning.
MIT, see LICENSE.
13 commits
1 commits
Swift
98.8%
Shell
1.2%
AI buddy next to your cursor on macOS, running on your own Claude subscription
See the code
An AI buddy that lives next to your cursor on macOS. It sees your screen, talks with you, and points at things.
Runs on your own Claude subscription, so there's no extra subscription to pay.
Download for macOS · Install · How it works · Build from source
https://github.com/user-attachments/assets/74c5427b-ddbb-4436-b680-4bc5aa3d568c
YoClicky is a free, open-source take on Clicky / HeyClicky. Hold a shortcut, ask a question out loud, and a small cursor next to yours answers, then flies over to the button, menu or line of code it's talking about.
HeyClicky routes everything through its own servers and charges a subscription. YoClicky instead uses the Claude Code command-line tool already on your Mac, logged in with your Claude Pro or Max plan. No API keys, no accounts, no YoClicky servers.
control + option, speak, release. YoClicky looks at your screen, answers out loud, and points at what it means.control for a chat window, when you can't talk.control + shift and speak: your words are typed into whatever text field you're in. Uses no tokens.curl -fsSL https://claude.ai/install.sh | bash
claude # log in once with your Claude account, then quit
YoClicky-x.y.dmg from the latest release.In Settings → AI → Test Connection you can check that YoClicky reaches Claude with your account.
YoClicky is free and not notarized by Apple (that costs $99 a year), so the first time you open it macOS says it "could not verify" the app. That's expected. You only do this once:
Or, in Terminal: xattr -dr com.apple.quarantine /Applications/YoClicky.app, then open it normally.
The code is all here, and you can build it yourself if you'd rather not trust a download.
| Shortcut | What it does |
|---|---|
Hold control + option | Ask YoClicky out loud |
Double-tap control | Open or close the text chat |
Hold control + shift | Dictate into the current text field |
All of them can be changed in Settings → Shortcuts.
you speak ──► Apple speech recognition (on your Mac)
│
▼
question + screenshot ──► `claude -p` (Claude Code CLI, your account) ──► answer
│
┌───────────────────────────────────────────────────┘
▼
macOS voice reads it out, the cursor flies to what it's pointing at
Is it really free? YoClicky is free. It needs a Claude Pro or Max plan, which you may already have. It uses that plan instead of a second subscription.
How much of my Claude plan does it use? A question is roughly 5,000 tokens with a screenshot and the cursor close-up, or about 1,500 in Caveman style. Questions Auto sends to Opus use your plan faster than Sonnet. Settings → AI explains what each option costs.
Is it affiliated with Anthropic or HeyClicky? No. It's an independent open-source project built on the MIT-licensed original Clicky. It uses Anthropic's official Claude Code CLI; please follow Anthropic's usage policies and terms for your plan.
Why is my Mac warning me when I open it? Releases aren't notarized by Apple yet, which requires a paid Apple developer account. See step 3 of Install, or build it yourself.
Something doesn't work. Settings → General → Open Logs shows what happened. Please open an issue and include the relevant lines.
Needs Xcode 26 or later (the Liquid Glass code needs the macOS 26 SDK; the app itself still runs on macOS 14.2+).
git clone https://github.com/mekanikal-ch/yoclicky.git
cd yoclicky
open leanring-buddy.xcodeproj # or build from the command line:
SIGN_IDENTITY="Apple Development" scripts/build-local.sh # builds, signs and installs to /Applications
scripts/build-dmg.sh # builds dist/YoClicky-<version>.dmg
build-local.sh signs with a certificate from your keychain, so macOS keeps your permissions between rebuilds. List yours with security find-identity -v -p codesigning.
MIT, see LICENSE.
13 commits
1 commits
Swift
98.8%
Shell
1.2%