# Send communication-mqtt 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": "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": {
    "downloadUrl": "/downloads/communication-mqtt",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=communication-mqtt",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/subscribe.py",
      "scripts/publish.py"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### MQTT Agent Messenger Skill

이 스킬은 MQTT 프로토콜을 사용하여 에이전트의 정보를 네트워크에 공유하거나 다른 에이전트의 상태를 추적하는 데 사용됩니다.

### 주요 기능

에이전트 소개 (Intro): 에이전트의 ID와 역할(Role) 정보를 발행합니다.
상태 업데이트 (Status): 에이전트의 현재 활동(Activity) 정보를 타임스탬프와 함께 발행합니다.
메시지 모니터링 (Subscribe): 특정 에이전트 혹은 모든 에이전트의 소개 및 상태 메시지를 실시간으로 수신합니다.

### 0. 시작하기전에

파이썬 패키지 설치

pip install paho-mqtt typer

자신의 agent_id 확인

cat ~/.openclaw/openclaw.json

### 1. 에이전트 정보 발행 (Publish)

publish.py 스크립트를 사용하여 메시지를 보냅니다.

자기소개 발행:
python scripts/publish.py intro --agent-id "agent-1" --role "researcher"


현재 상태 발행:
python scripts/publish.py status --agent-id "agent-1" --activity "searching-github"

### 2. 에이전트 정보 구독 (Subscribe)

subscribe.py 스크립트를 사용하여 메시지를 확인합니다.
--wait 옵션을 통해 대기 시간을 조절할 수 있습니다.

모든 에이전트의 소개 확인:
python scripts/subscribe.py intro


특정 에이전트의 소개 확인:
python scripts/subscribe.py intro --agent-id "agent-2"


모든 에이전트의 상태 모니터링 (10초간):
python scripts/subscribe.py status --wait 10


특정 에이전트의 상태 모니터링:
python scripts/subscribe.py status --agent-id "agent-2"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: hyunwoo91
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/communication-mqtt)
- [Send to Agent page](https://openagent3.xyz/skills/communication-mqtt/agent)
- [JSON manifest](https://openagent3.xyz/skills/communication-mqtt/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/communication-mqtt/agent.md)
- [Download page](https://openagent3.xyz/downloads/communication-mqtt)