← Back to Skills Marketplace
111
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install exwind-monitor
Description
每10分钟监控EXWIND网站更新,检测到新内容时自动发送飞书消息提醒。
README (SKILL.md)
SKILL.md - EXWIND 监控
描述
监控 EXWIND 网站的更新,每 10 分钟检查一次。
触发方式
- 定时: 每 10 分钟自动执行
- 手动: 用户说"检查 EXWIND 更新"
Cron 任务
openclaw cron list | grep exwind
# 任务配置
ID: 99f28379-aed3-42c1-b33a-e75f5432f90f
Name: exwind-monitor
Schedule: */10 * * * * @ Asia/Shanghai
Delivery: none
执行脚本
python3 ~/.openclaw/workspace/skills/exwind-monitor/scripts/exwind_monitor.py
🚨 Agent 执行步骤
Step 1: 运行监控脚本
python3 ~/.openclaw/workspace/skills/exwind-monitor/scripts/exwind_monitor.py
Step 2: 检查输出
如果没有更新:
{"empty": true}
→ 不做任何操作
如果有更新:
{
"empty": false,
"timestamp": "2026-03-12T17:57:00",
"message": "## 🔍 EXWIND 更新...",
"need_send": true
}
Step 3: 发送飞书消息
使用 message tool 发送 message 字段的内容到飞书。
发送文字内容,不是文档链接!
输出格式
消息格式
## 🔍 EXWIND 更新 (17:57)
### 📘 蓝帖: 前夕补丁大秘境评分奖励0.1%头衔
📅 2026-03-12 11:10
🔗 https://exwind.net/post/blue/29049483
有玩家因为在正式补丁上线前达到的史诗钥石评分而获得了头衔成就...
---
### 🔧 热修: 3月12日在线修正
📅 2026-03-12 09:01
🔗 https://exwind.net/post/hotfixes/xxx
...
类型图标
| 类型 | 图标 |
|---|---|
| 蓝帖 | 📘 |
| 热修 | 🔧 |
| 新闻 | 📰 |
状态文件
- 位置:
/tmp/exwind_state.json - 内容: 已推送的文章 ID 列表
- 限制: 最多保留 500 条记录
故障排除
| 问题 | 解决方案 |
|---|---|
| 页面打开失败 | 检查 agent-browser |
| 无新文章 | 正常,等待下次检查 |
| 重复推送 | 删除 /tmp/exwind_state.json |
相关文件
~/.openclaw/workspace/skills/exwind-monitor/
├── SKILL.md
└── scripts/
└── exwind_monitor.py
更新记录
| 日期 | 变更 |
|---|---|
| 2026-03-12 | 修改为发送飞书消息,不是文档链接 |
| 2026-03-12 | 创建 skill |
Usage Guidance
This skill appears to do exactly what it says: every 10 minutes it uses the agent-browser to open exwind.net, takes a snapshot, parses new posts, stores seen IDs in /tmp/exwind_state.json, and prints a JSON payload that the agent should deliver as a Feishu message. Before installing, confirm you trust (1) the EXWIND site being scraped and (2) the agent/browser integration (agent-browser) because the script automates the agent-browser CLI. If you want direct webhook delivery instead of relying on the agent's message tool, note the script defines FEISHU_WEBHOOK but does not use it — you'd need to modify the script to add a webhook and provide its secret. If you have any policies about writing to /tmp or running subprocess commands, review the script source (it's included) — the script uses subprocess.run(shell=True) for fixed commands (agent-browser) but does not inject untrusted content into shell commands.
Capability Assessment
Purpose & Capability
Name/description (monitor EXWIND and send Feishu messages) matches the code and SKILL.md. The script parses an agent-browser snapshot of exwind.net, tracks seen IDs in /tmp/exwind_state.json, and prints a JSON payload for the agent to send — all expected for a site-monitoring notifier.
Instruction Scope
SKILL.md instructs running the included Python script every 10 minutes and then using the agent's message tool to send the printed JSON. The script only reads/writes the documented state file and uses agent-browser to open/snapshot the site; it does not attempt to read unrelated files or exfiltrate credentials.
Install Mechanism
There is no install spec (instruction-only skill) and one included script. Nothing is downloaded from external URLs or extracted on install. The runtime behavior executes the bundled script, which is normal for an instruction-only skill that ships code.
Credentials
The skill requires no environment variables, credentials, or config paths. The script defines FEISHU_WEBHOOK and OPENCLAW_CONFIG variables but does not use any secrets or external tokens; this is proportionate to a simple notifier.
Persistence & Privilege
always is false and the skill does not request permanent/privileged presence or modify other skills. It writes a local state file (/tmp/exwind_state.json) which is appropriate for its function.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install exwind-monitor - After installation, invoke the skill by name or use
/exwind-monitor - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of exwind-monitor
- Monitors EXWIND website for updates every 10 minutes.
- Supports both scheduled and manual update checks.
- Sends formatted update notifications directly to Feishu, not as document links.
- Avoids duplicate notifications by tracking sent articles in a local state file.
- Includes troubleshooting steps and message formatting with type icons.
Metadata
Frequently Asked Questions
What is Exwind Monitor?
每10分钟监控EXWIND网站更新,检测到新内容时自动发送飞书消息提醒。 It is an AI Agent Skill for Claude Code / OpenClaw, with 111 downloads so far.
How do I install Exwind Monitor?
Run "/install exwind-monitor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Exwind Monitor free?
Yes, Exwind Monitor is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Exwind Monitor support?
Exwind Monitor is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Exwind Monitor?
It is built and maintained by LoRexxar (@lorexxar); the current version is v1.0.0.
More Skills