All Features
developer
URL Scheme - Stealth Mode Background Posting
Execute actions silently without UI dialogs via stealthMode parameter
Automation workflows shouldn't show dialogs. Stealth mode performs URL scheme actions in background without confirmation dialogs or UI interruptions. Perfect for scheduled scripts, cron jobs, or batch automation running unattended.
How to Use
- 1Show script with multiple posts to schedule
- 2Add stealthMode=true to URLs
- 3Example: statuz://schedule?text=Post&date=...&stealthMode=true
- 4Execute script
- 5Show posts scheduling without dialogs
- 6No UI interruptions during batch
- 7All posts appear on calendar
- 8Verify notifications still work (optional)
- 9Demonstrate cron job scheduling
- 10Show automated posting running unattended
- 11Calendar fills without user interaction
- 12Compare to normal mode with dialogs
- 13Show stealth mode eliminating interruptions
Key Features
Why It's Critical
Automation scripts showing 20 confirmation dialogs defeats the purpose. Stealth mode makes true batch automation possible - execute hundreds of operations unattended.
Pro Tips
Example Batch Script
#!/bin/bash
# Schedule 50 posts without dialogs
for post in posts/*.txt; do
text=$(cat "$post")
date=$(get_schedule_time)
open "statuz://schedule?text=$text&date=$date&stealthMode=true"
sleep 0.5
done
echo "All posts scheduled silently"