Raycast Extension Integration All Features (/features)developer Raycast Extension Integration Control Statuz from Raycast launcher with custom commands Raycast users can integrate Statuz via URL schemes and custom scripts. Create quick commands: compose posts, schedule content, open calendar, or query. How to Use • 1Open Raycast preferences • 2Create new script command • 3Add "Compose Post" command • 4Script opens: statuz://compose • 5Add argument for text input • 6Test: Cmd+Space → type "compose" → enter text • 7See Statuz open with text • 8Create "Schedule Post" command • 9Add date argument support • 10Create "Open Calendar" quick command • 11Add "Post Clipboard" script • 12Try all commands from Raycast • 13Keyboard-only workflow Key Features • Custom Commands - Create Statuz commands in Raycast • Script Support - JavaScript/Node scripts with URL schemes • Argument Passing - Text and parameters via command args • Clipboard Commands - Post clipboard content • Quick Actions - Launch composer, calendar, settings • Keyboard Driven - Cmd+Space → command → done • Template Commands - Share with Raycast community • Modern Launcher - Sleek interface for efficiency • Fast Execution - Instant command processing • Multiple Commands - Build complete command library • Hotkeys - Assign specific hotkeys to commands • Organized Categories - Group Statuz commands • Community Extensions - Share and download workflows Why Raycast Users Love It Raycast is modern, fast, and extensible. Statuz integration via URL schemes creates powerful command palette for social media - compose, schedule, manage from Raycast's beautiful interface. Pro Tips • Cmd+Space launches Raycast → type Statuz commands • Script commands for complex workflows • URL schemes for simple actions • Clipboard integration: Copy → Raycast → Post • Argument support: Pass text, dates, platforms • Quicklinks: Save frequent statuz:// URLs • Aliases: Short aliases for long commands • Hotkeys: Assign keys directly to commands • Fallback commands: Chain multiple Statuz actions • Extensions marketplace: Share Statuz commands Example Raycast Commands Quick Compose: #!/usr/bin/env node const text = process.argv[2]; require('child_process').exec( `open "statuz://compose?text=${encodeURIComponent(text)}"` ); Schedule from Clipboard: #!/usr/bin/env node const clipboard = require('clipboard').paste(); require('child_process').exec( `open "statuz://schedule?text=${encodeURIComponent(clipboard)}"` ); Try Statuz today, it's free. Download for macOS (/download)