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
- 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
- 7Show Statuz opening with text
- 8Create "Schedule Post" command
- 9Add date argument support
- 10Create "Open Calendar" quick command
- 11Add "Post Clipboard" script
- 12Demonstrate all commands from Raycast
- 13Show keyboard-only workflow
Key Features
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
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)}"`
);