详细分析 ▾
运行时依赖
版本
Rebranding: Better name to describe available seat monitoring. Functionality unchanged.
安装命令 点击复制
技能文档
Monitor available TestFlight beta slots with smart app name lookups and silent batch checking. Get alerted only when seats open up.
What It Does
- Lookup TestFlight codes → app names using community data
- Check single URLs for immediate status
- Batch monitoring with state tracking (silent by default)
- Only alerts on changes (full → available)
- Configurable intervals (30min - 3hr recommended)
Why This Exists
TestFlight betas fill up fast. This skill:
- Monitors multiple betas in one job
- Stays silent unless something changes
- Uses human-readable app names (not cryptic codes)
- Tracks state across checks to detect transitions
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 check batch
Check all configured URLs (silent unless status changed)
list
Show all monitored URLs with app names
add remove config
Show batch configuration (JSON)
state
Show current state (last known status for each app)
update-lookup
Refresh lookup table from awesome-testflight-link
User-specific monitoring list. Not shipped with defaults; created during initial setup. Example structure:
Manage via CLI:
Or edit directly ( Add private betas not in the community list:
The batch checker only outputs when status changes:
This prevents notification spam while keeping you informed. Lookup table: awesome-testflight-link
Custom codes: User-defined in GitHub: https://github.com/jon-xo/testflight-monitor-skill
Issues: Report bugs or request features
Pull Requests: Improvements welcome MIT License - see LICENSE file 1.0.0 (2026-02-11)
Look up app name by TestFlight code
./testflight-monitor.sh lookup BnjD4BEf
# Output: OpenClaw iOS
Check single TestFlight URL for availability
./testflight-monitor.sh check https://testflight.apple.com/join/BnjD4BEf
# Output: Status: full | App: OpenClaw iOS
./testflight-monitor.sh batch
# Output: SILENT: No status changes detected.
# Or: 🎉 OpenClaw iOS beta now has open slots! https://...
Configuration Commands
./testflight-monitor.sh list
Add URL to batch monitoring
./testflight-monitor.sh add https://testflight.apple.com/join/Sq8bYSnJ
Remove URL from batch monitoring
./testflight-monitor.sh remove https://testflight.apple.com/join/Sq8bYSnJ
./testflight-monitor.sh config
./testflight-monitor.sh state
Maintenance Commands
./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
{
"links": [
"https://testflight.apple.com/join/YOUR_CODE_1",
"https://testflight.apple.com/join/YOUR_CODE_2"
],
"interval_minutes": 60
}
./testflight-monitor.sh add config/batch-config.json)custom-codes.json
{
"BnjD4BEf": "OpenClaw iOS",
"YOUR_CODE": "Your App Name"
}
Silent by Default
Data Sources
update-lookup commandconfig/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
License
Credits
Version History
免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制