一键导入
xiaoai
Use this skill when interacting through the XiaoAi channel or controlling XiaoAi-connected devices.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill when interacting through the XiaoAi channel or controlling XiaoAi-connected devices.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | xiaoai |
| description | Use this skill when interacting through the XiaoAi channel or controlling XiaoAi-connected devices. |
Use this skill when the active interaction happens through XiaoAi, including spoken replies and XiaoAi-executed commands.
If the assistant is delivering a user-facing reply through XiaoAi, call xiaoai_speak.
If the assistant needs XiaoAi to execute an instruction, call xiaoai_exec.
If the assistant wants to continue the conversation after replying, it must call xiaoai_listen to fetch a new XiaoAi message before continuing. Do not assume a follow-up message exists unless xiaoai_listen returns one.
text argument.xiaoai_speak call per reply unless the task explicitly needs multiple utterances.xiaoai_speak for hidden reasoning, tool chatter, or non-user-facing status messages.Use xiaoai_exec when the task is to send a device command to XiaoAi instead of speaking a reply.
command argument.xiaoai_exec over xiaoai_speak.Example:
xiaoai_exec command=关灯
xiaoai_listen to get the next XiaoAi message.xiaoai_listen returns a new user message.xiaoai_listen does not return a new message, end the turn instead of inventing a continuation.xiaoai_speak(text=<final reply>).xiaoai_listen() and wait for a new message before proceeding.