Verified Research Engine (Web + Academic + Confidence Score)
支持网页、学术、Tavily等多源检索,提供可信度评分的智能搜索工具。
下载 44
自动抓取并存档德国tageblatt.de每日新闻标题,支持本地存储与定时任务。
openclaw skills install @zopyx/tageblatt-headlines命令、参数、文件名以原文为准
此 Skill 包会加载 tageblatt.de 的首页,提取可见的文章标题(<h2 class="article-heading">),进行清理,并将结果本地保存为文本文件或 JSON 文件。可用于临时查询(“现在有哪些新闻”)、每日存档或自动化通知。
python3 skills/tageblatt-headlines/scripts/fetch_headlines.py \
--limit 15 \
--output data/tageblatt/$(date +%Y-%m-%d)_headlines.txtpython3 skills/tageblatt-headlines/scripts/fetch_headlines.py \
--format json --output data/tageblatt/$(date +%Y-%m-%d).jsonopenclaw cron add <<'JSON'
{
"name": "tageblatt-headlines-07",
"schedule": {
"kind": "cron",
"expr": "0 7 * * *",
"tz": "Europe/Berlin"
},
"sessionTarget": "isolated",
"payload": {
"kind": "agentTurn",
"model": "default",
"message": "Run `python3 skills/tageblatt-headlines/scripts/fetch_headlines.py --limit 15 --output data/tageblatt/$(date +%F)_headlines.txt`. Send Master the list via Telegram (bulleted) and mention where the file was saved."
}
}
JSONdata/tageblatt/,若需长期保存归档文件,请将其提交至版本控制。urllib、re),无需额外安装 pip 依赖。scripts/fetch_headlines.py 中的正则表达式(HEADING_PATTERN)。--limit 参数值。scripts/fetch_headlines.py – 新闻标题的 HTTP 下载与解析脚本(支持文本/JSON 输出,可设置数量限制)。已收录 1 个 Skill