bot-channel-task
Standard flow for receiving channel tasks. Immediate acknowledgment, background execution, completion notification. Follow this skill when receiving channel messages.
npx skills add majiayu000/claude-skill-registry --skill bot-channel-task --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Bot Channel Task Skill Standard processing flow for tasks received via messaging channels (e.g., Telegram). Only active when a channel plugin is installed and connected. ## Overview ``` [Channel message received] | v +----------------------+ | 1. Immediate ack | <- Required, highest priority | "Got it, I'll do X" | +----------------------+ | v +------------------------------------------+ | Task classification | | | | Short (1-2 tools) --> Sync execution | | Long / multi-step --> Background agent | +------------------------------------------+ | +-- [Sync] Execute -> completion notification | +-- [BG] Launch Agent (run_in_background=true) | +-- Progress report if applicable +-- Completion notification ``` ## Step 1: Immediate acknowledgment (required) After receiving a channel message, **reply to the channel first**. **Channel detection:** ``` <channel source="plugin:telegram:telegram"> -> mcp__plugin_telegram_telegram__reply ``` **Reply format:** "Got it, I'll [action]." (one sentence, concise) **reply_to:** `message_id` from the received message ## Step 2: Task execution **Short tasks (1-2 tools)** - Synchronous execution is fine - Report results to channel after completion **Lon
- Overview
- Step 1: Immediate acknowledgment (required)
- Step 2: Task execution
- Handoff info for background subagent
- Step 3: Completion notification
- Job Management via Conversation
- Usage
What does the bot-channel-task skill do?
Standard flow for receiving channel tasks. Immediate acknowledgment, background execution, completion notification. Follow this skill when receiving channel messages.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill bot-channel-task --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
