# Send Monitor to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "monitor",
    "name": "Monitor",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/monitor",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/monitor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/monitor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=monitor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "alerts.md",
      "insights.md",
      "templates.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "monitor",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T20:18:05.664Z",
      "expiresAt": "2026-05-12T20:18:05.664Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=monitor",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=monitor",
        "contentDisposition": "attachment; filename=\"monitor-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "monitor"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/monitor"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/monitor",
    "downloadUrl": "https://openagent3.xyz/downloads/monitor",
    "agentUrl": "https://openagent3.xyz/skills/monitor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/monitor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/monitor/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T20:18:05.664Z
- Expires at: 2026-05-12T20:18:05.664Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/monitor)
- [Send to Agent page](https://openagent3.xyz/skills/monitor/agent)
- [JSON manifest](https://openagent3.xyz/skills/monitor/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/monitor/agent.md)
- [Download page](https://openagent3.xyz/downloads/monitor)