From ops
Send and read messages across all channels. Routes based on arguments — whatsapp, email, slack, telegram, or natural language like "send [msg] to [contact]".
npx claudepluginhub auroracapital/claude-opsThis skill is limited to using the following tools:
Parse `$ARGUMENTS` and route immediately:
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Parse $ARGUMENTS and route immediately:
| Pattern | Action |
|---|---|
whatsapp | Show WhatsApp recent chats — offer to read or send |
email | Show recent email threads via Gmail MCP |
slack | Show recent Slack activity |
telegram | Show Telegram recent chats |
send * to * | Parse message and contact, determine best channel, send |
read * | Read the specified channel or contact's messages |
| (empty) | Show channel picker menu |
send [message] to [contact]$ARGUMENTS.wacli contacts --search "[contact]" --json 2>/dev/nullmcp__claude_ai_Slack__slack_search_users with query: "[contact]"Sent to [contact] via [channel] ✓wacli send --to "[contact]" --message "[message]"
Use mcp__claude_ai_Slack__slack_send_message with resolved channel/user ID.
Use mcp__claude_ai_Gmail__gmail_create_draft — always create draft first, confirm before sending.
read [channel]WhatsApp:
wacli chats --limit 10 --json 2>/dev/null
Show last 10 chats with sender, preview, timestamp.
Email:
Use mcp__claude_ai_Gmail__gmail_search_messages with query: "is:unread", show thread list.
Slack:
Use mcp__claude_ai_Slack__slack_search_public_and_private with query: "is:unread".
Telegram:
Use mcp__claude_ops_telegram__get_updates (limit: 20) and mcp__claude_ops_telegram__list_chats.
Fall back to: telegram-cli --exec "dialog_list" 2>/dev/null || echo "Telegram MCP not configured"
Use mcp__claude_ops_telegram__send_message with chat_id (from list_chats) and text.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
OPS ► COMMS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
a) Read WhatsApp
b) Read Email
c) Read Slack
d) Read Telegram
e) Send a message
Or type: send [message] to [contact]
──────────────────────────────────────────────────────
Use AskUserQuestion, then execute.