TestFlight Seat Monitor
by @jon-xo
Monitor available TestFlight beta slots with smart app lookups and silent batch checking. Get alerted when slots open up.
clawhub install testflight-monitorπ About This Skill
name: testflight-seat-monitor description: Monitor available TestFlight beta slots with smart app lookups and silent batch checking. Get alerted when slots open up. metadata: {"clawdbot":{"emoji":"π―","os":["darwin","linux"]}}
TestFlight Seat Monitor
Monitor available TestFlight beta slots with smart app name lookups and silent batch checking. Get alerted only when seats open up.
What It Does
Why This Exists
TestFlight betas fill up fast. This skill:
Installation
clawhub install testflight-monitor
Or clone from GitHub:
cd ~/.openclaw/workspace/skills
git clone https://github.com/jon-xo/testflight-monitor-skill.git testflight-monitor
cd testflight-monitor
Initial Setup
β οΈ Important: config/batch-config.json is user-specific and NOT shipped with defaults.
1. Initialize your config (one time)
cp config/batch-config.example.json config/batch-config.json
2. Add your TestFlight URLs
./testflight-monitor.sh add https://testflight.apple.com/join/YOUR_CODE_HERE
./testflight-monitor.sh add https://testflight.apple.com/join/ANOTHER_CODE
./testflight-monitor.sh list
3. Verify it works
./testflight-monitor.sh batch
Output: SILENT: No status changes detected. (or alert if available)
Quick Start
# Every hour check
openclaw cron add \
--name "TestFlight Monitor" \
--every 60m \
--target isolated \
--message "Run TestFlight batch check: ~/.openclaw/workspace/skills/testflight-monitor/testflight-monitor.sh batch. If output contains 'SILENT', reply NO_REPLY. Otherwise announce the findings."
Quick Start
4. Set up automated monitoring (cron - optional)
# Check every hour, silent unless slots open
openclaw cron add \
--name "TestFlight Monitor" \
--every 60m \
--target isolated \
--message "Run: ~/.openclaw/workspace/skills/testflight-monitor/testflight-monitor.sh batch. If output contains 'SILENT', reply NO_REPLY. Otherwise announce the findings."
Commands
Core Commands
lookup
Look up app name by TestFlight code
./testflight-monitor.sh lookup BnjD4BEf
Output: OpenClaw iOS
check
Check single TestFlight URL for availability
./testflight-monitor.sh check https://testflight.apple.com/join/BnjD4BEf
Output: Status: full | App: OpenClaw iOS
batch Check all configured URLs (silent unless status changed)
./testflight-monitor.sh batch
Output: SILENT: No status changes detected.
Or: π OpenClaw iOS beta now has open slots! https://...
Configuration Commands
list Show all monitored URLs with app names
./testflight-monitor.sh list
add
Add URL to batch monitoring
./testflight-monitor.sh add https://testflight.apple.com/join/Sq8bYSnJ
remove
Remove URL from batch monitoring
./testflight-monitor.sh remove https://testflight.apple.com/join/Sq8bYSnJ
config Show batch configuration (JSON)
./testflight-monitor.sh config
state Show current state (last known status for each app)
./testflight-monitor.sh state
Maintenance Commands
update-lookup Refresh lookup table from awesome-testflight-link
./testflight-monitor.sh update-lookup
Run weekly to keep app names current
Architecture
testflight-monitor/
βββ testflight-monitor.sh # Main CLI (entry point)
βββ lib/ # Modular components
β βββ lookup.sh # Code β app name resolver
β βββ check-single.sh # Single URL checker
β βββ check-batch.sh # Batch checker (silent mode)
βββ config/ # Configuration & state
β βββ testflight-codes.json # Community lookup table (~859 apps)
β βββ custom-codes.json # User overrides (private betas)
β βββ batch-config.json # Monitoring configuration
β βββ batch-state.json # State tracking
βββ tools/ # Utilities
β βββ update-lookup.sh # Refresh lookup table
βββ SKILL.md # This file
Configuration Files
batch-config.json
User-specific monitoring list. Not shipped with defaults; created during initial setup.
Example structure:
{
"links": [
"https://testflight.apple.com/join/YOUR_CODE_1",
"https://testflight.apple.com/join/YOUR_CODE_2"
],
"interval_minutes": 60
}
Manage via CLI:
./testflight-monitor.sh add
./testflight-monitor.sh remove
./testflight-monitor.sh list
Or edit directly (config/batch-config.json)
custom-codes.json
Add private betas not in the community list:
{
"BnjD4BEf": "OpenClaw iOS",
"YOUR_CODE": "Your App Name"
}
Silent by Default
The batch checker only outputs when status changes:
This prevents notification spam while keeping you informed.
Data Sources
Lookup table: awesome-testflight-link
update-lookup commandCustom codes: User-defined in config/custom-codes.json
Dependencies
curl - Fetch TestFlight pagesjq - JSON processingbash - Shell scripting (macOS/Linux)Examples
Monitor OpenClaw iOS Beta
cd ~/.openclaw/workspace/skills/testflight-monitor
./testflight-monitor.sh add https://testflight.apple.com/join/BnjD4BEf
./testflight-monitor.sh batch
Check Multiple Apps
./testflight-monitor.sh add https://testflight.apple.com/join/Sq8bYSnJ # Duolingo
./testflight-monitor.sh add https://testflight.apple.com/join/b9jMyOWt # Reddit
./testflight-monitor.sh list
Manual Status Check
./testflight-monitor.sh check https://testflight.apple.com/join/BnjD4BEf
Contributing
GitHub: https://github.com/jon-xo/testflight-monitor-skill Issues: Report bugs or request features Pull Requests: Improvements welcome
License
MIT License - see LICENSE file
Credits
Version History
1.0.0 (2026-02-11)
π‘ Examples
Monitor OpenClaw iOS Beta
cd ~/.openclaw/workspace/skills/testflight-monitor
./testflight-monitor.sh add https://testflight.apple.com/join/BnjD4BEf
./testflight-monitor.sh batch
Check Multiple Apps
./testflight-monitor.sh add https://testflight.apple.com/join/Sq8bYSnJ # Duolingo
./testflight-monitor.sh add https://testflight.apple.com/join/b9jMyOWt # Reddit
./testflight-monitor.sh list
Manual Status Check
./testflight-monitor.sh check https://testflight.apple.com/join/BnjD4BEf