channel_message

channel_message is a skill for Claude Code, Codex from agentscope-ai/QwenPaw. It costs 66 tokens per session (1,585 once invoked), scanned A, original, Apache-2.0.

A procedure for sending one-way messages to a user, conversation, or channel. It uses QwenPaw commands to find the right session and deliver a message.

In plain words
What is it for?
Use it to send completion notices, reminders, alerts, status updates, or asynchronous results to an existing session or channel.
Why use it?
It prevents messages from being sent to the wrong destination and avoids using one-way delivery when a normal conversation is needed. It also makes clear that sending a message does not wait for a reply.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for qwenpaw. Also seen: built for qwenpaw.

Good fit Use it to send completion notices, reminders, alerts, status updates, or asynchronous results to an existing session or channel.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agentscope-ai/qwenpaw/channel_message-zh
About the project

QwenPaw is a personal AI assistant that runs on a local machine or in the cloud and connects to multiple chat applications. It provides memory, file workspaces, multiple agents, skills, plugins, and integrations with language-model providers and external tools. The catalogue entries are skills that extend its capabilities.

agentscope-ai/QwenPaw · 34,809 stars · on GitHub · qwenpaw.agentscope.io

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add agentscope-ai/QwenPaw --skill channel_message-zh
Clone the repo
git clone --depth 1 https://github.com/agentscope-ai/QwenPaw

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for channel_message

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw/channel_message-zh/github.svg)](https://agentmods.dev/skills/agentscope-ai/qwenpaw/channel_message-zh)
Your own site
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw/channel_message-zh"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw/channel_message-zh/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for channel_message

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw/channel_message-zh"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw/channel_message-zh.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,585 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. ✓ AI security review Fable 5.1 · 6 Sept 2026 📄 Read the review Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.01585
Opus 5 $0.00033 $0.00792
Sonnet 5 $0.00013 $0.00317
Haiku 4.5 $0.00007 $0.00159

Measured 12d ago against content hash 2888b0f1873d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

channel_message scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

src/qwenpaw/agents/skills/channel_message-zh/SKILL.md · 251 lines

How it starts

The opening of the file, as written. The whole thing — 251 lines — stays where its author put it; the contents beside it link to each section on GitHub.

频道消息推送

什么时候用

通常只有在用户明确要求向某个 channel / 会话发送消息,或你需要主动推送通知(如任务完成、提醒、告警)时,使用本 skill。
这是单向发送不会返回回复

应该使用

  • 用户明确要求发往某个 channel / 会话
  • 任务完成后主动通知用户
  • 定时提醒、告警、状态更新
  • 将异步结果推送回某个已有会话
  • 用户明确要求"处理完后通知我"

不应使用

  • 如果只是当前会话中的正常回复,不要使用 qwenpaw channels send
  • 需要和用户进行双向对话并立即等待回复
  • 还不知道目标 session 是哪个
  • 想当然猜测 target-usertarget-session

决策规则

  1. 通常只有在用户明确要求发往某个 channel / 会话,或需要主动通知时才使用
  2. 发送前必须先查 session
  3. 不要猜 target-usertarget-session
  4. 如果查到多个 session,优先使用最近活跃的
  5. channel send 是单向推送,不会返回用户回复

最常用命令

1) 先查询可用 sessions

qwenpaw chats list --agent-id <your_agent> --channel <channel>

也可以按用户筛选:

qwenpaw chats list --agent-id <your_agent> --user-id <user_id>

2) 发送消息

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-user
  • session_id--target-session

如果有多个候选 session,优先选择 updated_at 最近的会话。

单向推送

qwenpaw channels send 只负责发送,不等待回复。


简短示例

用户明确要求发往某个 channel

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 "✅ 任务已完成"

Read the full file on GitHub · 251 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 251 lines · 66 tokens per session scan A 2888b0f1873d

Subscribe to this mod's changes

channel_message is a skill published in the GitHub repository agentscope-ai/QwenPaw (34,809 stars, last pushed today), licensed Apache-2.0. It adds 66 tokens to every session and 1,585 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.