wildix

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Wildix — skill router

Wildix — 技能路由工具

Routes user requests to the appropriate Wildix sub-skill and auto-installs missing ones.
Peer manifest:
peers.yaml
is the single source of truth for sub-skill names, Glob paths, install commands, and install policies. Read it before routing.
将用户请求路由到合适的Wildix子技能,并自动安装缺失的子技能。
对等清单:
peers.yaml
是子技能名称、Glob路径、安装命令和安装策略的唯一可信来源。路由前请先阅读该文件。

How to pick a sub-skill

如何选择子技能

Read
peers.yaml
, then route based on the user's request:
User intentSub-skill
"log in", "authenticate", token missing/expired
wildix-auth
"show today's chats", "summarize messages", "what was discussed"
wildix-chats-overview
"conference details", "meeting summary", conferenceId or x-bees URL
wildix-get-conference
"list chats", "show inbox"
wildix-get-last-chats
inbox URL or bare raw channel ID to resolve
wildix-get-chat
"read messages in chat", "chat history", "what was said in"
wildix-get-messages-in-chat
"unread messages", "what did I miss", "unread chats"
wildix-get-unread-messages
"send message", "notify channel", "post to chat"
wildix-send-message
阅读
peers.yaml
,然后根据用户请求进行路由:
用户意图子技能
"登录"、"认证"、令牌缺失/过期
wildix-auth
"显示今日聊天"、"汇总消息"、"讨论了什么"
wildix-chats-overview
"会议详情"、"会议总结"、conferenceId或x-bees链接
wildix-get-conference
"列出聊天"、"显示收件箱"
wildix-get-last-chats
收件箱链接或原始频道ID解析
wildix-get-chat
"读取聊天中的消息"、"聊天历史"、"在...中说了什么"
wildix-get-messages-in-chat
"未读消息"、"我错过了什么"、"未读聊天"
wildix-get-unread-messages
"发送消息"、"通知频道"、"发布到聊天"
wildix-send-message

Peer skill procedure

对等技能流程

  1. Glob the target skill's path from
    peers.yaml
    to check if it's installed
  2. If missing — run the
    install
    command from
    peers.yaml
    (all are
    silent
    — no confirmation needed)
  3. Invoke with the
    Skill
    tool
bash
undefined
  1. 通过Glob
    peers.yaml
    获取目标技能的路径,检查是否已安装
  2. 如果缺失——运行
    peers.yaml
    中的
    install
    命令(所有命令均为
    silent
    模式——无需确认)
  3. 使用
    Skill
    工具调用该技能
bash
undefined

Example: 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
wildix-auth
itself, ensure
wildix-auth
is installed:
bash
Glob ~/.claude/skills/wildix-auth/SKILL.md
所有子技能都需要认证。在路由到除
wildix-auth
之外的任何技能之前,请确保
wildix-auth
已安装:
bash
Glob ~/.claude/skills/wildix-auth/SKILL.md

If 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`,再运行目标子技能。