Agent skill · Workflow & Productivity

bot-channel-task

Standard flow for receiving channel tasks. Immediate acknowledgment, background execution, completion notification. Follow this skill when receiving channel messages.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/agent/bot-channel-task/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Step 1: Immediate acknowledgment (required)
  3. Step 2: Task execution
  4. Handoff info for background subagent
  5. Step 3: Completion notification
  6. Job Management via Conversation
  7. Usage
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going