Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Israel Red Alert API — real-time and historical rocket/missile alert data. Query alerts by city, time range, generate shelter time stats. Uses redalert.oriel...
Israel Red Alert API — real-time and historical rocket/missile alert data. Query alerts by city, time range, generate shelter time stats. Uses redalert.oriel...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Real-time and historical alert data for Israeli cities. Track rocket alerts, calculate shelter time, generate charts.
Sign up at https://redalert.orielhaim.com/ to get your API key. Store it as env var RED_ALERT_API_KEY. This skill is a wrapper around the RedAlert API — it provides convenient CLI tools for querying, analyzing, and visualizing alert data.
For a full, exact endpoint map used by this skill (REST + Socket.IO + auth behavior), read: references/ENDPOINTS.md
SourceTypeAuthUse Forapi.tzevaadom.co.ilRESTNoneAlert history (last ~24h, 50 records)redalert.orielhaim.comSocket.IORED_ALERT_API_KEYReal-time alerts, status
# API key is stored as Fly secret: RED_ALERT_API_KEY # Socket.io client needed for real-time cd /data/clawd/skills/red-alert/scripts && npm install
# Last ~24h of alerts nationwide (50 most recent alert groups) curl -s "https://api.tzevaadom.co.il/alerts-history" -o /tmp/alerts.json Response format: [{ "id": 5718, "description": null, "alerts": [{ "time": 1772352828, // Unix timestamp "cities": ["כפר סבא", "תל אביב"], "threat": 0, // 0=rockets, 1=aircraft, 5=infiltration "isDrill": false }] }]
curl -s -H "Accept: application/json" "https://redalert.orielhaim.com/api/status"
node /data/clawd/skills/red-alert/scripts/realtime.mjs # Listens for: alert, rockets, hostileAircraftIntrusion, tsunami, earthquake
node /data/clawd/skills/red-alert/scripts/analyze.mjs --city "כפר סבא" --since "2026-02-28T08:00" # Outputs: alert count, shelter sessions, total shelter time, hourly data as JSON
CodeType (Hebrew)Type (English)Shelter Time0רקטות וטיליםRockets & Missiles15s-90s (varies by city)1חדירת כלי טיס עויןHostile Aircraft10 min2רעידת אדמהEarthquakeUntil safe3צונאמיTsunamiEvacuate coast5חדירת מחבליםTerrorist InfiltrationStay inside
RegionTimeGaza envelope15 secondsAshkelon, Sderot30 secondsBeer Sheva, Ashdod45 secondsTel Aviv, Kfar Saba, Netanya90 secondsHaifa, Hadera60 secondsNorth (border)30 seconds
# Generate hourly alert chart node /data/clawd/skills/red-alert/scripts/analyze.mjs --city "כפר סבא" --since "2026-02-28T08:00" --format chart-json \ | node /data/clawd/skills/chart-image/scripts/chart.mjs --type bar --dark --title "Kfar Saba Alerts" --output alerts.png # Generate shelter session table node /data/clawd/skills/red-alert/scripts/analyze.mjs --city "כפר סבא" --since "2026-02-28T08:00" --format table-json \ | node /data/clawd/skills/table-image/scripts/table.mjs --dark --title "Shelter Sessions" --output shelter.png
redalert.orielhaim.com — Oriel Haim's service. Polls Pikud HaOref, redistributes via Socket.IO. Has better-auth for API key management. REST endpoints blocked by Cloudflare challenge (except /api/status). api.tzevaadom.co.il — Free REST API, no auth needed, returns last ~24h of alert history. Pikud HaOref direct (oref.org.il) — Blocked from cloud IPs (Akamai WAF).
History limited to ~24h (50 groups) from tzevaadom For longer history, would need to store alerts ourselves via socket.io listener Real-time requires persistent socket.io connection
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.