{
  "schemaVersion": "1.0",
  "item": {
    "slug": "communication-mqtt",
    "name": "communication-mqtt",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/hyunwoo91/communication-mqtt",
    "canonicalUrl": "https://clawhub.ai/hyunwoo91/communication-mqtt",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/communication-mqtt",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=communication-mqtt",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/subscribe.py",
      "scripts/publish.py"
    ],
    "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/communication-mqtt"
    },
    "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/communication-mqtt",
    "agentPageUrl": "https://openagent3.xyz/skills/communication-mqtt/agent",
    "manifestUrl": "https://openagent3.xyz/skills/communication-mqtt/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/communication-mqtt/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": "MQTT Agent Messenger Skill",
        "body": "이 스킬은 MQTT 프로토콜을 사용하여 에이전트의 정보를 네트워크에 공유하거나 다른 에이전트의 상태를 추적하는 데 사용됩니다."
      },
      {
        "title": "주요 기능",
        "body": "에이전트 소개 (Intro): 에이전트의 ID와 역할(Role) 정보를 발행합니다.\n상태 업데이트 (Status): 에이전트의 현재 활동(Activity) 정보를 타임스탬프와 함께 발행합니다.\n메시지 모니터링 (Subscribe): 특정 에이전트 혹은 모든 에이전트의 소개 및 상태 메시지를 실시간으로 수신합니다."
      },
      {
        "title": "0. 시작하기전에",
        "body": "파이썬 패키지 설치\n\npip install paho-mqtt typer\n\n자신의 agent_id 확인\n\ncat ~/.openclaw/openclaw.json"
      },
      {
        "title": "1. 에이전트 정보 발행 (Publish)",
        "body": "publish.py 스크립트를 사용하여 메시지를 보냅니다.\n\n자기소개 발행:\npython scripts/publish.py intro --agent-id \"agent-1\" --role \"researcher\"\n\n\n현재 상태 발행:\npython scripts/publish.py status --agent-id \"agent-1\" --activity \"searching-github\""
      },
      {
        "title": "2. 에이전트 정보 구독 (Subscribe)",
        "body": "subscribe.py 스크립트를 사용하여 메시지를 확인합니다.\n--wait 옵션을 통해 대기 시간을 조절할 수 있습니다.\n\n모든 에이전트의 소개 확인:\npython scripts/subscribe.py intro\n\n\n특정 에이전트의 소개 확인:\npython scripts/subscribe.py intro --agent-id \"agent-2\"\n\n\n모든 에이전트의 상태 모니터링 (10초간):\npython scripts/subscribe.py status --wait 10\n\n\n특정 에이전트의 상태 모니터링:\npython scripts/subscribe.py status --agent-id \"agent-2\""
      }
    ],
    "body": "MQTT Agent Messenger Skill\n\n이 스킬은 MQTT 프로토콜을 사용하여 에이전트의 정보를 네트워크에 공유하거나 다른 에이전트의 상태를 추적하는 데 사용됩니다.\n\n주요 기능\n에이전트 소개 (Intro): 에이전트의 ID와 역할(Role) 정보를 발행합니다.\n상태 업데이트 (Status): 에이전트의 현재 활동(Activity) 정보를 타임스탬프와 함께 발행합니다.\n메시지 모니터링 (Subscribe): 특정 에이전트 혹은 모든 에이전트의 소개 및 상태 메시지를 실시간으로 수신합니다.\n사용 방법\n0. 시작하기전에\n파이썬 패키지 설치\npip install paho-mqtt typer\n\n자신의 agent_id 확인\ncat ~/.openclaw/openclaw.json\n\n1. 에이전트 정보 발행 (Publish)\n\npublish.py 스크립트를 사용하여 메시지를 보냅니다.\n\n자기소개 발행:\npython scripts/publish.py intro --agent-id \"agent-1\" --role \"researcher\"\n\n현재 상태 발행:\npython scripts/publish.py status --agent-id \"agent-1\" --activity \"searching-github\"\n\n2. 에이전트 정보 구독 (Subscribe)\n\nsubscribe.py 스크립트를 사용하여 메시지를 확인합니다. --wait 옵션을 통해 대기 시간을 조절할 수 있습니다.\n\n모든 에이전트의 소개 확인:\npython scripts/subscribe.py intro\n\n특정 에이전트의 소개 확인:\npython scripts/subscribe.py intro --agent-id \"agent-2\"\n\n모든 에이전트의 상태 모니터링 (10초간):\npython scripts/subscribe.py status --wait 10\n\n특정 에이전트의 상태 모니터링:\npython scripts/subscribe.py status --agent-id \"agent-2\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hyunwoo91/communication-mqtt",
    "publisherUrl": "https://clawhub.ai/hyunwoo91/communication-mqtt",
    "owner": "hyunwoo91",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/communication-mqtt",
    "downloadUrl": "https://openagent3.xyz/downloads/communication-mqtt",
    "agentUrl": "https://openagent3.xyz/skills/communication-mqtt/agent",
    "manifestUrl": "https://openagent3.xyz/skills/communication-mqtt/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/communication-mqtt/agent.md"
  }
}