Skills tracker-latest-run-monitor
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.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/aaronstuart/tracker-latest-run-monitor" ~/.claude/skills/openclaw-skills-tracker-latest-run-monitor && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/aaronstuart/tracker-latest-run-monitor" ~/.openclaw/skills/openclaw-skills-tracker-latest-run-monitor && rm -rf "$T"
manifest:
skills/aaronstuart/tracker-latest-run-monitor/SKILL.mdsource content
Tracker Latest Run Monitor
Use this skill when you need a standalone latest-run status notifier for a cron job.
Core files
: Read the target cron job's most recentscripts/monitor-tracker-runs.js
run record and send a compact Feishu DM.finished
: Explain what the script reads and what notification it sends.references/configuration.md
Workflow
- Ensure the target cron job id and Feishu config are correct in the script or referenced config.
- Run
directly with Node.scripts/monitor-tracker-runs.js - 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.