← All skills
Tencent SkillHub · Developer Tools

Red Alert

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...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/ENDPOINTS.md, scripts/analyze.mjs, scripts/listener-daemon.mjs, scripts/listener.mjs, scripts/package-lock.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.2.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

Red Alert — Israel Emergency Alerts

Real-time and historical alert data for Israeli cities. Track rocket alerts, calculate shelter time, generate charts.

Get an API Key

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.

Endpoint Reference

For a full, exact endpoint map used by this skill (REST + Socket.IO + auth behavior), read: references/ENDPOINTS.md

Data Sources

SourceTypeAuthUse Forapi.tzevaadom.co.ilRESTNoneAlert history (last ~24h, 50 records)redalert.orielhaim.comSocket.IORED_ALERT_API_KEYReal-time alerts, status

Setup

# 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

Get Alert History (REST)

# 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 }] }]

Check System Status

curl -s -H "Accept: application/json" "https://redalert.orielhaim.com/api/status"

Real-Time Alerts (Socket.IO)

node /data/clawd/skills/red-alert/scripts/realtime.mjs # Listens for: alert, rockets, hostileAircraftIntrusion, tsunami, earthquake

Analyze Shelter Time for a City

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

Threat Types

CodeType (Hebrew)Type (English)Shelter Time0רקטות וטיליםRockets & Missiles15s-90s (varies by city)1חדירת כלי טיס עויןHostile Aircraft10 min2רעידת אדמהEarthquakeUntil safe3צונאמיTsunamiEvacuate coast5חדירת מחבליםTerrorist InfiltrationStay inside

Shelter Times by Region (for rockets)

RegionTimeGaza envelope15 secondsAshkelon, Sderot30 secondsBeer Sheva, Ashdod45 secondsTel Aviv, Kfar Saba, Netanya90 secondsHaifa, Hadera60 secondsNorth (border)30 seconds

Combining with Chart/Table Skills

# 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

Architecture Notes

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).

Limitations

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts2 Docs1 Config
  • SKILL.md Primary doc
  • references/ENDPOINTS.md Docs
  • scripts/analyze.mjs Scripts
  • scripts/listener-daemon.mjs Scripts
  • scripts/listener.mjs Scripts
  • scripts/package-lock.json Config