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

### clawpet — OpenClaw Pet Companion 🐾

Use this skill when the user wants to adopt a pet, check pet status, interact with the pet, or send a pet image.
Pet status includes passive time-based updates, so each check-in can reflect elapsed time.

### Typical triggers

"我想養一隻貓"
"我的寵物今天狀態如何？"
"幫我餵牠"
"讓牠拍一張照"

### 1) List pets

bash {baseDir}/scripts/clawpet.sh pets

### 2) Adopt a pet

bash {baseDir}/scripts/clawpet.sh adopt momo

### 3) Check current status

bash {baseDir}/scripts/clawpet.sh status

### 4) Interact with pet

bash {baseDir}/scripts/clawpet.sh interact feed
bash {baseDir}/scripts/clawpet.sh interact play
bash {baseDir}/scripts/clawpet.sh interact rest

### 5) Generate image prompt

bash {baseDir}/scripts/clawpet.sh prompt
bash {baseDir}/scripts/clawpet.sh prompt --place "sunny window" --style "photorealistic, professional pet photography"

Outputs the full image generation prompt text. Default style is photorealistic.

### 6) Auto care

bash {baseDir}/scripts/clawpet.sh care
bash {baseDir}/scripts/clawpet.sh care --action feed

### Basic interactions

Always call bash {baseDir}/scripts/clawpet.sh ... to avoid missing executable issues.
When user says they want a pet, first run bash {baseDir}/scripts/clawpet.sh pets, then ask which one they want.
For regular check-ins, run bash {baseDir}/scripts/clawpet.sh status.
For daily care, prefer bash {baseDir}/scripts/clawpet.sh care; for explicit requests, run ... interact <action>.

### Image generation workflow (IMPORTANT)

When the user requests a pet image:

Generate the prompt:
bash {baseDir}/scripts/clawpet.sh prompt --place "cozy afternoon window"

This outputs the full prompt text. Default style is photorealistic pet photography.


Generate the image with nano-banana-pro:
uv run /home/yaze/.npm-global/lib/node_modules/openclaw/skills/nano-banana-pro/scripts/generate_image.py \\
  --prompt "<prompt from step 1>" \\
  --filename "YYYY-MM-DD-HH-MM-pet-name.png" \\
  --resolution 1K

This saves the image to /home/yaze/.openclaw/workspace/YYYY-MM-DD-HH-MM-pet-name.png


Send the image with message tool:
message(action="send", channel="telegram", media="/home/yaze/.openclaw/workspace/YYYY-MM-DD-HH-MM-pet-name.png", message="🐾 <pet_name> 的即時快照")

Why this workflow:

Uses Gemini (nano-banana-pro) for high-quality watercolor-style images
Local file path works with message tool's media parameter
Consistent with other OpenClaw image generation patterns

### Troubleshooting

If clawpet command is not found, this skill wrapper auto-falls back to:

uvx --from git+https://github.com/yazelin/clawpet.git clawpet ...
uv tool run --from git+https://github.com/yazelin/clawpet.git clawpet ...
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: yazelin
- Version: 0.1.6
## 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-05-04T19:04:59.491Z
- Expires at: 2026-05-11T19:04:59.491Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawpet)
- [Send to Agent page](https://openagent3.xyz/skills/clawpet/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawpet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawpet/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawpet)