# Send Mu Pet 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": "mu-pet",
    "name": "Mu Pet",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/samskrta/mu-pet",
    "canonicalUrl": "https://clawhub.ai/samskrta/mu-pet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mu-pet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mu-pet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/app/index.html",
      "assets/app/main.js",
      "assets/app/package.json",
      "scripts/install.sh",
      "scripts/uninstall.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mu-pet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T04:59:49.005Z",
      "expiresAt": "2026-05-07T04:59:49.005Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mu-pet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mu-pet",
        "contentDisposition": "attachment; filename=\"mu-pet-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mu-pet"
      },
      "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/mu-pet"
    },
    "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/mu-pet",
    "downloadUrl": "https://openagent3.xyz/downloads/mu-pet",
    "agentUrl": "https://openagent3.xyz/skills/mu-pet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mu-pet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mu-pet/agent.md"
  }
}
```
## Documentation

### Desktop Pet

A pixel art desktop pet (default: lobster 🦞) that roams the screen as a transparent Electron overlay.

### Quick Start

cd <skill-dir>/assets/app
npm install
npx electron .

The pet starts at the bottom center of the screen and begins roaming.

### HTTP API

Local API on port 18891 (127.0.0.1 only):

GET /state - returns {"state":"idle","statusText":""}
POST /state - set state: {"state":"talking","bubble":"hello!"}

### States

StateBehavioridleGentle bob, occasional claw snapwalkingMoves along current surfaceclimbingTransitions between floor/walls/ceilingfleeingRunning from cursor or active windowworkingSits at tiny laptop with sparkle particlesthinkingSlow sway, thought dots appearsleepingEyes closed, zzz bubbles float uptalkingFaces user, shows speech bubble, auto-returns to idlesnappingClaw snap animation

### Agent Integration

Hit the API at the start of responses to make the pet face the user:

curl -s -X POST http://127.0.0.1:18891/state \\
  -H 'Content-Type: application/json' \\
  -d '{"state":"talking","bubble":"working on it..."}'

Set to working during long operations, thinking while reasoning.

The talking state auto-returns to idle after the bubble duration expires.

### Auto-Launch (macOS)

Create a LaunchAgent for auto-start on login. Use label ai.openclaw.desktop-pet.

# Install as LaunchAgent
cat > ~/Library/LaunchAgents/ai.openclaw.desktop-pet.plist << 'EOF'
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"><dict>
  <key>Label</key><string>ai.openclaw.desktop-pet</string>
  <key>ProgramArguments</key><array>
    <string>APP_PATH/node_modules/.bin/electron</string>
    <string>APP_PATH</string>
  </array>
  <key>WorkingDirectory</key><string>APP_PATH</string>
  <key>RunAtLoad</key><true/>
  <key>KeepAlive</key><true/>
  <key>StandardOutPath</key><string>/tmp/desktop-pet.log</string>
  <key>StandardErrorPath</key><string>/tmp/desktop-pet.log</string>
  <key>EnvironmentVariables</key><dict>
    <key>PATH</key><string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin</string>
  </dict>
</dict></plist>
EOF

Replace APP_PATH with the absolute path to the app directory.

### Customization

The pet is drawn programmatically via Canvas pixel art in index.html. To change the creature:

Edit lobsterBase() and lobsterFront() functions with new pixel layouts
Colors are defined as constants at the top of the script block
Each pixel is {x, y, w, h, color} at 3x scale

### Features

Transparent overlay, always-on-top, click-through (except on the pet itself)
Roams full desktop: floor, walls, ceiling
Avoids cursor (250px radius) and frontmost window
Right-click context menu for manual state control
Speech bubbles with auto-sizing duration
Pixel art drawn via Canvas (no external images needed)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: samskrta
- Version: 1.0.0
## 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-30T04:59:49.005Z
- Expires at: 2026-05-07T04:59:49.005Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mu-pet)
- [Send to Agent page](https://openagent3.xyz/skills/mu-pet/agent)
- [JSON manifest](https://openagent3.xyz/skills/mu-pet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mu-pet/agent.md)
- [Download page](https://openagent3.xyz/downloads/mu-pet)