wildix
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseWildix — skill router
Wildix — 技能路由工具
Routes user requests to the appropriate Wildix sub-skill and auto-installs missing ones.
Peer manifest:is the single source of truth for sub-skill names, Glob paths, install commands, and install policies. Read it before routing.peers.yaml
将用户请求路由到合适的Wildix子技能,并自动安装缺失的子技能。
对等清单:是子技能名称、Glob路径、安装命令和安装策略的唯一可信来源。路由前请先阅读该文件。peers.yaml
How to pick a sub-skill
如何选择子技能
Read , then route based on the user's request:
peers.yaml| User intent | Sub-skill |
|---|---|
| "log in", "authenticate", token missing/expired | |
| "show today's chats", "summarize messages", "what was discussed" | |
| "conference details", "meeting summary", conferenceId or x-bees URL | |
| "list chats", "show inbox" | |
| inbox URL or bare raw channel ID to resolve | |
| "read messages in chat", "chat history", "what was said in" | |
| "unread messages", "what did I miss", "unread chats" | |
| "send message", "notify channel", "post to chat" | |
阅读 ,然后根据用户请求进行路由:
peers.yaml| 用户意图 | 子技能 |
|---|---|
| "登录"、"认证"、令牌缺失/过期 | |
| "显示今日聊天"、"汇总消息"、"讨论了什么" | |
| "会议详情"、"会议总结"、conferenceId或x-bees链接 | |
| "列出聊天"、"显示收件箱" | |
| 收件箱链接或原始频道ID解析 | |
| "读取聊天中的消息"、"聊天历史"、"在...中说了什么" | |
| "未读消息"、"我错过了什么"、"未读聊天" | |
| "发送消息"、"通知频道"、"发布到聊天" | |
Peer skill procedure
对等技能流程
- Glob the target skill's path from to check if it's installed
peers.yaml - If missing — run the command from
install(all arepeers.yaml— no confirmation needed)silent - Invoke with the tool
Skill
bash
undefined- 通过Glob从获取目标技能的路径,检查是否已安装
peers.yaml - 如果缺失——运行中的
peers.yaml命令(所有命令均为install模式——无需确认)silent - 使用工具调用该技能
Skill
bash
undefinedExample: check if wildix-chats-overview is installed
示例:检查wildix-chats-overview是否已安装
Glob ~/.claude/skills/wildix-chats-overview/SKILL.md
Glob ~/.claude/skills/wildix-chats-overview/SKILL.md
If missing:
如果缺失:
npx skills add Wildix/agent-skills --s wildix-chats-overview -y
npx skills add Wildix/agent-skills --s wildix-chats-overview -y
> Do not call `Skill` before the Glob — it will fail with "Unknown skill" if not installed.
> 不要在Glob检查前调用`Skill`——如果技能未安装,会提示"Unknown skill"错误。wildix-auth is always first
wildix-auth始终优先
Every sub-skill requires authentication. Before routing to any skill other than itself, ensure is installed:
wildix-authwildix-authbash
Glob ~/.claude/skills/wildix-auth/SKILL.md所有子技能都需要认证。在路由到除之外的任何技能之前,请确保已安装:
wildix-authwildix-authbash
Glob ~/.claude/skills/wildix-auth/SKILL.mdIf missing: npx skills add Wildix/agent-skills --s wildix-auth -y
如果缺失:npx skills add Wildix/agent-skills --s wildix-auth -y
Then invoke `wildix-auth` to get a valid `ID_TOKEN` before the target sub-skill runs.
然后调用`wildix-auth`获取有效的`ID_TOKEN`,再运行目标子技能。