All 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 your schedule. Fast, modern launcher integration for efficient social media management.

How to Use

  1. 1Open Raycast preferences
  2. 2Create new script command
  3. 3Add "Compose Post" command
  4. 4Script opens: statuz://compose
  5. 5Add argument for text input
  6. 6Test: Cmd+Space → type "compose" → enter text
  7. 7Show Statuz opening with text
  8. 8Create "Schedule Post" command
  9. 9Add date argument support
  10. 10Create "Open Calendar" quick command
  11. 11Add "Post Clipboard" script
  12. 12Demonstrate all commands from Raycast
  13. 13Show keyboard-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.