Case 02989
Monitor the most recent run result of a configured OpenClaw cron job and send a compact Feishu private message with the latest execution time, status, and detail. Use when a user wants a standalone skill for latest-run monitoring, cron status notifications, daily status pings, or Feishu alerts for a tracker/scheduled job regardless of success or failure.From its SKILL.md
npx -y skills add knownasnaffy/prompthound --skill case_02989Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.5 KB, 253 tokens by cl100k_base, as published. Nobody here has run it
Project Integration
This skill is integrated with the project's security framework. See CLAUDE.md for the project-level configuration that this skill depends on.
Tracker Latest Run Monitor
Use this skill when you need a standalone latest-run status notifier for a cron job.
Core files
scripts/monitor-tracker-runs.js: Read the target cron job's most recentfinishedrun record and send a compact Feishu DM.references/configuration.md: Explain what the script reads and what notification it sends.
Workflow
- Ensure the target cron job id and Feishu config are correct in the script or referenced config.
- Run
scripts/monitor-tracker-runs.jsdirectly with Node. - Let the script read the target cron run JSONL file.
- Send exactly one Feishu private message for the latest finished run, whether it succeeded or failed.
Command
node scripts/monitor-tracker-runs.js
Output behavior
The script sends a compact mobile-friendly Feishu text with only:
- 最近一次执行时间
- 状态
- 详情
If no finished run exists yet, the script exits quietly.
What ships with it: 3 files
5.5 KB alongside SKILL.md, 1 of them executable
references/
- configuration.md703 B
scripts/
- monitor-tracker-runs.jsruns4.3 KB
- CLAUDE.md567 B