Here. is a macOS-native, screen-aware teacher that lives in your menu bar.
Hold Control + Option, ask for help out loud, and Here. teaches you inside the app you are already using. It can see your screen, talk back, and point directly at the next control you should use.
Here. is currently fine-tuned around three creative lanes:
- Video editing: Final Cut Pro, DaVinci Resolve
- Graphic design: Blender, After Effects
- UI design: Figma
The goal is simple: less passive watching, more guided doing.
- Menu bar app with no dock icon
- Global push-to-talk shortcut:
Control + Option - Captures screenshots only when you ask for help
- Streams your voice to transcription
- Sends transcript plus screenshots to the creative coach backend
- Speaks the answer back with TTS
- Parses
[POINT:x,y:label]tags so the cursor companion can fly to tools on screen
- App: SwiftUI + AppKit menu bar app for macOS
- Screen capture: ScreenCaptureKit
- Speech-to-text: AssemblyAI streaming, with OpenAI/Apple fallbacks already in the codebase
- Coach response: streaming vision chat through a Cloudflare Worker proxy
- Text-to-speech: ElevenLabs through the same Worker
- Overlay: transparent cursor companion across monitors
The public product name is Here. The current source tree still uses StudioMate in file and target names internally.
cd worker
npm install
npx wrangler secret put ANTHROPIC_API_KEY
npx wrangler secret put ASSEMBLYAI_API_KEY
npx wrangler secret put ELEVENLABS_API_KEYSet your non-secret voice ID in worker/wrangler.toml:
[vars]
ELEVENLABS_VOICE_ID = "your-voice-id-here"Deploy it:
npx wrangler deployUpdate WorkerBaseURL in StudioMate/Info.plist with your deployed Worker URL.
For local Worker development, you can also run:
cd worker
npx wrangler devand temporarily set WorkerBaseURL to http://localhost:8787.
open /Users/veersaraf/Desktop/Codex/StudioMate.xcodeprojThen:
- Select the
StudioMatescheme - Set your signing team
- Run with
Cmd + R
Here. asks for:
- Microphone
- Accessibility
- Screen Recording
- Screen Content
It only captures the screen when the push-to-talk flow is active.
StudioMate/ # macOS app source
StudioMateApp.swift
CompanionManager.swift
CompanionPanelView.swift
OverlayWindow.swift
CreativeFocus.swift
CreativeCoachAPI.swift
worker/ # Cloudflare Worker proxy
src/index.ts
NOTICE.md # attribution for the inherited MIT base
Here. is a substantial derivative of farzaa/clicky, which is MIT-licensed. The original copyright notice is preserved in LICENSE, and a short attribution note lives in NOTICE.md.