dev-tools 3 min read

Hodor – macOS Prompt Launcher for AI Tools

Free open-source macOS app that saves your AI prompts and pastes them into any AI tool with one gesture. No more copy-paste loops.

By
Share: X in
Hodor macOS prompt launcher product thumbnail

TL;DR

TL;DR: Hodor is a free, open-source macOS menu bar app that stores your AI prompts and launches them into any AI tool with a single gesture — no more copy-pasting between apps.

Source and Accuracy Notes

What Is Hodor?

Hodor is a lightweight macOS menu bar application that acts as a centralized prompt library for AI tools. Instead of keeping prompts scattered across notes, files, or chat histories, you save them in Hodor once and trigger them from anywhere with a keyboard shortcut or menu bar click.

The core workflow:

You press shortcut → Hodor shows prompt list → You select → Hodor pastes into active AI tool

It works with ChatGPT, Claude, Cursor, Terminal, or any app that accepts text input. The developer describes it as a “701KB native macOS prompt launcher” — small, fast, and focused.

Setup Workflow

Step 1: Install

Download the latest .zip from hodor.design or build from source:

git clone https://github.com/jackjyk/hodor.git
cd hodor
swift build

If using the prebuilt release:

# Extract and move to Applications
unzip Hodor.zip -d /Applications/

Step 2: First Launch

Open Hodor from Applications. It will appear as a menu bar icon (a small H). Click the icon to access the prompt library.

Step 3: Add Your First Prompt

  1. Click the H menu bar icon
  2. Select Add Prompt
  3. Enter a name (e.g., “Code Review”) and the prompt text
  4. Assign a keyboard shortcut (optional but recommended)

Step 4: Trigger from Any App

With a prompt selected, press your assigned shortcut — Hodor pastes the prompt into whichever app has keyboard focus. No clipboard pollution, no switching windows.

Deeper Analysis

What makes it different from just using text snippets?

TextExpander and similar tools exist, but Hodor is purpose-built for AI prompts. It includes:

  • Prompt organization by category
  • Variable placeholders (planned)
  • Quick search across all saved prompts

Strengths:

  • Native macOS — no Electron bloat
  • 701KB binary size
  • Open source (auditable)
  • Completely free

Limitations:

  • No iCloud sync (yet)
  • Variables/placeholders not yet shipped
  • macOS only

Practical Evaluation Checklist

  • Installs in under 2 minutes
  • Menu bar icon is non-intrusive
  • Prompt insertion feels instant
  • Shortcuts work across app boundaries
  • No telemetry or external calls (verified from source)

Security Notes

Hodor is open source. You can audit the code at github.com/jackjyk/hodor before installing. It runs locally with no network calls for the core function — prompts stay on your machine.

FAQ

Q: Does it work on Intel and Apple Silicon Macs? A: Yes. It is a native macOS binary that runs on both architectures.

Q: Can I sync prompts across multiple Macs? A: Not yet natively. You can sync the prompts file via iCloud Drive or a git repo manually.

Q: Does it work with Claude Code or Cursor? A: Yes. Any app that accepts keyboard input can receive pasted prompts.

Conclusion

Hodor solves a real daily friction: the endless copy-paste loop between your prompt library and AI tools. At 701KB, it is orders of magnitude lighter than Electron-based alternatives. If you use multiple AI tools on macOS and find yourself repeating prompts, it is worth a try.

Install at hodor.design or build from source on GitHub.