{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pocketalert",
    "name": "Pocketalert",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Akellacom/pocketalert",
    "canonicalUrl": "https://clawhub.ai/Akellacom/pocketalert",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pocketalert",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pocketalert",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pocketalert"
    },
    "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/pocketalert",
    "agentPageUrl": "https://openagent3.xyz/skills/pocketalert/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pocketalert/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pocketalert/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": "Pocket Alert",
        "body": "This skill enables interaction with the Pocket Alert service through its CLI tool."
      },
      {
        "title": "Prerequisites",
        "body": "The pocketalert CLI must be installed and authenticated:\n\n# Install (if not already installed)\n# Download from https://info.pocketalert.app/cli.html and extract to /usr/local/bin/\n\n# Authenticate with your API key\npocketalert auth <your-api-key>"
      },
      {
        "title": "Send Push Notifications",
        "body": "# Basic notification\npocketalert send -t \"Title\" -m \"Message\"\n\n# Full form\npocketalert messages send --title \"Alert\" --message \"Server is down!\"\n\n# To specific application\npocketalert messages send -t \"Deploy\" -m \"Build completed\" -a <app-tid>\n\n# To specific device\npocketalert messages send -t \"Alert\" -m \"Check server\" -d <device-tid>\n\n# To all devices\npocketalert messages send -t \"Alert\" -m \"System update\" -d all"
      },
      {
        "title": "List Resources",
        "body": "# List last messages\npocketalert messages list\npocketalert messages list --limit 50\npocketalert messages list --device <device-tid>\n\n# List applications\npocketalert apps list\n\n# List devices\npocketalert devices list\n\n# List webhooks\npocketalert webhooks list\n\n# List API keys\npocketalert apikeys list"
      },
      {
        "title": "Manage Applications",
        "body": "# Create application\npocketalert apps create --name \"My App\"\npocketalert apps create -n \"Production\" -c \"#FF5733\"\n\n# Get application details\npocketalert apps get <tid>\n\n# Delete application\npocketalert apps delete <tid>"
      },
      {
        "title": "Manage Devices",
        "body": "# List devices\npocketalert devices list\n\n# Get device details\npocketalert devices get <tid>\n\n# Delete device\npocketalert devices delete <tid>"
      },
      {
        "title": "Manage Webhooks",
        "body": "# Create webhook\npocketalert webhooks create --name \"GitHub Webhook\" --message \"*\"\npocketalert webhooks create -n \"Deploy Hook\" -m \"Deployed %repository.name% by %sender.login%\"\npocketalert webhooks create -n \"CI/CD\" -m \"*\" -a <app-tid> -d all\n\n# List webhooks\npocketalert webhooks list\n\n# Get webhook details\npocketalert webhooks get <tid>\n\n# Delete webhook\npocketalert webhooks delete <tid>"
      },
      {
        "title": "Message Template Variables",
        "body": "When creating webhooks, you can use template variables from the incoming payload:\n\npocketalert webhooks create \\\n  --name \"GitHub Push\" \\\n  --message \"Push to %repository.name%: %head_commit.message%\""
      },
      {
        "title": "Configuration",
        "body": "View or modify configuration:\n\n# View config\npocketalert config\n\n# Set API key\npocketalert config set api_key <new-api-key>\n\n# Set custom base URL (for self-hosted)\npocketalert config set base_url https://your-api.example.com\n\nConfiguration is stored at ~/.pocketalert/config.json."
      },
      {
        "title": "CI/CD Integration Examples",
        "body": "# GitHub Actions / GitLab CI\npocketalert send -t \"Build Complete\" -m \"Version $VERSION deployed\"\n\n# Server monitoring with cron\n*/5 * * * * /usr/local/bin/pocketalert send -t \"Server Health\" -m \"$(uptime)\"\n\n# Service check script\nif ! systemctl is-active --quiet nginx; then\n  pocketalert send -t \"NGINX Down\" -m \"NGINX is not running on $(hostname)\"\nfi"
      },
      {
        "title": "Error Handling",
        "body": "The CLI returns appropriate exit codes:\n\n0 - Success\n1 - Authentication or API error\n2 - Invalid arguments\n\nAlways check command output for error details."
      }
    ],
    "body": "Pocket Alert\n\nThis skill enables interaction with the Pocket Alert service through its CLI tool.\n\nPrerequisites\n\nThe pocketalert CLI must be installed and authenticated:\n\n# Install (if not already installed)\n# Download from https://info.pocketalert.app/cli.html and extract to /usr/local/bin/\n\n# Authenticate with your API key\npocketalert auth <your-api-key>\n\nQuick Reference\nSend Push Notifications\n# Basic notification\npocketalert send -t \"Title\" -m \"Message\"\n\n# Full form\npocketalert messages send --title \"Alert\" --message \"Server is down!\"\n\n# To specific application\npocketalert messages send -t \"Deploy\" -m \"Build completed\" -a <app-tid>\n\n# To specific device\npocketalert messages send -t \"Alert\" -m \"Check server\" -d <device-tid>\n\n# To all devices\npocketalert messages send -t \"Alert\" -m \"System update\" -d all\n\nList Resources\n# List last messages\npocketalert messages list\npocketalert messages list --limit 50\npocketalert messages list --device <device-tid>\n\n# List applications\npocketalert apps list\n\n# List devices\npocketalert devices list\n\n# List webhooks\npocketalert webhooks list\n\n# List API keys\npocketalert apikeys list\n\nManage Applications\n# Create application\npocketalert apps create --name \"My App\"\npocketalert apps create -n \"Production\" -c \"#FF5733\"\n\n# Get application details\npocketalert apps get <tid>\n\n# Delete application\npocketalert apps delete <tid>\n\nManage Devices\n# List devices\npocketalert devices list\n\n# Get device details\npocketalert devices get <tid>\n\n# Delete device\npocketalert devices delete <tid>\n\nManage Webhooks\n# Create webhook\npocketalert webhooks create --name \"GitHub Webhook\" --message \"*\"\npocketalert webhooks create -n \"Deploy Hook\" -m \"Deployed %repository.name% by %sender.login%\"\npocketalert webhooks create -n \"CI/CD\" -m \"*\" -a <app-tid> -d all\n\n# List webhooks\npocketalert webhooks list\n\n# Get webhook details\npocketalert webhooks get <tid>\n\n# Delete webhook\npocketalert webhooks delete <tid>\n\nMessage Template Variables\n\nWhen creating webhooks, you can use template variables from the incoming payload:\n\npocketalert webhooks create \\\n  --name \"GitHub Push\" \\\n  --message \"Push to %repository.name%: %head_commit.message%\"\n\nConfiguration\n\nView or modify configuration:\n\n# View config\npocketalert config\n\n# Set API key\npocketalert config set api_key <new-api-key>\n\n# Set custom base URL (for self-hosted)\npocketalert config set base_url https://your-api.example.com\n\n\nConfiguration is stored at ~/.pocketalert/config.json.\n\nCI/CD Integration Examples\n# GitHub Actions / GitLab CI\npocketalert send -t \"Build Complete\" -m \"Version $VERSION deployed\"\n\n# Server monitoring with cron\n*/5 * * * * /usr/local/bin/pocketalert send -t \"Server Health\" -m \"$(uptime)\"\n\n# Service check script\nif ! systemctl is-active --quiet nginx; then\n  pocketalert send -t \"NGINX Down\" -m \"NGINX is not running on $(hostname)\"\nfi\n\nError Handling\n\nThe CLI returns appropriate exit codes:\n\n0 - Success\n1 - Authentication or API error\n2 - Invalid arguments\n\nAlways check command output for error details."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Akellacom/pocketalert",
    "publisherUrl": "https://clawhub.ai/Akellacom/pocketalert",
    "owner": "Akellacom",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pocketalert",
    "downloadUrl": "https://openagent3.xyz/downloads/pocketalert",
    "agentUrl": "https://openagent3.xyz/skills/pocketalert/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pocketalert/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pocketalert/agent.md"
  }
}