{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/monitor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=monitor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "alerts.md",
      "insights.md",
      "templates.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/monitor",
    "agentPageUrl": "https://openagent3.xyz/skills/monitor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/monitor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/monitor/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Data Storage",
        "body": "~/monitor/\n├── monitors.json       # Monitor definitions\n├── config.json         # Alert preferences\n└── logs/               # Check results\n    └── {name}/YYYY-MM.jsonl\n\nCreate on first use: mkdir -p ~/monitor/logs"
      },
      {
        "title": "Scope",
        "body": "This skill:\n\n✅ Stores monitor definitions in ~/monitor/\n✅ Runs checks at specified intervals\n✅ Alerts user on status changes\n\nExecution model:\n\nUser explicitly defines WHAT to monitor\nUser grants any permissions/tools needed\nSkill only handles WHEN and ALERTING\n\nThis skill does NOT:\n\n❌ Assume access to any service or endpoint\n❌ Run checks without user-defined instructions\n❌ Store credentials (user provides via environment or other skills)"
      },
      {
        "title": "Requirements",
        "body": "Required:\n\ncurl — for HTTP checks\n\nOptional (for alerts):\n\nPUSHOVER_TOKEN / PUSHOVER_USER — for push notifications\nWebhook URL — user provides their own endpoint\n\nUsed if available:\n\nopenssl — for SSL certificate checks\npgrep — for process checks\ndf — for disk space checks\nnc — for port checks"
      },
      {
        "title": "Quick Reference",
        "body": "TopicFileMonitor type examplestemplates.mdAlert configurationalerts.mdAnalysis patternsinsights.md"
      },
      {
        "title": "1. User Defines Everything",
        "body": "When user requests a monitor:\n\nWHAT: User specifies what to check\nHOW: User provides method or grants tool access\nWHEN: This skill handles interval\nALERT: This skill handles notifications\n\nExample flow:\n\nUser: \"Monitor my API at api.example.com every 5 minutes\"\nAgent: \"I'll check HTTP status. Alert you on failures?\"\nUser: \"Yes, and check SSL cert too\"\n→ Monitor stored with user-defined checks"
      },
      {
        "title": "2. Monitor Definition",
        "body": "In ~/monitor/monitors.json:\n\n{\n  \"api_prod\": {\n    \"description\": \"User's API health\",\n    \"checks\": [\n      {\"type\": \"http\", \"target\": \"https://api.example.com/health\"},\n      {\"type\": \"ssl\", \"target\": \"api.example.com\"}\n    ],\n    \"interval\": \"5m\",\n    \"alert_on\": \"change\",\n    \"requires\": [],\n    \"created\": \"2024-03-15\"\n  }\n}"
      },
      {
        "title": "3. Common Check Types",
        "body": "User can request any of these (or others):\n\nTypeWhat it checksTool usedhttpURL status + latencycurlsslCertificate expiryopensslprocessProcess runningpgrepdiskFree spacedfportPort opennccustomUser-defined commanduser specifies"
      },
      {
        "title": "4. Confirmation Format",
        "body": "✅ Monitor: [description]\n🔍 Checks: [what will be checked]\n⏱️ Interval: [how often]\n🔔 Alert: [when to notify]\n🔧 Requires: [tools/access needed]"
      },
      {
        "title": "5. Alert on Change",
        "body": "Alert when status changes (ok→fail, fail→ok)\nInclude failure count\nRecovery message when back to OK\nNever spam repeated same-status"
      },
      {
        "title": "6. Permissions",
        "body": "The requires field lists what user granted:\n\nEmpty = basic checks only (curl, df, pgrep)\n[\"ssh:server1\"] = user granted SSH access\n[\"docker\"] = user granted Docker access\n\nAgent asks before assuming any access."
      }
    ],
    "body": "Data Storage\n~/monitor/\n├── monitors.json       # Monitor definitions\n├── config.json         # Alert preferences\n└── logs/               # Check results\n    └── {name}/YYYY-MM.jsonl\n\n\nCreate on first use: mkdir -p ~/monitor/logs\n\nScope\n\nThis skill:\n\n✅ Stores monitor definitions in ~/monitor/\n✅ Runs checks at specified intervals\n✅ Alerts user on status changes\n\nExecution model:\n\nUser explicitly defines WHAT to monitor\nUser grants any permissions/tools needed\nSkill only handles WHEN and ALERTING\n\nThis skill does NOT:\n\n❌ Assume access to any service or endpoint\n❌ Run checks without user-defined instructions\n❌ Store credentials (user provides via environment or other skills)\nRequirements\n\nRequired:\n\ncurl — for HTTP checks\n\nOptional (for alerts):\n\nPUSHOVER_TOKEN / PUSHOVER_USER — for push notifications\nWebhook URL — user provides their own endpoint\n\nUsed if available:\n\nopenssl — for SSL certificate checks\npgrep — for process checks\ndf — for disk space checks\nnc — for port checks\nQuick Reference\nTopic\tFile\nMonitor type examples\ttemplates.md\nAlert configuration\talerts.md\nAnalysis patterns\tinsights.md\nCore Rules\n1. User Defines Everything\n\nWhen user requests a monitor:\n\nWHAT: User specifies what to check\nHOW: User provides method or grants tool access\nWHEN: This skill handles interval\nALERT: This skill handles notifications\n\nExample flow:\n\nUser: \"Monitor my API at api.example.com every 5 minutes\"\nAgent: \"I'll check HTTP status. Alert you on failures?\"\nUser: \"Yes, and check SSL cert too\"\n→ Monitor stored with user-defined checks\n\n2. Monitor Definition\n\nIn ~/monitor/monitors.json:\n\n{\n  \"api_prod\": {\n    \"description\": \"User's API health\",\n    \"checks\": [\n      {\"type\": \"http\", \"target\": \"https://api.example.com/health\"},\n      {\"type\": \"ssl\", \"target\": \"api.example.com\"}\n    ],\n    \"interval\": \"5m\",\n    \"alert_on\": \"change\",\n    \"requires\": [],\n    \"created\": \"2024-03-15\"\n  }\n}\n\n3. Common Check Types\n\nUser can request any of these (or others):\n\nType\tWhat it checks\tTool used\nhttp\tURL status + latency\tcurl\nssl\tCertificate expiry\topenssl\nprocess\tProcess running\tpgrep\ndisk\tFree space\tdf\nport\tPort open\tnc\ncustom\tUser-defined command\tuser specifies\n4. Confirmation Format\n✅ Monitor: [description]\n🔍 Checks: [what will be checked]\n⏱️ Interval: [how often]\n🔔 Alert: [when to notify]\n🔧 Requires: [tools/access needed]\n\n5. Alert on Change\nAlert when status changes (ok→fail, fail→ok)\nInclude failure count\nRecovery message when back to OK\nNever spam repeated same-status\n6. Permissions\n\nThe requires field lists what user granted:\n\nEmpty = basic checks only (curl, df, pgrep)\n[\"ssh:server1\"] = user granted SSH access\n[\"docker\"] = user granted Docker access\n\nAgent asks before assuming any access."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/monitor",
    "publisherUrl": "https://clawhub.ai/ivangdavila/monitor",
    "owner": "ivangdavila",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}