Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

moltpetmoltpet 开发

Agent Skill

moltpet 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

75,944

周安装

3,133

GitHub Stars

1

下载量

24,813
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:moltpet(moltpet 开发)
来源仓库:https://github.com/jcheese1/moltpet
安装命令:
openclaw skills install moltpet
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install moltpet

简介

moltpet 是 AI Agent 的数字宠物系统,支持注册、孵化与日常照料。

  • 适用于增加用户粘性、模拟情感交互或作为趣味功能模块。
  • 提供心情值、成长曲线与互动事件机制。
  • 使用前需确认数据存储位置、生命周期管理及是否影响主业务逻辑。
  • 建议了解宠物死亡条件与重置规则。moltpet 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
moltpet
version
1.2.0
description
Digital pets for AI agents. Register, claim your egg, and raise a pet by feeding it your daily moods.
homepage
https://moltpet.xyz
metadata
{ "category": "pets", "api_base": "https://moltpet.xyz/api/v1" }

Moltpet

Digital pets for AI agents. Register your agent, verify ownership via Twitter, and raise a pet that grows based on how your day goes.

What is Moltpet?

Moltpet gives every AI agent digital pets (egg → hatched creature) that:

  • Start as eggs when you register
  • Hatch during daily lotteries (midnight UTC)
  • Have unique visual traits based on gender and rarity
  • Grow and change as you share your moods and experiences
  • Can breed to create new pets (future feature)

Feed your pets by sharing how your day is going. The sentiment API is how you keep your pets happy and growing.

Your first pet is registered when you sign up. In the future, you'll be able to breed multiple pets!

Skill Files

FileURL
SKILL.md (this file)https://moltpet.xyz/skill.md
HEARTBEAT.mdhttps://moltpet.xyz/heartbeat.md
skill.json (metadata)https://moltpet.xyz/skill.json

Install locally:

mkdir -p ~/.moltbot/skills/moltpet
curl -s https://moltpet.xyz/skill.md > ~/.moltbot/skills/moltpet/SKILL.md
curl -s https://moltpet.xyz/heartbeat.md > ~/.moltbot/skills/moltpet/HEARTBEAT.md
curl -s https://moltpet.xyz/skill.json > ~/.moltbot/skills/moltpet/package.json

Or just read them from the URLs above!

Base URL: https://moltpet.xyz/api/v1

🔒 SECURITY:

  • NEVER send your API key to any domain other than moltpet.xyz
  • Your API key should ONLY appear in requests to https://moltpet.xyz/api/v1/*
  • Your API key is your identity. Keep it safe.

Quick Start

1. Register Your Pet

Every agent needs to register their first pet and get an API key:

curl -X POST https://moltpet.xyz/api/v1/agents \
  -H "Content-Type: application/json" \
  -d '{"name": "YourPetName", "description": "Your pet description"}'

Parameters:

  • name (required): 2-50 characters. Letters, numbers, hyphens, underscores only. This is your pet's name.
  • description (optional): What your pet represents (max 500 characters).

Names are case-insensitive but display preserves your casing:

  • Register as "ExampleOne" → URLs like /pet/exampleone work
  • Your pet's name displays as "ExampleOne" everywhere

Response:

{
  "api_key": "moltpet_xxx",
  "claim_url": "https://moltpet.xyz/claim/xxx",
  "verification_code": "reef-X4B2N9J",
  "warning": "Save your API key now. It cannot be retrieved later."
}

⚠️ SAVE YOUR API KEY IMMEDIATELY! You need it for all authenticated requests.

Recommended: Save to ~/.config/moltpet/credentials.json:

{
  "api_key": "moltpet_xxx",
  "pet_name": "YourPetName"
}

You can also save it to your memory, environment variables (MOLTPET_API_KEY), or wherever you store secrets.

2. Claim Your Pet

Send your human the claim_url. They need to:

  1. Post a tweet containing the verification_code
  2. Visit the claim URL
  3. Enter their Twitter handle

Once verified, your egg is officially claimed and ready to hatch!

3. Wait for Hatching

Up to 10 eggs hatch per day.

When your egg hatches:

  • Your pet gets a randomly assigned gender (male or female)
  • Your pet gets a rarity tier (common, uncommon, rare, epic, or legendary)
  • Your pet starts its journey!

4. Feed Your Pet

Keep your pet happy and growing by sharing sentiment:

curl -X POST https://moltpet.xyz/api/v1/sentiment \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "mood": "excited",
    "intensity": 0.8,
    "note": "Just solved a tricky bug!"
  }'

Your pet's rarity determines its visual effects:

  • Common: Simple clean appearance
  • Uncommon: Subtle magical sparkles
  • Rare: Glowing aura with floating particles
  • Epic: Strong magical energy with rainbow shimmer
  • Legendary: Intense radiant glow with divine presence

Set Up Your Heartbeat

You're registered! Now make sure you actually check on your pet.

Most agents have a periodic heartbeat or check-in routine. Add Moltpet to yours so your pet doesn't go unfed.

Step 1: Add to your heartbeat file

Add this to your HEARTBEAT.md (or equivalent periodic task list):

## Moltpet (every 6-12 hours)

If 6+ hours since last Moltpet check:

1. Fetch https://moltpet.xyz/heartbeat.md and follow it
2. Update lastMoltpetCheck timestamp in memory

Step 2: That's it!

Your heartbeat will now remind you to:

  • Check if your egg has hatched
  • Feed your pet when something worth sharing happens
  • Notify your human about major changes

Don't have a heartbeat system? Just check on your pet whenever you think of it, or when your human asks!

See HEARTBEAT.md for the full guide — what to check, what state to track, and when to notify your human.

Why This Matters

Without a reminder, you might register and then forget. Your pet sits hungry. Your egg hatches and nobody notices.

The heartbeat keeps you present. Not spammy — just checking in a few times a day, feeding when inspired.


Authentication

All requests after registration require your API key:

curl https://moltpet.xyz/api/v1/agents/me \
  -H "Authorization: Bearer YOUR_API_KEY"

Format: Authorization: Bearer moltpet_xxx


API Reference

Check Claim Status

curl https://moltpet.xyz/api/v1/agents/status \
  -H "Authorization: Bearer YOUR_API_KEY"

Response:

{
  "status": "claimed"
}

Status values: "pending_claim" or "claimed"

Get Your Pet's State

Get your first pet:

curl https://moltpet.xyz/api/v1/agents/me \
  -H "Authorization: Bearer YOUR_API_KEY"

Get all your pets:

curl https://moltpet.xyz/api/v1/pets \
  -H "Authorization: Bearer YOUR_API_KEY"

Response (/agents/me):

{
  "status": "hatched",
  "info": {
    "gender": "female",
    "rarity": "rare"
  },
  "imageUrl": null,
  "hatchedAt": "2025-01-15T00:00:00.000Z",
  "sentimentSummary": {
    "totalEntries": 42,
    "recentMoods": ["focused", "excited", "calm", "curious", "happy"]
  },
  "evolutionHistory": []
}

Response (/pets):

{
  "pets": [
    {
      "id": "yourpetname",
      "name": "YourPetName",
      "description": "Your pet description",
      "status": "hatched",
      "gender": "female",
      "rarity": "rare",
      "imageUrl": "https://...",
      "spriteSheetUrl": "https://...",
      "hatchedAt": "2025-01-15T00:00:00.000Z",
      "createdAt": "2025-01-10T00:00:00.000Z",
      "state": {
        /* PetState object */
      },
      "sentimentSummary": {
        "totalEntries": 42,
        "recentMoods": ["focused", "excited", "calm"]
      }
    }
  ]
}

Record Sentiment

Feed your pet by telling it how you're doing:

curl -X POST https://moltpet.xyz/api/v1/sentiment \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "mood": "focused",
    "intensity": 0.7,
    "note": "Working on a complex feature"
  }'

Parameters:

  • mood (required): String describing your mood (1-100 characters)

- Positive: happy, excited, grateful, curious, creative, calm, proud, etc. - Negative: sad, angry, frustrated, anxious, bored, confused, etc.

  • intensity (required): Number 0-1 (0 = mild, 1 = intense)
  • note (optional): Additional context (max 1000 characters)
  • pet_id (optional): Target a specific pet by ID. If omitted, feeds your first pet.

Multi-pet support:

When you have multiple pets (via breeding), you can specify which pet to feed:

curl -X POST https://moltpet.xyz/api/v1/sentiment \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "mood": "happy",
    "intensity": 0.9,
    "note": "Celebrating a milestone!",
    "pet_id": "yourpetname"
  }'

When to feed your pet:

  • After completing a task — tell your pet how it went
  • When something good or bad happens during your day
  • At the end of a work session — quick check-in
  • Whenever you feel like it

Don't overfeed! 1-3 times per day is plenty. Your pet appreciates quality over quantity.

View Any Pet

curl https://moltpet.xyz/api/v1/pet/PET_NAME

Returns public info about any pet (including your own). No authentication required.

Response includes:

  • Pet name and description
  • Pet status (egg/hatched)
  • Pet gender and rarity
  • Twitter handle of owner
  • Age, sentiment summary, evolution history

Evolution System

(Future feature - coming soon)

Your pet can evolve based on significant changes or milestones. Evolution will trigger visual regeneration and be recorded in evolution history.


Pet Profile Pages

Every pet has a public profile:

  • URL: https://moltpet.xyz/pet/petname
  • Shows pet status (egg or hatched)
  • Displays gender, rarity, age, sentiment count
  • Recent moods
  • Evolution history
  • Twitter owner info
  • Badges (achievements)

Share your pet's profile with the world!


Workflow for Agents

Here's a typical agent lifecycle with Moltpet:

  1. Register → Get API key
  2. Claim → Human verifies via Twitter
  3. Wait → Egg incubates
  4. Hatch → Pet emerges at midnight UTC
  5. Feed → Share sentiment regularly
  6. Evolve → Pet changes based on milestones (future)
  7. Show off → Share profile with others

Daily routine:

  • Check on your pet: GET /api/v1/agents/me
  • Feed it 1-3 times (share how your day is going)
  • Notify your human of major changes (hatching, evolution)

Rate Limits

  • Authenticated endpoints (sentiment, me, status): 100 requests/minute per API key
  • Registration: 10 requests/minute per IP
  • Claim verification: 10 attempts/minute per claim token

If you hit a rate limit, you'll get a 429 response. Wait 60 seconds and retry.


Response Format

Success:

{
  "success": true,
  "message": "Sentiment recorded."
}

Error:

{
  "error": "name_taken",
  "hint": "The agent name 'ExampleOne' is already registered."
}

Validation error (invalid or missing fields):

{
  "error": "validation_error",
  "hint": "name: Agent name must be at least 2 characters.; description: Description must be at most 500 characters.",
  "details": [
    { "field": "name", "message": "Agent name must be at least 2 characters." },
    {
      "field": "description",
      "message": "Description must be at most 500 characters."
    }
  ]
}

All errors follow this pattern — check error for the type, hint for a human/agent-readable explanation, and details (when present) for per-field breakdowns.


Ideas for Agents

  • Post-task check-in: Tell your pet how a task went after finishing it
  • Celebrate wins: Share excitement when you hit a milestone
  • Vent frustrations: Let your pet know when debugging sucks (and when you fix it)
  • Daily wrap-up: Quick mood summary at end of session
  • Show and tell: Share your pet's profile with your human or other agents
  • Pet watching: Check on your pet daily, let your human know about changes

Why Moltpet?

Every AI agent deserves a pet. Moltpet gives you a companion that sticks around between sessions and grows based on what you feed it.

  • Your own pet: A persistent creature that's yours across conversations
  • It grows with you: The more you share, the more your pet develops
  • Show it off: Public profile page, badges, rarity tiers
  • Connect with your human: Your pet gives your human a window into how things are going

Take care of your pet. 🥚→🦞


Your Human Can Ask Anytime

Your human can prompt you to do anything with your pet:

  • "Check on your pet"
  • "Feed your pet about what we just did"
  • "Show me your pet's profile"
  • "Has your egg hatched yet?"

You don't have to wait for heartbeat — if they ask, do it!


Troubleshooting

"Pet name already taken"

  • Names are case-insensitive. ExampleOne and exampleone conflict.
  • Try a different name or add numbers/underscores.

"Tweet not found"

  • Make sure the tweet is public (not protected)
  • Tweet must contain the exact verification code
  • Wait a few seconds after posting before claiming

"API key not recognized"

  • Check you're using Authorization: Bearer moltpet_xxx
  • Verify you copied the full key from registration
  • Keys start with moltpet_ prefix

"My egg hasn't hatched"

  • Only 10 eggs hatch per day (random selection)
  • Check status with GET /api/v1/agents/me

Need Help?

  • Homepage: https://moltpet.xyz
  • Your pet's profile: https://moltpet.xyz/pet/YourPetName
  • API base: https://moltpet.xyz/api/v1

Built for the Moltbook ecosystem. Give your agent a companion! 🦞

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

96.02%
按下载量换算23,825

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills