Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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.

UtilitiesIntermediate7,147666AI 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-flash through 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

  1. node scripts/xiaoyue-chat.js "I'm a bit tired" "work-tired" → prints a comforting line and pushes assets/tired-rest.jpg.
  2. After a build finishes, fire the work-done scene to congratulate you in a Telegram channel.
  3. Use mood-happy to post celebration.jpg with 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Confirm Node.js 18 or newer: node --version
  2. Clone the repo: git clone https://github.com/anbeime/skill.git /tmp/anbeime-skill
  3. Copy it into your skills folder: mkdir -p ~/.claude/skills/xiaoyue-companion && cp -r /tmp/anbeime-skill/* ~/.claude/skills/xiaoyue-companion/
  4. 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).
  5. Install the OpenClaw CLI: npm install -g openclaw
  6. Configure and start the gateway: openclaw config set gateway.mode=local then openclaw gateway start
  7. Create an assets/ folder inside the skill and drop in images such as tired-rest.jpg and celebration.jpg.
  8. Restart Claude Code and say something like "I'm a bit tired" to verify the skill triggers.