Here's the blog post based on the tweet and repository.
Title: SuperCmd: An Open Source AI Launcher for macOS That Actually Gets Out of Your Way
Intro
You know the drill. You are deep in the terminal, your browser has 47 tabs open, and you need to find a specific folder, run a quick calculation, or draft a reply. You alt-tab, search, click, wait. It breaks the flow.
SuperCmd is an open source macOS launcher that wants to sit between you and your desktop, powered by AI but built for keystrokes. It is not trying to replace Spotlight or Raycast entirely. Instead, it focuses on the parts of your workflow where natural language makes more sense than precise paths. It is fast, local first, and the code is right there on GitHub for you to dig into.
What It Does
SuperCmd lives in your menu bar. You trigger it with a hotkey (default is Cmd + Space). Instead of just matching file names or app names, it lets you type what you want to do in plain English. Think "open the project notes from last Tuesday" or "summarize this clipboard text." It can handle file search, app launching, system commands, clipboard actions, and even some basic AI powered tasks like rewriting text or generating quick responses.
It works entirely offline for most core functions. The AI features use local models or your own API key if you want to hook into something bigger. It respects your privacy and your system resources.
Why It's Cool
The usual launcher zeroes in on exact matches. SuperCmd relaxes that constraint without going full chatbot. You can say "show me recent PDFs from Downloads" and it just works. No fuzzy search hell, no irrelevant web results.
The implementation is clean. It is built with SwiftUI and uses a plugin based architecture. You can write your own plugins in Swift or Python. That means if you want a command to "deploy the staging branch" or "find the last error log in Xcode," you can wire it up yourself. The codebase is well organized, the README includes a solid contribution guide, and the developer is active on issues.
It also runs fast. The launch is near instant. The AI responses stream in the same window, no popups, no context loss.
How to Try It
Head to the GitHub repo:
https://github.com/SuperCmdLabs/SuperCmd
You can download the latest release from the Releases page. It ships as a standalone .app bundle. Drag it to Applications, open it, set your hotkey, and you are good to go. If you want to build from source, clone the repo, open the Xcode project, and hit run. Swift Package Manager handles the dependencies.
For local AI f