每日早报

v1.0.0

提供南通天气和V2EX热帖前5条摘要,每天8点或用户请求时推送简洁早报。

0· 104·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for muzhang111/muzhang111-daily-brief.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "每日早报" (muzhang111/muzhang111-daily-brief) from ClawHub.
Skill page: https://clawhub.ai/muzhang111/muzhang111-daily-brief
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install muzhang111-daily-brief

ClawHub CLI

Package manager switcher

npx clawhub@latest install muzhang111-daily-brief
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (daily brief: Nantong weather + V2EX hot posts) match the instructions, which only fetch wttr.in and V2EX API. No unrelated env vars, binaries, or installs are requested.
Instruction Scope
SKILL.md explicitly instructs using curl (or web_fetch) to fetch two public endpoints and to parse titles/nodes. It does not direct reading local files, accessing other credentials, or transmitting data to unexpected third parties. Optional web_search is noted but not required.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk or downloaded by the skill itself.
Credentials
No environment variables, credentials, or config paths are requested. Network access is required (to wttr.in and v2ex), which is proportionate to the stated functionality.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request permanent/privileged presence or modification of other skills or system settings.
Assessment
This skill will perform outbound HTTP requests (curl/web_fetch) to public services (wttr.in and api.v2ex.com) and parse their responses; it asks for no credentials and installs nothing. Before enabling, confirm you are okay with the agent making network requests on your behalf and with scheduled daily notifications. If you run this in a restricted environment, ensure outbound access to those endpoints is permitted and consider rate limits or privacy concerns (the skill sends nothing sensitive, but web_search/web_fetch can reach third-party search engines if used).

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

latestvk971wvar6hhtz51v3wa99t3dhn83r5br
104downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Daily Brief (每日早报)

Description

每日早报,包含南通天气和 V2EX 热帖摘要。 Use when: 用户需要简报,或早上 8 点定时执行。 NOT for: 专业气象预报、长内容新闻。

When to Trigger

  • 每天 8:00 AM(通过 cron 或定时任务)
  • 用户说"今日简报"、"早报"、"今天怎么样"

Workflow

  1. 获取南通天气:
    curl "https://wttr.in/Nantong?format=3"
    
  2. 获取 V2EX 热门帖子:
    curl https://www.v2ex.com/api/topics/hot.json
    
  3. 提取前 5 条热帖
  4. 按格式输出

Tools Used

  • exec - 执行 curl 命令获取天气和 V2EX 数据
  • web_fetch - 可选,用于提取网页内容
  • web_search - 可选,用于搜索补充信息

Output Format

📅 今日简报

🌤 天气:{天气摘要}

🔥 V2EX 热帖:
1. {标题} ({节点})
2. {标题} ({节点})
3. {标题} ({节点})
4. {标题} ({节点})
5. {标题} ({节点})

Examples

用户: 今日简报 助手:

📅 今日简报

🌤 天气:晴 23°C

🔥 V2EX 热帖:
1. 分享一个实用的 VS Code 插件 (技术分享)
2. 2024 年最值得去的 10 个地方 (旅行)
3. 如何高效学习编程? (问答)
4. 新出的 MacBook Pro 值得升级吗? (硬件)
5. 求推荐好用的笔记软件 (问答)

Notes

  • 天气数据来自 wttr.in,格式简洁
  • V2EX 热帖按热度排序,只显示最新 5 条
  • 如果 API 调用失败,提示用户稍后重试
  • 定时任务建议在 8:00 AM 执行,避免打扰用户
  • 可考虑添加其他数据源(如新闻、股票等)

Implementation Tips

  1. 使用 exec 工具时注意处理 JSON 响应
  2. V2EX API 返回的是 JSON 数组,需要解析 titlenode.name 字段
  3. 天气输出已经是格式化字符串,直接使用即可
  4. 考虑添加错误处理和重试机制

Comments

Loading comments...