nativ
Nativ is a native macOS app that lets you run AI models locally on Apple silicon, offering chat, model management, performance analytics, and an OpenAI/Anthropic-compatible API server.
It achieves this without injecting into the Dock or disabling System Integrity Protection, relying solely on Accessibility and ScreenCaptureKit APIs, and is fully notarized for easy installation.
DockPeek — dock-preview.app
Hover any running app in the macOS Dock and get a live preview of its windows — the way the Windows taskbar does it. Runs as a quiet menu-bar app; no Dock injection, no disabling SIP, no system-wide hacks.
.dmg from the Releases page.Prefer to build it yourself? See Build & run.
| Piece | API |
|---|---|
| Detect which Dock icon the cursor is over | Accessibility (AXUIElementCopyElementAtPosition, AXDockItem) |
| Resolve the icon to a running app | Dock item AXURL → bundle id → NSRunningApplication |
| Capture window thumbnails | ScreenCaptureKit (SCScreenshotManager.captureImage) |
| Show the preview | Borderless non-activating NSPanel above the icon |
It never injects into com.apple.dock. It only observes via the Accessibility
API and reads window images via ScreenCaptureKit — both gated behind one-time,
per-app macOS permissions.
Nothing is recorded, saved, or sent anywhere; images live only in memory to draw the thumbnail. A friendly onboarding window walks you through both, with a Relaunch button because Screen Recording only re-evaluates on launch.
./build.sh # compiles + assembles dock-preview.app + ad-hoc signs it
open ./dock-preview.app
Then grant the two permissions in the onboarding window. dock-preview.app lands
in the project root and launches on double-click.
Regenerate the icon after editing tools/make_icon.swift:
swift tools/make_icon.swift && ./build.sh
./package.sh # → dist/dock-preview-.zip and .dmg (ad-hoc
Just the Accessibility API to find the icon you're hovering + ScreenCaptureKit for live thumbnails. Two one-time permissions, then it runs quietly in the menu bar.
Similar projects matched by category, topics, and programming language.
Nativ is a native macOS app that lets you run AI models locally on Apple silicon, offering chat, model management, performance analytics, and an OpenAI/Anthropic-compatible API server.

Hermex is a native SwiftUI iPhone app that lets you control a self-hosted Hermes AI agent directly from your phone, with no subscriptions, tracking, or third-party relay.
A macOS command-line tool that uses Apple's on-device speech APIs to transcribe prerecorded audio into plain text, JSON, JSONL, SRT, or WebVTT.