yuanbao

Sends @mentions, queries group info, and delivers direct messages in Yuanbao groups.

Updated Aug 22, 2026
One-click install
npx skills add https://github.com/vivekgoquest/hermes-agent-stable --skill yuanbao-vivekgoquest
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: yuanbao
Source: https://github.com/vivekgoquest/hermes-agent-stable/tree/main/optional-skills/yuanbao
Command: npx skills add https://github.com/vivekgoquest/hermes-agent-stable --skill yuanbao-vivekgoquest

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing interactions in Yuanbao (元宝) groups requires knowing exact member nicknames for @mentions and handling direct messages, which is tedious to do manually through the app. ## Core Features & Use Cases - @Mention Users: Look up exact member nicknames with yb_query_group_members and include @nickname in replies so the gateway converts them into real notifications. - Group Queries: Retrieve group name, owner, member count, and member lists (find, list_bots, list_all) via yb_query_group_info and yb_query_group_members. - Direct Messages: Send private messages (私信) with optional media attachments using yb_send_dm, with automatic user lookup by name. - Use Case: A user in a Yuanbao group (派) asks "帮我艾特元宝" — the skill finds the exact nickname and replies with a working @mention, or sends a DM with an attached image to a specific member. ## Quick Start Ask the agent to @mention a specific member or send a private message to a user in the current Yuanbao group chat.

Frequently Asked Questions about yuanbao

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I @mention a user in a Yuanbao group?▼

Call yb_query_group_members with action="find", the target name, and mention=true to get the exact nickname. Then include @nickname in your reply text, and the gateway automatically converts it into a real @mention that notifies the user.

How to send a private message (DM) to a Yuanbao group member?▼

Use the yb_send_dm tool with the group_code, the target user's name, and your message. The tool finds the user automatically and sends the DM; you can also pass user_id directly to skip lookup or attach media files.

Can I send images or files in Yuanbao direct messages?▼

Yes, yb_send_dm supports media attachments via the media_files parameter. Images (.jpg/.png/.gif/.webp/.bmp) are sent as image messages, while other file types are delivered as documents.

Where does the group_code parameter come from?▼

The group_code is extracted from the current chat_id by stripping the prefix. For example, a chat_id of group:535168412 yields group_code 535168412, which you pass to all Yuanbao tools.

What happens when multiple Yuanbao members match a name search?▼

The yb_send_dm or member query tool returns a list of matching candidates when a name is ambiguous. You should ask the user to clarify which member they mean before proceeding with the mention or message.