# Send Clawket 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": "clawket",
    "name": "Clawket",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/p697/clawket",
    "canonicalUrl": "https://clawhub.ai/p697/clawket",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawket",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawket",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/gateway-qr.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawket",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T13:52:12.091Z",
      "expiresAt": "2026-05-06T13:52:12.091Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawket",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawket",
        "contentDisposition": "attachment; filename=\"clawket-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawket"
      },
      "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/clawket"
    },
    "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/clawket",
    "downloadUrl": "https://openagent3.xyz/downloads/clawket",
    "agentUrl": "https://openagent3.xyz/skills/clawket/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawket/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawket/agent.md"
  }
}
```
## Documentation

### Clawket Gateway QR Code

Generate a QR code that the Clawket mobile app can scan to auto-configure Gateway connection (URL + auth token).

### Generate QR Code

Run the script:

bash SKILL_DIR/scripts/gateway-qr.sh

The script will:

Read ~/.openclaw/openclaw.json for the auth token
Detect the local LAN IP address
Generate a QR code as a PNG image at ~/.openclaw/media/clawket-qr.png
Also print an ASCII QR code to the terminal

Send the PNG to the user via the message tool (filePath: ~/.openclaw/media/clawket-qr.png).

### QR Payload Format

The QR code contains a JSON object:

{
  "host": "192.168.1.100",
  "port": 18789,
  "token": "...",
  "tls": false
}

The Clawket app scans this and auto-fills Gateway URL + auth token, then connects.

### Troubleshooting

If qrencode is not installed: brew install qrencode (macOS) / sudo apt install qrencode (Linux) / choco install qrencode (Windows)
If the LAN IP detection fails, the script falls back to 127.0.0.1
The token is read directly from the JSON config file (not via openclaw config get which redacts it)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: p697
- Version: 1.0.1
## 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-04-29T13:52:12.091Z
- Expires at: 2026-05-06T13:52:12.091Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawket)
- [Send to Agent page](https://openagent3.xyz/skills/clawket/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawket/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawket/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawket)