Transform your clipboard text from the menu bar. Copy text, pick a transform, paste the result. No terminal, no web tools, no context switch.
I was constantly opening a terminal or a website just to uppercase a string, base64-encode an API key, or pretty-print some JSON. It's always the same flow: copy, transform, paste. PasteForge puts 37 transforms one click away in the menu bar. No context switch, no browser tab, no echo | base64.
brew tap scasella/tap
brew install --cask pasteforgeSigned, notarized, and stapled — no Gatekeeper warnings.
git clone https://github.com/scasella/PasteForge.git
cd PasteForge
chmod +x build.sh
./build.sh
open PasteForge.app- Copy any text (Cmd+C)
- Click the scissors icon in your menu bar
- See your clipboard text preview at the top
- Click any transform — result appears instantly
- Click "Copy to Clipboard" (or the result auto-replaces your clipboard)
- Paste (Cmd+V) wherever you need it
UPPERCASE, lowercase, Title Case, camelCase, snake_case, kebab-case, CONSTANT_CASE, Capitalize First
Base64 Encode/Decode, URL Encode/Decode, HTML Encode/Decode, Unicode Escape
JSON Pretty/Minify, Sort Lines, Unique Lines, Reverse Lines, Reverse Text, Trim Whitespace, Remove Blank Lines, Add Line Numbers, Remove Duplicates, Wrap in Quotes, Extract URLs, Extract Emails, Strip HTML
MD5, SHA-1, SHA-256
Character Count, Word Count, Line Count, Byte Size, Reading Time
API key as Base64 for auth headers:
Copy sk-abc123, click Base64 Encode → c2stYWJjMTIz
Snake case to camelCase:
Copy user_first_name, click camelCase → userFirstName
Pretty-print API response:
Copy {"name":"test","id":1}, click JSON Pretty → formatted JSON
Verify file hash: Copy file contents, click SHA-256 → hash string
Clean up messy text: Copy text with extra whitespace, click Trim Whitespace → clean text
- Dark theme matching macOS style
- Search/filter transforms by name
- Category filter chips (All, Case, Encode, Format, Hash, Stats)
- Clipboard auto-detection (polls every 1s)
- Green dot indicator when clipboard has text
- Result preview with character count
- One-click copy to clipboard
- Empty state when clipboard is empty
- No dock icon (menu bar only)
App doesn't appear in menu bar:
Make sure you're running the .app bundle or the compiled binary, not swift PasteForge.swift (which won't work with @main).
"No text on clipboard" when you've copied something: PasteForge only reads text from the clipboard. Images, files, and other non-text content won't be detected.
Transforms show "[Invalid JSON]" or "[Invalid Base64]": The input text isn't valid for that transform. This is expected behavior — the error message tells you what's wrong.
- macOS 14+
- Swift 6.0+
MIT
