Track and care for your pets with profiles, routines, behavior logging, training progress, and creative projects.
Coding
宠物冒险生活
Try it会旅行写日记打电话求助并掷骰成长的真实世界文字宠物
What it does
Create and run a text-only pet adventure diary driven by real-world locations, local time, weather, D20-style event checks, and emergency phone calls. Use when the user asks to initialize a traveling pet, advance its daily journey, check where it is, handle missed calls, resolve a pet emergency, or grow a DND-like emergent life simulation through diary entries.
The skill document
宠物冒险生活
Overview
Use this skill to run a single text pet that travels through real places, writes diary entries, and sometimes calls the user during urgent events. Treat the diary as the user-facing window and the JSON files as the long-term memory of the pet and world.
The skill is platform-neutral: use scripts/pet_adventure.py directly in ordinary agent environments, or scripts/openclaw_adapter.py from OpenClaw-style actions.
Quick Start
Work in the user's chosen project/workspace. The engine creates a pet-life/ folder there.
python scripts/pet_adventure.py --workspace /path/to/workspace init
python scripts/pet_adventure.py --workspace /path/to/workspace advance
python scripts/pet_adventure.py --workspace /path/to/workspace status
For testing or demonstrations, use deterministic seeds and offline weather:
python scripts/pet_adventure.py --workspace /tmp/pet-demo init --seed demo --force
python scripts/pet_adventure.py --workspace /tmp/pet-demo advance --offline --force-call
Core Workflow
- If
pet-life/state.jsondoes not exist, initialize first. - Before writing a new diary entry, check unresolved calls with
status. - Run
advanceonce per in-world day. It updates state, writespet-life/diary/YYYY-MM-DD.md, and may create a pending call. - If a phone call appears, present its 2-3 choices to the user. Resolve the selected choice with
answer --call-id --choice. - If an urgent call has expired, run
auto-resolve; the pet chooses based on personality traits and the D20 result.
Keep user-facing prose in Chinese unless the user asks otherwise. Match the diary voice to the pet's personality rather than forcing one fixed style.
Phone Calls
Phone calls are small DND-like encounters. Each call has a title, urgency, deadline, DC, choices, selected skill, D20 roll, result, and long-term consequences.
Use these commands:
python scripts/pet_adventure.py --workspace /path/to/workspace status --json
python scripts/pet_adventure.py --workspace /path/to/workspace answer --call-id abc123 --choice 2
python scripts/pet_adventure.py --workspace /path/to/workspace auto-resolve
Outcome categories:
critical_success: natural 20 or total at least DC + 8.success: total meets DC.mixed: total is within 3 below DC.failure: total misses by more than 3.critical_failure: natural 1 or total at least 8 below DC.
See references/rules.md before changing event rules, state shape, or dice behavior.
OpenClaw Usage
Use scripts/openclaw_adapter.py when the host expects JSON actions:
python scripts/openclaw_adapter.py init --payload '{"workspace":"/path/to/workspace","seed":"demo"}'
python scripts/openclaw_adapter.py advance --payload '{"workspace":"/path/to/workspace"}'
python scripts/openclaw_adapter.py answer --payload '{"workspace":"/path/to/workspace","call_id":"abc123","choice":1}'
If OpenClaw has notification channels configured, send pending call summaries through the available channel. If no channel is configured, keep the default missed-call behavior and surface it on the next status or advance.
See references/openclaw.md when wiring this skill into an OpenClaw environment.
Files Produced
pet-life/state.json: pet identity, traits, inventory, memories, current location, mood, fatigue, random seed.pet-life/world.json: visited places and rumors.pet-life/events.jsonl: append-only event log.pet-life/calls.jsonl: append-only phone call log with pending and resolved calls.pet-life/diary/YYYY-MM-DD.md: readable diary entries and phone outcomes.
Do not manually edit these files unless the user explicitly asks for a correction. Prefer engine commands so the diary and state stay consistent.
Related skills
Keep the user's personal life diary for them. Use whenever the user shares something from their day worth remembering — an event, a feeling, a win, a decisio...
Create and maintain dedicated archives for each pet, including profiles, daily journals, photos, feeding logs, health records, and care reminders. Use when t...
Provide personal growth, habit formation, goal setting, and self-improvement guidance. Use when user wants to (1) set and achieve goals, (2) build good habit...
Plan complete hiking itineraries and leader-ready route briefs for day hikes, mountain walks, coastal treks, and beginner group outings. Use when a user asks...
Generate creative writing prompts from your own life. Scans personal photos metadata, journal entries, and notes to find emotionally resonant moments, then transforms them into fiction seeds across multiple genres. Use when experiencing writer's block or wanting to fictionalize real experiences.