EveryDev.ai
Subscribe
Home
Tools

3,303+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Yap
    Yap icon

    Yap

    Voice Programming
    Featured

    Blazing-fast, open-source voice dictation for macOS that uses Apple's on-device Speech framework — no cloud, no API keys, no account required.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Completely free and open source under the MIT License. No account, no API key, no cost.

    Engagement

    Available On

    macOS
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Voice ProgrammingSpeech RecognitionProductivity Extensions

    Alternatives

    MutterField TheoryWispr Flow
    Developer
    FrigadeSan Francisco, CAEst. 2022$3M raised

    Listed Aug 2026

    About Yap

    Yap is a free, open-source macOS menu bar app built by Frigade that delivers on-device voice dictation using Apple's SpeechAnalyzer and SpeechTranscriber APIs introduced in macOS 26 (Tahoe). Press a global shortcut, speak, press it again, and your words are pasted directly into whatever text field you were using — no network calls, no model downloads, no account. The project is written in roughly 3,000 lines of native Swift, weighs about 4 MB, and idles around 60 MB of memory.

    What It Is

    Yap is a lightweight voice-to-text dictation tool that sits in the macOS menu bar and intercepts a configurable global shortcut. When triggered, a small overlay appears with a live waveform and a running partial transcript. Pressing the shortcut again pastes the final text into the previously focused app. Every transcript is saved locally in SwiftData with search, copy, and delete support. The app carries no speech model of its own — it delegates entirely to the models Apple ships with macOS 26, which means nothing is loaded into memory before the first word and no per-minute API cost is incurred.

    Why It Was Built

    The README explains the motivation directly: existing voice-to-text tools for macOS each hit some combination of cost, heavy model downloads (Whisper weights run to hundreds of megabytes), Electron-based memory overhead, or closed-source audio handling. macOS 26 changed the equation by shipping SpeechAnalyzer, an on-device streaming speech-to-text API that runs exclusively on Apple Silicon. The README cites a third-party benchmark showing Apple's model achieved a 2.12% word error rate on clean audio versus 3.74% for Whisper Small, running approximately three times faster across 5,559 LibriSpeech clips. Yap was built to expose that API in the smallest possible native wrapper.

    How It Works

    • Audio is captured via AVAudioEngine and buffered before the speech stack finishes initializing, so the first word is never clipped.
    • Transcription runs through SpeechAnalyzer with volatile (streaming) results enabled for the live preview. Older APIs like SFSpeechRecognizer are deliberately excluded because they can fall back to Apple's servers.
    • Text insertion writes to the clipboard, fires ⌘V via System Events, then restores the previous clipboard contents after a deliberate delay to handle Chromium-based apps that read the pasteboard asynchronously.
    • State is managed by a RecordingCoordinator state machine whose dependencies are all protocols, enabling unit tests without a physical microphone.

    Platform and Requirements

    Yap requires macOS 26 (Tahoe) or later on an Apple Silicon Mac. Intel support was intentionally dropped: the only path for Intel was SFSpeechRecognizer, which can send audio to Apple's servers, breaking the core privacy promise. Released builds are signed and notarized. Installation is available via Homebrew (brew install --cask frigadehq/tap/yap), direct .dmg download from GitHub Releases, or by building from source with Xcode 26.

    On first launch the app requests four permissions — Microphone, Speech Recognition, Accessibility, and Automation — and explains each one. Accessibility must be granted manually in System Settings, as macOS requires this of any app that types on behalf of the user.

    Update: Yap 0.1.5

    The latest release is v0.1.5, published on 2026-07-28. The repository was created on 2026-07-23 and last pushed on 2026-07-28, indicating rapid early development. The project's stated roadmap is intentionally minimal — a language picker is noted as the most likely next addition, since the current version follows the system locale. The README explicitly frames keeping the app small and focused as the primary design principle.

    Yap - 1

    Community Discussions

    Be the first to start a conversation about Yap

    Share your experience with Yap, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Completely free and open source under the MIT License. No account, no API key, no cost.

    • On-device transcription via Apple SpeechAnalyzer
    • Global shortcut dictation
    • Local transcript history
    • Live waveform preview
    • No network calls or telemetry

    Capabilities

    Key Features

    • On-device transcription via Apple's SpeechAnalyzer API
    • Global shortcut, fully rebindable, with optional single-modifier triggers
    • Pastes directly into the focused field of any app
    • Local transcript history with search, copy, and delete
    • Live waveform and partial transcript while speaking
    • Press escape twice to discard a dictation in progress
    • Follows system default microphone, including mid-session changes
    • Optional launch at login
    • No account, no network calls, no telemetry
    • Signed and notarized releases
    • Homebrew installation support

    Integrations

    Apple SpeechAnalyzer
    Apple SpeechTranscriber
    AVAudioEngine
    SwiftData
    System Events (macOS Automation)
    Homebrew
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Yap and help others make informed decisions.

    Developer

    Frigade

    Frigade builds native developer tools for in-product onboarding and AI-powered customer activation. Their products include Frigade Engage — for checklists, product tours, and onboarding flows — and Frigade Assistant, an in-app AI assistant that learns a product by using it to onboard, support, and activate customers. Yap is an open-source side project from the Frigade team, built to scratch their own itch for fast, private voice dictation on macOS.

    Founded 2022
    San Francisco, CA
    $3M raised
    4 employees

    Used by

    Sanity
    Arc
    Merge
    Productboard
    Read more about Frigade
    WebsiteGitHubX / Twitter
    1 tool in directory

    Similar Tools

    Mutter icon

    Mutter

    AI dictation app for Mac that transcribes speech, removes filler words, and uses Intent Mode to draft finished emails, messages, and notes — with a fully on-device private option.

    Field Theory icon

    Field Theory

    Local transcription, stackable screenshots, portable commands, and priority mic for builders, developers, and engineers.

    Wispr Flow icon

    Wispr Flow

    Wispr Flow is an AI-powered voice-to-text app that turns speech into clear, polished writing in every app on Mac, Windows, iPhone, and Android.

    Browse all tools

    Related Topics

    Voice Programming

    Tools that enable coding and development using voice commands.

    13 tools

    Speech Recognition

    AI tools that convert spoken language into text.

    47 tools

    Productivity Extensions

    Extensions and plugins that improve workflow and productivity.

    88 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions