โ† All skills
Tencent SkillHub ยท Developer Tools

Monitor

Create monitors for anything. User defines what to check, skill handles scheduling and alerts.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Create monitors for anything. User defines what to check, skill handles scheduling and alerts.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, alerts.md, insights.md, templates.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Data Storage

~/monitor/ โ”œโ”€โ”€ monitors.json # Monitor definitions โ”œโ”€โ”€ config.json # Alert preferences โ””โ”€โ”€ logs/ # Check results โ””โ”€โ”€ {name}/YYYY-MM.jsonl Create on first use: mkdir -p ~/monitor/logs

Scope

This skill: โœ… Stores monitor definitions in ~/monitor/ โœ… Runs checks at specified intervals โœ… Alerts user on status changes Execution model: User explicitly defines WHAT to monitor User grants any permissions/tools needed Skill only handles WHEN and ALERTING This skill does NOT: โŒ Assume access to any service or endpoint โŒ Run checks without user-defined instructions โŒ Store credentials (user provides via environment or other skills)

Requirements

Required: curl โ€” for HTTP checks Optional (for alerts): PUSHOVER_TOKEN / PUSHOVER_USER โ€” for push notifications Webhook URL โ€” user provides their own endpoint Used if available: openssl โ€” for SSL certificate checks pgrep โ€” for process checks df โ€” for disk space checks nc โ€” for port checks

Quick Reference

TopicFileMonitor type examplestemplates.mdAlert configurationalerts.mdAnalysis patternsinsights.md

1. User Defines Everything

When user requests a monitor: WHAT: User specifies what to check HOW: User provides method or grants tool access WHEN: This skill handles interval ALERT: This skill handles notifications Example flow: User: "Monitor my API at api.example.com every 5 minutes" Agent: "I'll check HTTP status. Alert you on failures?" User: "Yes, and check SSL cert too" โ†’ Monitor stored with user-defined checks

2. Monitor Definition

In ~/monitor/monitors.json: { "api_prod": { "description": "User's API health", "checks": [ {"type": "http", "target": "https://api.example.com/health"}, {"type": "ssl", "target": "api.example.com"} ], "interval": "5m", "alert_on": "change", "requires": [], "created": "2024-03-15" } }

3. Common Check Types

User can request any of these (or others): TypeWhat it checksTool usedhttpURL status + latencycurlsslCertificate expiryopensslprocessProcess runningpgrepdiskFree spacedfportPort opennccustomUser-defined commanduser specifies

4. Confirmation Format

โœ… Monitor: [description] ๐Ÿ” Checks: [what will be checked] โฑ๏ธ Interval: [how often] ๐Ÿ”” Alert: [when to notify] ๐Ÿ”ง Requires: [tools/access needed]

5. Alert on Change

Alert when status changes (okโ†’fail, failโ†’ok) Include failure count Recovery message when back to OK Never spam repeated same-status

6. Permissions

The requires field lists what user granted: Empty = basic checks only (curl, df, pgrep) ["ssh:server1"] = user granted SSH access ["docker"] = user granted Docker access Agent asks before assuming any access.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs
  • SKILL.md Primary doc
  • alerts.md Docs
  • insights.md Docs
  • templates.md Docs