strikeradar

v1.0.0

Monitor US-Iran strike probability using open-source indicators - news alerts, Iran internet connectivity, oil prices, flight traffic, military tanker detect...

0· 501·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the implementation: the TS CLI fetches data from api.usstrikeradar.com and exposes the 8 signals described. Required binaries (node, npx) are appropriate for running a TypeScript Node CLI. There are no declared environment variables, credentials, or config paths that are unrelated to the stated purpose.
Instruction Scope
SKILL.md instructs running the provided script via npx tsx and describes commands (status, signal, pulse). The runtime instructions and the script only fetch public API endpoints and format results; they do not read local secrets, system files, or other unrelated resources. The script returns JSON with next_actions when run non-interactively (agent use), which matches the SKILL.md guidance.
Install Mechanism
There is no install spec (instruction-only), which keeps risk low. Minor caveat: running the example command with npx tsx will cause npx to fetch/execute the 'tsx' package from the npm registry if it's not already installed — a transient network fetch of a runtime package. There are no arbitrary download URLs or extracted archives in the skill itself.
Credentials
The skill requests no environment variables or credentials and the code does not access hidden env vars or keys. That is proportionate: it only needs outbound network access to the documented API endpoints.
Persistence & Privilege
The skill is not set to always:true and does not modify other skills or system settings. It can be invoked autonomously by the agent (disable-model-invocation is false), which is the platform default and expected for a queryable data wrapper; this is reasonable given the skill's narrow scope.
Assessment
This skill appears internally consistent and only queries the public api.usstrikeradar.com endpoints described in the README and SKILL.md. Before installing or enabling automated alerts, consider: (1) npx tsx will download the tsx runtime from npm if not present — run it in an environment you control or pre-install tsx if you prefer; (2) the skill performs network calls to a third-party API (api.usstrikeradar.com) — verify you trust that service and review its privacy/policy if you care about telemetry; (3) do not rely on these algorithmic risk scores for safety-critical or financial decisions; (4) if you want extra assurance, inspect the included scripts/strikeradar.ts locally and/or run the CLI in a sandbox and monitor network requests to confirm no unexpected endpoints or data exfiltration occur.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🚀 Clawdis
OSmacOS · Linux
Binsnode, npx
latestvk973cegzyr3phthn39284j39fn81gwdr
501downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0
macOS, Linux

StrikeRadar - US-Iran strike probability monitor

Real-time risk scores across 8 signal categories, aggregated into a composite strike probability.

Risk scores are algorithmic estimates from publicly available data, not intelligence assessments. Do not use for personal, financial, or safety decisions. Wraps StrikeRadar by Yonatan Back.

Quick Start

No dependencies needed. Run directly:

npx tsx {baseDir}/scripts/strikeradar.ts status

Commands

CommandDescription
statusAll 8 signals with risk scores and total risk
signal <name>Deep dive into one signal with raw data
pulseLive viewer count and activity by country

Status

npx tsx {baseDir}/scripts/strikeradar.ts status

Returns: total_risk (0-100%), per-signal risk + detail, last_updated.

Signal deep-dive

npx tsx {baseDir}/scripts/strikeradar.ts signal <name>

Valid signals: news, connectivity, energy, flight, tanker, weather, polymarket, pentagon

What each signal tracks:

  • news - article alerts from BBC/Al Jazeera, alert_count, total_count
  • connectivity - Iran internet status via Cloudflare Radar
  • energy - Brent crude price, volatility, market status
  • flight - aircraft count near Iran, key airline presence
  • tanker - military refueling tanker detection, callsigns
  • weather - conditions over Iran (visibility matters for strikes)
  • polymarket - betting market odds for US strike
  • pentagon - building activity level and patterns

Pulse

npx tsx {baseDir}/scripts/strikeradar.ts pulse

Returns: watching_now, activity_level, surge multiplier, country breakdown.

Agent Usage

All commands return JSON with next_actions when output is piped:

npx tsx {baseDir}/scripts/strikeradar.ts status | cat

Comments

Loading comments...