openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > strikeradar

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

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 400 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:alexpolonsky/strikeradar

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's code, docs, and runtime behavior are consistent with its stated purpose (fetching public StrikeRadar data) and it does not request unexplained credentials or system access.

目的

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.

说明范围

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.

安装机制

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.

证书

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.

持久

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.

综合结论

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 servi…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「strikeradar」。简介:Monitor US-Iran strike probability using open-source indicators - news alerts, …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/alexpolonsky/strikeradar/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: strikeradar
version: 1.0.0
description: Monitor US-Iran strike probability using open-source indicators - news alerts, Iran internet connectivity, oil prices, flight traffic, military tanker detection, weather, Polymarket odds, and Pentagon activity. Use when user asks about "Iran strike probability", "strike radar", "Iran situation", "US attack Iran", "flights over Iran", "oil prices Iran", "Pentagon activity", "Polymarket Iran", "הסתברות תקיפה באיראן", "מצב איראן", "סטרייק ראדאר".
author: Alex Polonsky (https://github.com/alexpolonsky)
homepage: https://github.com/alexpolonsky/agent-skill-strikeradar
metadata: {"openclaw": {"emoji": "🚀", "os": ["darwin", "linux"], "requires": {"bins": ["node", "npx"]}}}
---

# 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](https://usstrikeradar.com/) by Yonatan Back.

## Quick Start

No dependencies needed. Run directly:
```bash
npx tsx {baseDir}/scripts/strikeradar.ts status
```

## Commands

| Command | Description |
|---------|-------------|
| `status` | All 8 signals with risk scores and total risk |
| `signal <name>` | Deep dive into one signal with raw data |
| `pulse` | Live viewer count and activity by country |

### Status
```bash
npx tsx {baseDir}/scripts/strikeradar.ts status
```
Returns: total_risk (0-100%), per-signal risk + detail, last_updated.

### Signal deep-dive
```bash
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
```bash
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:
```bash
npx tsx {baseDir}/scripts/strikeradar.ts status | cat
```