v1.3.0 · macOS 14+ · Swift 5.9
Clip

Clip

Your content toolkit, in the menu bar.

Manage assets, transform Markdown, format text for social media. Menu bar app + CLI. Zero dependencies.

clip — v1.3.0
# Markdown to HTML
$ echo "# Hello **world**" | clip md2html
<h1>Hello <strong>world</strong></h1>

# Unicode styling for social media
$ echo "**bold** and _italic_" | clip md2social
𝐛𝐨𝐥𝐝 and 𝒊𝒕𝒎𝒐𝒊𝒌

# Back up your entire vault
$ clip export --file ~/Dropbox/clip-backup.json
Exported 42 assets to ~/Dropbox/clip-backup.json

Everything you need, one panel away

Four tabs. No Dock icon. Always accessible from your menu bar.

🗂

Asset Vault

Drag images and text in from anywhere. Organise into folders. Drag back out to Keynote, Pages, or any app.

Smart Transform

Paste anything — auto-detects Markdown, HTML, CSV, TSV, or plain text. Side-by-side split view for comparison.

𝐀

Text Formatter

Unicode bold, italic, monospace, script, small caps. Convert full Markdown to social-media-ready styled text.

Asset Vault

Your content, always one drag away

Drop images, text snippets, and files into the vault from Finder, browsers, or any app. Organise with nested folders. Search instantly. Drag assets back out to your presentation or document.

  • Drag & drop from any app
  • Nested folder organisation
  • Grid or compact list view
  • Full-text search across all assets
  • Persistent JSON storage — survives restarts
~/Library/Application Support/Clip/
├── assets.json   42 items
├── 📁 Screenshots/
│   ├── hero-banner.png
│   └── logo-dark.svg
├── 📁 Blog Posts/
│   └── draft-intro.md
└── 📋 Clipboard History (12)
Input (auto-detected: TSV)
Item Price Qty
Apple $1.00 5
Banana $0.50 10
Output (Markdown table)
| Item | Price | Qty |
|------|-------|-----|
| Apple | $1.00 | 5 |
| Banana | $0.50 | 10 |
⇄ Split view · Auto-detect · Copy · Drag RTF
Smart Transform

Paste anything. Get the right output.

Clip auto-detects what you pasted and shows only the relevant conversions. Markdown, HTML, CSV, TSV, plain text — all handled. Toggle side-by-side split view to compare input and output.

  • Markdown → HTML with live preview
  • TSV/CSV ↔ Markdown tables
  • HTML → Markdown
  • Drag rendered preview as RTF into any app
Text Formatter

Unicode styling. No special apps needed.

Style text with Unicode characters that work on LinkedIn, Twitter, Facebook — anywhere plain text is accepted. Two modes: Format (toolbar actions) and Convert (full document transforms).

  • 8 styles: bold, italic, monospace, script, small caps…
  • MD → Unicode: full document conversion
  • Bullet lists, numbered lists, separators
  • One-click revert to plain ASCII
Input:
**Launching today!**
Check out our _new features_.
Output (MD → Unicode):
𝓛𝓪𝓾𝓷𝓬𝓱𝓲𝓷𝓰 𝓽𝓸𝓭𝓪𝓲!
Check out our 𝒊𝒎𝒖 𝒏𝒎𝒎𝒕𝒖𝒋𝒎𝒔.
💾

Export / Import

Back up your vault as JSON. Restore on any Mac. GUI dialogs in the app, or use the CLI for scripting and cron jobs.

clip export --file ~/backup.json
clip import --file ~/backup.json
🔄

Auto-Update

Clip checks GitHub Releases on launch. When a new version is available, one click downloads the latest DMG. Manual check from the menu bar anytime.

Update available: v1.3.1  →  Download

Up and running in 60 seconds

Five steps from download to your first transform.

1

Download the DMG

Grab Clip-1.3.0.dmg from the latest GitHub release. The DMG contains the app, the CLI binary, and an installer script.

Download latest release →
2

Install the app

Open the DMG and drag Clip.app to /Applications.

3

Bypass Gatekeeper

The app isn't notarized yet. Run this once in Terminal to remove the quarantine flag:

$ xattr -rd com.apple.quarantine /Applications/Clip.app
4

Launch Clip

Double-click Clip.app. A paperclip icon appears in your menu bar. Left-click to open the panel. Right-click for the menu (theme, clipboard history, export/import, updates).

5

Install the CLI (optional)

Double-click "Install CLI.command" inside the DMG. This copies the clip binary to /usr/local/bin.

$ clip md2html --clipboard   # transform clipboard in-place
Quick access: Press ⌘+Shift+C from any app, or shake your mouse to reveal the panel instantly.

Questions & Answers

Is Clip free?
Yes. Clip is free and open source under the MIT license. No accounts, no telemetry, no ads. The full source code is on GitHub.
Why does macOS block the app?
Clip isn't signed with an Apple Developer certificate (notarization costs $99/year). macOS Gatekeeper quarantines unsigned apps by default. Running xattr -rd com.apple.quarantine /Applications/Clip.app removes the flag safely. The app contains no network calls except the optional update checker to GitHub.
Where is my data stored?
Everything is stored locally in ~/Library/Application Support/Clip/ as plain JSON files. No cloud, no sync, no external services. Use clip export to create portable backups.
Can I sync across multiple Macs?
There's no built-in sync yet, but you can use export/import with a shared folder. Schedule a cron job to auto-export to Dropbox or iCloud Drive:
0 2 * * * clip export --file ~/Dropbox/clip-backup.json
Does Clip have any dependencies?
Zero. Pure Swift + AppKit + SwiftUI + WebKit. No Homebrew formulas, no Node modules, no CocoaPods. The app binary is fully self-contained.
How do I access Clip quickly?
Three ways: 1) Click the paperclip icon in your menu bar. 2) Press ⌘+Shift+C from any app. 3) Shake your mouse vigorously — the panel pops up instantly.