uptime-monitor
Monitor website uptime - check availability, response times, and status
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Monitor website uptime - check availability, response times, and status
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Test and document API endpoints - validate responses, check status, generate examples
Full company intelligence report - overview, team, funding, products, news
Research competitors - products, pricing, team, funding, and strategy
Enrich any person or company from any identifier — email, name, LinkedIn URL, domain, company name, Twitter/X handle. Use when asked to enrich, look up, or research a lead, contact, person, or company.
Extract structured data from web pages using AI
Build a sales prospect list of dental practices in a city — finds practices, decision makers, contact info, and buying signals. Use when asked to find dentists for outreach, prospect dental practices, build a lead list of dentists, or generate dental practice leads in a specific area.
| name | uptime-monitor |
| description | Monitor website uptime - check availability, response times, and status |
Monitor website uptime, check response times, and verify service availability.
Verify site is accessible:
orth api run linkup /fetch --body '{"url": "https://yoursite.com"}'
Ensure page loads correctly:
orth api run scrapegraph /api/extract --body '{
"url": "https://yoursite.com",
"prompt": "Check if page loads and contains expected content. Report any error messages."
}'
Check API endpoints:
orth api run linkup /fetch --body '{"url": "https://api.yoursite.com/health"}'
Monitor critical paths:
orth api run olostep /v1/batches --body '{
"urls": [
"https://yoursite.com",
"https://yoursite.com/login",
"https://api.yoursite.com/health",
"https://yoursite.com/dashboard"
]
}'
Check official status:
orth api run scrapegraph /api/extract --body '{
"url": "https://status.yoursite.com",
"prompt": "Extract current service status, any incidents, and affected components"
}'
Use SMS for critical alerts:
orth api run textbelt /text --body '{
"phone": "+1234567890",
"message": "ALERT: yoursite.com is down! Check immediately."
}'
For continuous, hands-off monitoring, register a scheduled scrape that runs on a cron interval and notifies a webhook on each run:
orth api run scrapegraph /api/monitor --body '{
"url": "https://yoursite.com",
"name": "yoursite-uptime",
"interval": "*/5 * * * *",
"formats": [{"type": "markdown"}],
"webhookUrl": "https://hooks.yoursite.com/uptime"
}'
SITES=("https://example.com" "https://api.example.com/health")
for site in "${SITES[@]}"; do
echo "Checking: $site"
orth api run linkup /fetch --body "{\"url\": \"$site\"}"
done
# Quick status check
orth api run linkup /fetch --body '{"url": "https://stripe.com"}'
# Check status page
orth api run scrapegraph /api/extract --body '{
"url": "https://status.github.com",
"prompt": "What is the current status of GitHub services?"
}'
# Monitor competitor uptime
orth api run linkup /fetch --body '{"url": "https://competitor.com"}'
List all endpoints, or add a path for parameter details:
orth api show linkup
orth api show olostep
orth api show scrapegraph
orth api show textbelt
Example: orth api show olostep /v1/scrapes for endpoint parameters.