一键导入
channel-message
当需要主动向用户、会话或频道单向发送消息时,使用本 skill。通常仅在用户明确要求向某个 channel / 会话发送消息,或需要主动通知时使用。先用 qwenpaw chats list 查询 session,再用 qwenpaw channels send 推送消息。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
当需要主动向用户、会话或频道单向发送消息时,使用本 skill。通常仅在用户明确要求向某个 channel / 会话发送消息,或需要主动通知时使用。先用 qwenpaw chats list 查询 session,再用 qwenpaw channels send 推送消息。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill only for scheduled or recurring tasks. Manage jobs with qwenpaw cron list/create/get/state/update/pause/resume/delete/run, and always pass --agent-id explicitly.
仅在需要未来定时执行或周期执行任务时,使用本 skill。使用 qwenpaw cron list/create/get/state/update/pause/resume/delete/run 管理任务,并始终显式传入 --agent-id。
Use this skill when sedimenting a session into a reusable workspace skill. Triggers when the user wants to turn the current conversation, workflow, or troubleshooting path into a SKILL.md. Phrases like 'turn this into a skill', 'remember how I did X', 'save this workflow', 'make a skill from this', and any /make-skill <focus> invocation should fire this skill.
用于把当前会话沉淀为可复用的 workspace skill。当用户希望把当前对话、工作流或排错路径写成 SKILL.md 时触发。触发表达包括「把这个变成 skill」「记住我是怎么做 X 的」「保存这个工作流」「make a skill from this」以及任何 /make-skill <focus> 调用。
Answer user questions about QwenPaw installation and configuration: first locate and read local documentation, then distill the answer; if local information is insufficient, fall back to the official website documentation.
回答用户关于 QwenPaw 安装与配置的问题:优先定位并阅读本地文档,再提炼答案;若本地信息不足,兜底访问官网文档。
| name | channel_message |
| description | 当需要主动向用户、会话或频道单向发送消息时,使用本 skill。通常仅在用户明确要求向某个 channel / 会话发送消息,或需要主动通知时使用。先用 qwenpaw chats list 查询 session,再用 qwenpaw channels send 推送消息。 |
| metadata | {"builtin_skill_version":"1.3","qwenpaw":{"emoji":"📤"}} |
通常只有在用户明确要求向某个 channel / 会话发送消息,或你需要主动推送通知(如任务完成、提醒、告警)时,使用本 skill。
这是单向发送,不会返回回复。
qwenpaw channels sendtarget-user 或 target-sessiontarget-user 和 target-sessionchannel send 是单向推送,不会返回用户回复qwenpaw chats list --agent-id <your_agent> --channel <channel>
也可以按用户筛选:
qwenpaw chats list --agent-id <your_agent> --user-id <user_id>
qwenpaw channels send \
--agent-id <your_agent> \
--channel <channel> \
--target-user <user_id> \
--target-session <session_id> \
--text "..."
1. 判断:是否为用户明确要求发送,或是否需要主动通知
2. qwenpaw chats list 查询目标 session
3. 从结果中获取 user_id 和 session_id
4. 若有多个 session,优先选最近活跃的
5. qwenpaw channels send 发送消息
6. 结束(无回复)
qwenpaw channels send 必须同时提供:
--agent-id--channel--target-user--target-session--text发送前先执行:
qwenpaw chats list --agent-id <your_agent> --channel <channel>
从结果中获取:
user_id → --target-usersession_id → --target-session如果有多个候选 session,优先选择 updated_at 最近的会话。
qwenpaw channels send 只负责发送,不等待回复。
qwenpaw chats list --agent-id notify_bot --channel feishu
qwenpaw channels send \
--agent-id notify_bot \
--channel feishu \
--target-user manager_id \
--target-session manager_session \
--text "周报已生成,请查收"
qwenpaw chats list --agent-id task_bot --channel console
qwenpaw channels send \
--agent-id task_bot \
--channel console \
--target-user alice \
--target-session alice_console_001 \
--text "✅ 任务已完成"
qwenpaw chats list --agent-id analyst_bot --user-id alice
qwenpaw channels send \
--agent-id analyst_bot \
--channel console \
--target-user alice \
--target-session alice_console_001 \
--text "数据分析已完成,结果已保存到 report.pdf"
如果你正在当前会话里直接回复用户,不要使用 qwenpaw channels send。
不要猜 target-user 或 target-session,先执行:
qwenpaw chats list --agent-id <your_agent> --channel <channel>
--agent-id、--channel、--target-user、--target-session、--text 五个都必填。
不会。它只是推送消息。
应优先选择最近活跃的 session。
qwenpaw chats list --agent-id <your_agent>
qwenpaw chats list --agent-id <your_agent> --user-id <user_id>
qwenpaw channels list --agent-id <your_agent>
选择原则:
qwenpaw agents chatqwenpaw channels send必填参数:
--agent-id:Agent ID可选参数:
--channel:按频道筛选--user-id:按用户筛选--base-url:覆盖API地址必填参数(5个):
--agent-id:发送方agent ID--channel:目标频道(console/dingtalk/feishu/discord/imessage/qq/...)--target-user:目标用户ID(从 qwenpaw chats list 获取)--target-session:目标会话ID(从 qwenpaw chats list 获取)--text:消息内容可选参数:
--base-url:覆盖API地址随时使用 -h 查看详细帮助:
qwenpaw channels -h
qwenpaw channels send -h
qwenpaw chats -h
qwenpaw chats list -h