AI Workflows

Free Mac apps every developer should know about in 2026

Paid productivity apps get all the attention; some of the best Mac dev tools are free. Here are the ones I install before reaching for my credit card.

Honam Kang5 min read

Mac developer culture skews paid — Forklift, BetterTouchTool, CleanShot, Tower, BBEdit. Many are excellent. But the free open-source alternatives matured dramatically in 2024-2026, and several are now best-in-class. This post is the curated list of free Mac dev tools worth installing before reaching for your credit card.

What "free" means here

Strictly free as in:

  • $0 to install and use indefinitely.
  • No feature crippling forcing upgrade.
  • No telemetry or data collection (or clearly opt-in).
  • Active maintenance.

Trial-ware and freemium-with-painful-limits don't qualify.

The free Mac dev essentials

File manager: mq-dir

brew install --cask mq-dir

Quad-pane native macOS file manager. State persistence. Per-tab preview. Open-source MIT, zero telemetry. v0.1.x but core is rock-solid.

For comparison: Forklift ($19.95) is more polished and has better SFTP; mq-dir is competitive on local quad-pane and free.

Terminal: Warp (free tier)

brew install --cask warp

Modern terminal with AI inline (free tier limits the AI calls but unlimited terminal use). iTerm2 alternative. Free for individual use.

True free alternatives: iTerm2 (brew install --cask iterm2), Ghostty.

Terminal multiplexer: cmux (or tmux)

brew install cmux
# or
brew install tmux

Both free, both open-source. cmux is purpose-built for AI sessions; tmux is general-purpose. Pick one.

Terminal file manager: Yazi (or nnn)

brew install yazi
# or
brew install nnn

Best terminal file managers in 2026. Yazi is async-aware with image preview; nnn is minimal. Both free, both MIT/BSD.

Editor: VS Code

brew install --cask visual-studio-code

Microsoft's free editor. Extensions ecosystem is unmatched. The pragmatic free choice.

For AI dev specifically: Cursor ($20/mo Pro) is the AI-first fork worth the pay; VS Code is fine if you want $0.

Alternatives: Zed (free), Neovim (brew install neovim).

Modern Unix tools

brew install fd ripgrep bat eza fzf zoxide
  • fd — modern find (fd <pattern> instead of find . -name "*pattern*").
  • ripgrep (rg) — modern grep (5-10x faster, sensible defaults).
  • batcat with syntax highlighting and line numbers.
  • ezals with colors, git status, tree view.
  • fzf — fuzzy finder for terminal (Ctrl+R for shell history).
  • zoxide — modern cd (z foo jumps to most-used foo directory).

These compound. Install once; daily benefit thereafter.

Window tiling: Rectangle

brew install --cask rectangle

Free Magnet alternative. Window tiling shortcuts.

True alternative: Magnet ($8 paid). Rectangle is just as good for free.

Spotlight replacement: Raycast (free tier)

brew install --cask raycast

Faster than Spotlight, scriptable, AI features in free tier (limited). Pro at $8/mo unlocks team features.

True alternative: Alfred (free, Powerpack at $34 for advanced features).

Git GUI: Fork (free)

brew install --cask fork

Free for individual use (donation-ware). Excellent for complex merges, history exploration. Tower is the paid alternative; Fork is just as capable for free.

Or skip entirely and use CLI git.

Hex viewer: Hex Fiend

brew install --cask hex-fiend

Free open-source hex viewer. Replaces Path Finder's hex module. Better than 0xED in our experience.

API testing: Bruno

brew install --cask bruno

Open-source Postman alternative. File-based collections (git-friendly). Free, MIT.

True alternative: Postman (free tier OK, paid features). Bruno is the FOSS replacement that works.

Automation: Hammerspoon

brew install --cask hammerspoon

Lua-scriptable macOS automation. Power-user tool. Free, MIT.

Paid alternative: Keyboard Maestro ($36, GUI-driven). Hammerspoon is more powerful if you write Lua.

Database GUI: TablePlus (free tier)

brew install --cask tableplus

Free tier supports 2 connections, 2 tabs. Sufficient for occasional database inspection. Pro is $89.

Open-source alternative: DBeaver Community.

Markdown editor: Typora (closed but free), or just any text editor

For long-form Markdown writing: Typora was free for years (now paid one-time). For 2026 free options, just use VS Code or Cursor with markdown preview extension.

Discord: communities

brew install --cask discord

Most open-source dev communities live here. Free.

Screen recording / GIFs: Kap

brew install --cask kap

Free screen-to-GIF/MP4 tool. Open-source.

Paid alternative: CleanShot X has GIF too. Kap is just-as-good for the GIF use case.

What's free but not worth it

Some "free" Mac apps to skip:

  • BalenaEtcher — yes free but use built-in dd or commercial alternatives. BalenaEtcher's UX has degraded.
  • Random "X cleaner" apps — most are scams or bloatware.
  • Free Mac App Store games — fine but not dev tools.

What I pay for despite the free options

Honest list of apps I pay for:

  • 1Password ($36/yr) — SSH key management + shared team vaults are unique features Bitwarden's free version doesn't fully cover.
  • Cursor ($20/mo Pro) — Cursor's AI integration is materially better than VS Code + Copilot for my workflow.
  • CleanShot X (~$30 one-time) — better than Kap for daily screenshots-with-annotation.
  • Anthropic API — variable, ~$50-100/mo for Claude Code use.

That's about $130-180/month total. Reasonable for full productivity. The free alternatives would cover ~80% of these workflows at $0.

A note on donation-ware

Many of the free apps in this list are donation-ware:

  • Hammerspoon
  • Fork (free for individual)
  • Hex Fiend
  • nnn
  • Yazi (sponsorship)

If you use them daily, donate. Free tools depend on community support; a $20/year donation per critical tool keeps them alive.

The all-free stack

If you want to go pure-free in 2026, here's a credible stack:

# Package manager
brew install --cask homebrew

# Terminal
brew install --cask iterm2          # or warp free tier

# Multiplexer + tools
brew install tmux yazi fd ripgrep bat eza fzf zoxide

# Editor
brew install --cask visual-studio-code

# File manager (GUI)
brew install --cask mq-dir

# Window tiling
brew install --cask rectangle

# Spotlight replacement
brew install --cask raycast

# Git
brew install git gh
brew install --cask fork

# Domain tools
brew install --cask hex-fiend bruno hammerspoon kap discord

# Password manager
brew install --cask bitwarden        # or stick with macOS Keychain

Total cost: $0. Covers ~95% of macOS dev work. The 5% gap is where you might pay (1Password vs Bitwarden, Cursor vs VS Code, etc.).

Why open-source matters in this list

Beyond cost, three reasons:

1. Auditability

You can read the source. mq-dir's persistence layer, Yazi's preview engine, Hammerspoon's bridge to macOS APIs — all readable. For privacy-conscious developers, this is real value.

2. Longevity

Path Finder is gone. iA Writer paid plus subscription. Closed-source paid Mac apps disappear or change models. Open-source projects can be forked even if abandoned.

3. No vendor lock-in

Your config and data are file-based. Migrate machines, OS versions, even OS families without losing setup.

Verdict

In 2026, "free" is a credible answer for serious Mac dev work. The combination of mq-dir + Yazi + Warp + VS Code + Hammerspoon + the modern Unix tools covers most workflows at $0.

Pay for the specific gaps where paid options are materially better (1Password, Cursor, CleanShot). Don't pay preemptively.

For the AI multi-tasking workflow specifically: install mq-dir + cmux + Yazi + VS Code + Cursor (paid). That's the most credible free + minimal-pay combination.

mq-dir leads this list because it's a category that didn't have a free quad-pane native option until recently. Free, MIT, no telemetry — install and see if it earns its dock space.

Open source

mq-dir is fully open source.

MIT licensed, zero telemetry. Read the source, file an issue, send a PR.

★ Star on GitHub →

Frequently asked questions

In 2026, yes for most categories. Open-source tools matured significantly in 2024-2026 (Yazi, mq-dir, Bruno). The 'pay $30/mo for productivity' assumption is dated for serious developers.

References

  1. [1]
  2. [2]

Ready to try mq-dir?

A native quad-pane file manager built for AI multi-tasking on macOS. Free, MIT licensed, zero telemetry.

v0.1.0-beta.12 · MIT · macOS 14.0+ · github