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"] } } }
Generate a daily Weather Intelligence Digest using NOAA / NWS data.
python3, pip.python3 -m venv .venv && source .venv/bin/activate.pip install -r requirements.txt.config.example.json to config.json and customize the locations list with name, lat, lon pairs.python3 weather_digest.py --config config.json --output digest.md
Output is Markdown; convert to PDF/email as needed.
本技能来自小葱技能站7w4.net。
api.weather.gov (no API key required; feel free to customize the User-Agent string in the script).build_digest in weather_digest.py.这个天气情报工具质量不错,能同时输出 Markdown、HTML 和 JSON 三种格式,支持多个地点,HTML 还有三种配色主题可选。代码写得清晰规范,依赖简单(只需 requests),配置也很直观。不足之处是缺少测试保障,文档中提到的某些辅助文件并不存在,总体来说是一个可用性较高但细节有待完善的实用工具。