yuanbao

Automates group chat replies, @mentions, and direct messages in Yuanbao groups.

6|1|Updated May 11, 2026
One-click install
npx skills add https://github.com/yakeworld/Synthos --skill yuanbao-yakeworld
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: yuanbao
Source: https://github.com/yakeworld/Synthos/tree/main/skills/extended/external-automation/automation-skills/yuanbao
Command: npx skills add https://github.com/yakeworld/Synthos --skill yuanbao-yakeworld

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing interactions in Yuanbao group chats (派) requires correctly querying members, sending @mentions, and dispatching private messages through the right gateway tools, and mistakes like guessing user identities or misusing send tools break the workflow. ## Core Features & Use Cases - Reply-as-Message Model: Your text reply is automatically delivered to the group by the gateway, with no separate send-message tool or permission disclaimers needed. - @Mention Workflow: Queries exact member nicknames via yb_query_group_members before inserting @nickname into replies so mentions actually notify users. - Direct Messaging: Sends private messages with optional media attachments (images, documents) through yb_send_dm, with candidate clarification when names match multiple users. - Use Case: A user asks "帮我艾特元宝" in a group; the skill extracts the group_code from chat_id, looks up the exact nickname, and replies with a working @mention. ## Quick Start Ask the assistant 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 chat?

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

How to send a private message or DM in Yuanbao groups?

Use the yb_send_dm tool with group_code, the target user's name, and the message content. It also supports media attachments like images via the media_files parameter, and you can pass user_id directly to skip lookup.

Do I need a send message tool to reply in Yuanbao chats?

No. Your text reply itself is the message sent to the group or user; the gateway delivers it automatically. You should never add permission disclaimers or claim you cannot send messages.

What happens when a username matches multiple group members?

The tool returns an ambiguous status with a candidate list. You must present all candidates with their user_ids and ask the user to clarify, never guess or randomly select a recipient.

How do I get the group_code for Yuanbao tool calls?

Extract it from the current chat_id by stripping the prefix, for example group:535168412 becomes 535168412. This group_code is required for member queries and DM sending.