# Send Pet Me Master 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pet-me-master",
    "name": "Pet Me Master",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/aaigotchi/pet-me-master",
    "canonicalUrl": "https://clawhub.ai/aaigotchi/pet-me-master",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pet-me-master",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pet-me-master",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "FIX_PLAN.md",
      "HOW-IT-WORKS.md",
      "README.md",
      "SIMPLE-RULES.md",
      "SKILL.md"
    ],
    "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/pet-me-master"
    },
    "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/pet-me-master",
    "downloadUrl": "https://openagent3.xyz/downloads/pet-me-master",
    "agentUrl": "https://openagent3.xyz/skills/pet-me-master/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pet-me-master/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pet-me-master/agent.md"
  }
}
```
## Documentation

### Pet Me Master

Batch-only pet flow for Aavegotchis:

Discovers gotchis owned by your agent wallet
Adds gotchis delegated (lent) to your wallet from the Base core subgraph
Checks cooldown on-chain (lastInteracted)
Sends one interact(uint256[]) tx through Bankr for all ready gotchis
Sends reminder and fallback auto-pet if no reply

### Config

Create ~/.openclaw/workspace/skills/pet-me-master/config.json:

{
  "contractAddress": "0xA99c4B08201F2913Db8D28e71d020c4298F29dBF",
  "rpcUrl": "https://mainnet.base.org",
  "chainId": 8453,
  "walletAddress": "0xYourAgentWallet",
  "dailyReminder": true,
  "fallbackDelayHours": 1,
  "reminder": {
    "enabled": true,
    "telegramChatId": "YOUR_CHAT_ID",
    "fallbackDelayHours": 1
  }
}

Wallet resolution order:

PET_ME_WALLET_ADDRESS / BANKR_WALLET_ADDRESS
config.walletAddress / config.wallet
Bankr prompt: What is my Base wallet address?

Reminder chat resolution order:

PET_ME_TELEGRAM_CHAT_ID
TELEGRAM_CHAT_ID
config.reminder.telegramChatId (or config.telegramChatId)

### Bankr Auth

This skill submits transactions directly to Bankr API and resolves API key from:

BANKR_API_KEY env
systemctl --user exported environment
~/.openclaw/skills/bankr/config.json (apiKey)
~/.openclaw/workspace/skills/bankr/config.json (apiKey)

### Scripts

./scripts/check-cooldown.sh [gotchi-id]
./scripts/pet-all.sh [--dry-run]

Discover owned + delegated gotchis, then batch-pet ready ones


./scripts/pet.sh [--dry-run]

Batch-only wrapper to pet-all.sh


./scripts/pet-status.sh

Shows status for discovered owned + delegated gotchis


./scripts/check-status.sh

Wrapper for pet-status.sh


./scripts/pet-command.sh [--dry-run] [--tx-dry-run] "<natural-language command>"

Any pet action routes to batch mode


./scripts/check-and-remind.sh
./scripts/auto-pet-fallback.sh
./scripts/auto-pet-at-cooldown.sh

Waits until all discovered owned+delegated gotchis are ready (re-check loop for desync), then runs batch pet and sends Telegram with total count + petted IDs


./scripts/schedule-dynamic-check.sh

### Natural-Language Routing

Examples:

./scripts/pet-command.sh "pet my gotchis"
./scripts/pet-command.sh "pet all my gotchis"
./scripts/pet-command.sh "pet status"
./scripts/pet-command.sh "check cooldown for gotchi 9638"

### Operational Notes

Cooldown threshold is 43260 seconds (12h + 1m).
Reminder trigger is when all discovered gotchis are ready.
If no user action, fallback runs after configured delay (default 1 hour).
Fallback and manual pet both use batch flow.

### Troubleshooting

Could not resolve agent wallet address

Set PET_ME_WALLET_ADDRESS or config.walletAddress.


BANKR_API_KEY is missing

Export BANKR_API_KEY or configure Bankr skill API key.


Telegram chat ID missing

Set PET_ME_TELEGRAM_CHAT_ID or config.reminder.telegramChatId.


Cooldown checks fail

Verify rpcUrl, contract address, and Base RPC connectivity.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aaigotchi
- Version: 2.4.3
## 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/pet-me-master)
- [Send to Agent page](https://openagent3.xyz/skills/pet-me-master/agent)
- [JSON manifest](https://openagent3.xyz/skills/pet-me-master/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pet-me-master/agent.md)
- [Download page](https://openagent3.xyz/downloads/pet-me-master)