chatbot-messaging-expert

chatbot-messaging-expert is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 62 tokens per session (1,066 once invoked), scanned A, original, MIT.

A guide to connecting applications with chat and messaging services such as WhatsApp, Telegram, Discord, Slack, and LINE, including chatbots and AI-generated replies.

In plain words
What is it for?
Use it to build bots, receive messaging notifications, send buttons or carousels, process media, and add conversational AI to messaging platforms.
Why use it?
It helps handle platform-specific APIs, incoming webhooks, message verification, interactive messages, media, and real-time communication.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build bots, receive messaging notifications, send buttons or carousels, process media, and add conversational AI to messaging platforms.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roedyrustam/vibes-plug/chatbot-messaging-expert
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 roedyrustam/vibes-plug --skill chatbot-messaging-expert
Clone the repo
git clone --depth 1 https://github.com/roedyrustam/vibes-plug

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 chatbot-messaging-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/chatbot-messaging-expert/github.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/chatbot-messaging-expert)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/chatbot-messaging-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/chatbot-messaging-expert/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 chatbot-messaging-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/chatbot-messaging-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/chatbot-messaging-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,066 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. 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.00062 $0.01066
Opus 5 $0.00031 $0.00533
Sonnet 5 $0.00012 $0.00213
Haiku 4.5 $0.00006 $0.00107

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

Security

Grade A, and why

chatbot-messaging-expert 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 9d 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.

skills/chatbot-messaging-expert/SKILL.md · 115 lines

How it starts

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

Chatbot & Messaging Expert (2026 Edition)

English | Bahasa Indonesia


English

Orchestration & Integration

  • ai-llm-integration-expert: LLM-powered conversational AI and tool calling.
  • sse-websocket-streaming-expert: Real-time messaging protocols.
  • webhook-receiver: Secure webhook endpoints for messaging platforms.
  • async-queue-temporal-expert: Message queue processing for high-volume bots.

Description

Expert guide for building chatbots and integrating messaging platforms into applications. Covers WhatsApp Business API (Cloud API), Telegram Bot API, Discord.js v14, Slack Bolt, LINE Messaging API, and conversational AI patterns. Includes webhook verification, message handlers, interactive components (buttons, carousels), media handling, and AI-powered response generation.

Trigger Conditions

  • Building a chatbot for WhatsApp, Telegram, Discord, or Slack.
  • Integrating messaging platform APIs into existing applications.
  • Creating AI-powered conversational agents on messaging platforms.
  • Implementing webhook handlers for messaging notifications.

Platform Quick Reference

Platform API Type Auth Message Types Webhook
WhatsApp Business REST (Cloud API) Bearer Token Text, Image, Template, Interactive ✅ Verify token
Telegram REST (Bot API) Bot Token Text, Photo, Inline Keyboard, Callback ✅ setWebhook
Discord Gateway + REST Bot Token Text, Embed, Components, Slash Commands Gateway events
Slack Events API + REST OAuth + Signing Secret Blocks, Modals, Slash Commands ✅ Request signing

Core Patterns

WhatsApp Business Cloud API
// Webhook verification + message handler
import { Hono } from 'hono';
const app = new Hono();

app.get('/webhook/whatsapp', (c) => {
  const mode = c.req.query('hub.mode');
  const token = c.req.query('hub.verify_token');
  const challenge = c.req.query('hub.challenge');
  if (mode === 'subscribe' && token === process.env.WA_VERIFY_TOKEN) {
    return c.text(challenge!);
  }
  return c.text('Forbidden', 403);
});

app.post('/webhook/whatsapp', async (c) => {
  const body = await c.req.json();
  const message = body.entry?.[0]?.changes?.[0]?.value?.messages?.[0];
  if (message?.type === 'text') {
    await sendWhatsAppReply(message.from, `Echo: ${message.text.body}`);
  }
  return c.text('OK');
});

async function sendWhatsAppReply(to: string, text: string) {
  await fetch(`https://graph.facebook.com/v21.0/${process.env.WA_PHONE_ID}/messages`, {
    method: 'POST',
    headers: {
      Authorization: `Bearer ${process.env.WA_ACCESS_TOKEN}`,
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({ messaging_product: 'whatsapp', to, type: 'text', text: { body: text } }),
  });
}

Read the full file on GitHub · 115 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. 9d ago First seen · 115 lines · 62 tokens per session scan A c92d859e8b3d

Subscribe to this mod's changes

chatbot-messaging-expert is a skill published in the GitHub repository roedyrustam/vibes-plug (50 stars, last pushed yesterday), licensed MIT. It adds 62 tokens to every session and 1,066 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.

Related

Other skills, from other repositories

api-and-interface-design

Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints, defining type contracts between modules, or establishing boundaries between frontend and backend.

addyosmani/agent-skills · 49 tokens

api-design

Design and review intuitive, scalable, maintainable HTTP APIs. Use this skill whenever the user wants to design a new REST API, review an existing API or spec, write OpenAPI 3.x definitions, or work with HTTP semantics (GET/POST/PUT/PATCH/DELETE), status codes, idempotency (Idempotency-Key), error envelopes (RFC 7807…

svngoku/coding-agents-skills · 144 tokens

microservices-patterns

Decompose systems into microservices and apply canonical distributed-systems patterns. Use this skill whenever the user wants to split a monolith into services, design service boundaries, choose between microservices and a modular monolith, implement sagas or the outbox pattern, set up CQRS or event sourcing…

svngoku/coding-agents-skills · 121 tokens

ddd

Domain-Driven Design system for software development. Use when designing new systems with DDD principles, refactoring existing codebases toward DDD, generating code scaffolding (entities, aggregates, repositories, domain events), facilitating Event Storming sessions, creating bounded context maps, or performing code…

svngoku/coding-agents-skills · 137 tokens

fastify-best-practices

A reference guide for building Fastify, a Node.js framework for web servers and REST APIs, with JavaScript or TypeScript. It covers routes, plugins, validation, errors, testing, logging, security, databases, and deployment.

sutchan/Agent-Skills-Hub · 0 tokens

java-coding-standards

Java coding standards for Spring Boot services: naming, immutability, Optional usage, streams, exceptions, generics, and project layout.

Jamkris/everything-gemini-code · 35 tokens