Xiaoyue Virtual Companion
Generates warm, in-character encouragement via Zhipu AI (GLM-4.7-flash) and delivers it with a matching image through OpenClaw messaging.
UtilitiesIntermediate★ 7,147⑂ 666AI score 8/10Last updated: Sep 23, 2026
What it does
- Detects phrases like "I'm tired", "hey, you there?", "send me a photo" and replies as Xiaoyue, a 22-year-old companion persona, in one or two warm sentences.
- Calls Zhipu AI's
glm-4.7-flashthrough a Node.js script (scripts/xiaoyue-chat.js) whose full source is embedded in the skill doc. - Ships ~10 scene presets (work-start, work-progress, work-tired, work-done, life-coffee, life-gym, mood-happy, mood-focus...) that swap the system prompt.
- Sends the reply plus a static image from
assets/to Feishu, Discord, Telegram or WhatsApp via the OpenClaw CLI.
Who it's for
- Anyone who wants a friendly nudge pushed to chat while long-running tasks execute.
- Users already on the OpenClaw gateway with a Zhipu AI account.
- Builders experimenting with persona-driven notification bots.
Examples
node scripts/xiaoyue-chat.js "I'm a bit tired" "work-tired"→ prints a comforting line and pushesassets/tired-rest.jpg.- After a build finishes, fire the
work-donescene to congratulate you in a Telegram channel. - Use
mood-happyto postcelebration.jpgwith a cheer into a team Discord channel.
Note: image assets are not bundled — you supply them yourself — and each reply costs roughly ¥0.001 in API usage.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/anbeime/skill/HEAD/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the SKILL.m folder from the GitHub repo anbeime/skill into my ~/.claude/skills/xiaoyue-companion/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/anbeime/skill.git /tmp/anbeime-skill && mkdir -p ~/.claude/skills/xiaoyue-companion && cp -r /tmp/anbeime-skill/* ~/.claude/skills/xiaoyue-companion/⚠ This is a third-party skill. Check the source repository before installing.
- Confirm Node.js 18 or newer:
node --version - Clone the repo:
git clone https://github.com/anbeime/skill.git /tmp/anbeime-skill - Copy it into your skills folder:
mkdir -p ~/.claude/skills/xiaoyue-companion && cp -r /tmp/anbeime-skill/* ~/.claude/skills/xiaoyue-companion/ - Get an API key at https://open.bigmodel.cn and export it:
export ZHIPU_API_KEY=your_key(add it to your shell profile to persist). - Install the OpenClaw CLI:
npm install -g openclaw - Configure and start the gateway:
openclaw config set gateway.mode=localthenopenclaw gateway start - Create an
assets/folder inside the skill and drop in images such astired-rest.jpgandcelebration.jpg. - Restart Claude Code and say something like "I'm a bit tired" to verify the skill triggers.