openclaw 网盘下载
OpenClaw

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

首页 > 技能库 > Weather Intelligence Digest Fresh

Generate daily Weather Intelligence Digest using NOAA/NWS data with customizable locations and alert monitoring.

开发与 DevOps

许可证:MIT-0

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

版本:v1.0.0

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

0

安装量(当前) 0

🛡 VirusTotal :可疑 · OpenClaw :良性

Package:dannyboy1241/weather-intelligence-digest-fresh

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :良性

OpenClaw 评估

The skill's code, instructions, and requirements are coherent with its stated purpose (pulling NOAA/NWS data and producing digests); it does not request unrelated credentials, unusual installs, or external endpoints beyond api.weather.gov.

目的

Name/description (daily NOAA/NWS digest) matches what is required: python3 + pip, a small requests dependency, and a config.json of locations. There are no unrelated binaries, credentials, or config paths requested.

说明范围

SKILL.md instructs creating a venv, installing requirements, copying config.example.json to config.json, and running weather_digest.py — all consistent with producing a digest. The runtime instructions do not ask the agent to read unrelated files, secrets, or contact endpoints beyond api.weather.gov.

安装机制

No automated install/spec is provided (instruction-only). The single dependency is requests (requirements.txt). This is low-risk: nothing is downloaded from arbitrary URLs or executed outside the project.

证书

The skill declares no required environment variables or credentials and the code uses only a configurable User-Agent header (suggested in README). There is no evidence of environment or credential access beyond what is needed to fetch public NOAA APIs.

持久

always is false and the skill does not request permanent platform presence or modify other skills. It is a runnable script that operates when invoked.

综合结论

This skill appears to do exactly what it claims: fetch public NOAA/NWS data and render a digest. Before installing: (1) review the full weather_digest.py file (the provided snippet is benign but one truncated portion remains in the bundle); (2) run it inside a Python virtualenv and inspect/lock requirements (requests>=2.31.0); (3) confirm it only contacts api.weather.gov (the code sets the User-Agent and uses that domain); (4) respect NOAA API…

安装(复制给龙虾 AI)

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

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Weather Intelligence Digest Fresh」。简介:Generate daily Weather Intelligence Digest using NOAA/NWS data with customizabl…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/dannyboy1241/weather-intelligence-digest-fresh/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: weather-intelligence-digest
description: Generate daily Weather Intelligence Digest using NOAA/NWS data with customizable locations and alert monitoring.
homepage: https://api.weather.gov
metadata: { "openclaw": { "emoji": "🌦️", "requires": { "bins": ["python3", "pip"] } } }
---

# Weather Intelligence Digest

Generate a daily Weather Intelligence Digest using NOAA / NWS data.

## Setup

1. **Dependencies:** `python3`, `pip`.
2. Optional but recommended: `python3 -m venv .venv && source .venv/bin/activate`.
3. `pip install -r requirements.txt`.
4. Copy `config.example.json` to `config.json` and customize the `locations` list with `name`, `lat`, `lon` pairs.

## Usage

```bash
python3 weather_digest.py --config config.json --output digest.md
```

Output is Markdown; convert to PDF/email as needed.

## Configuration Notes

- Data source: `api.weather.gov` (no API key required; feel free to customize the User-Agent string in the script).
- Each location fetches forecast + alerts; add/remove fields as needed.
- Extend the template by editing `build_digest` in `weather_digest.py`.