slackbuzz-cli
Slack CLI for messaging, DMs, search, reactions, and status. Use when the user needs to interact with Slack — sending messages, checking activity/inbox, searching messages, managing reactions, or setting status. Prefer this CLI over raw Slack API calls.
What this skill does
# SlackBuzz CLI (`slackbuzz`) Use the `slackbuzz` CLI instead of raw Slack API calls. It handles authentication (bot + user tokens), user/channel resolution, DM channel opening, and cross-tool integrations automatically. ## When to Use - User asks to send a Slack message or DM - User wants to check Slack activity, inbox, or threads - User needs to search Slack messages or files - User wants to react to messages, set status, or manage saved items - User mentions Slack channels, users, or message timestamps ## Authentication ```bash slackbuzz app create # Create a new Slack app with the required scopes slackbuzz app update # Push the latest scope set to an existing app + re-auth slackbuzz auth login # Log in with bot and/or user token (manual paste) slackbuzz auth status # Check auth status and capabilities ``` **`app update` flow** — use when slackbuzz gains new scope requirements (e.g. a future command needs a scope the existing manifest doesn't grant). Pushes the canonical manifest to your existing app via `apps.manifest.update`, opens the install page so you can approve the new scopes, then prompts for the regenerated bot + user tokens. The manifest is auto-derived from method usage (`make manifest-gen` runs in CI), so the scope list never drifts from what commands actually need. Two token types are required. **The CLI automatically selects the right token for each command — you do not need to specify which to use.** - **Bot token** (`xoxb-`): Used automatically for reading channels, listing users, reactions, and system notifications - **User token** (`xoxp-`): Used automatically for sending messages (as the user), search, DMs, saved items, status, and profile Messages always post as the authenticated user by default. Only use `--as-bot` if you specifically want a message to come from the bot app rather than the user. ## Messaging ### Send Messages ```bash # Send to a channel (shortcut — same as 'message send') slackbuzz send '#general' "Hello team!" # Send to a channel (full form) slackbuzz message send '#general' "Hello team!" # Send a DM (auto-opens DM channel) slackbuzz send @alice "Hey, quick question" slackbuzz send U02P3QC5H24 "Direct message by user ID" # Send as bot (default uses user token if available) slackbuzz send '#general' "Bot message" --as-bot ``` DM auto-detection: If the target looks like a user (`@name`, `U...` ID, or bare name), the CLI automatically opens a DM conversation via `conversations.open`. ### Read Messages ```bash # Channel history slackbuzz message list #general slackbuzz message list #general --limit 50 # Thread replies slackbuzz message list #general --thread 1706000000.000000 # DM history slackbuzz message list @alice ``` ### Edit & Delete ```bash slackbuzz message edit #general 1706000000.000000 "Updated text" slackbuzz message delete #general 1706000000.000000 ``` ### Search ```bash # Search messages (requires user token) slackbuzz message search "deploy production" # Search files slackbuzz file search "architecture diagram" ``` ## Inbox & Activity ```bash # Mentions (default) slackbuzz activity # DMs slackbuzz activity --dms # Threads you're in slackbuzz activity --threads slackbuzz threads # Shortcut # Everything combined slackbuzz activity --all --since 1d # Filter by channel or sender slackbuzz activity --channel #engineering --from @alice # DM conversations list slackbuzz dm list ``` Activity detects ClickUp task IDs and GitHub PR/issue URLs in messages and shows actionable hints. ## Reactions ```bash # Add reaction slackbuzz react #general 1706000000.000000 :eyes: slackbuzz react #general 1706000000.000000 thumbsup # Remove reaction slackbuzz react remove #general 1706000000.000000 :eyes: ``` ## Status ```bash # View current status slackbuzz status # Set status with emoji and optional expiration slackbuzz status set "In a meeting" :calendar: slackbuzz status set "Reviewing PRs" :eyes: --until 2h # Clear status slackbuzz status clear ``` ## Saved Items ```bash # List saved messages slackbuzz later list # Save/unsave a message slackbuzz later add #general 1706000000.000000 slackbuzz later remove #general 1706000000.000000 ``` ## Notifications ```bash # Release announcement slackbuzz notify #releases --release v1.0.0 # Task status update slackbuzz notify #updates --task CU-abc123 --status "deployed" # Custom message slackbuzz notify #general --message "Maintenance window starting" ``` ## Thread Linking ```bash # Link a Slack thread to a ClickUp task slackbuzz thread link #general 1706000000.000000 --task CU-abc123 ``` ## Channels & Users ```bash # List channels slackbuzz channel list # Channel info slackbuzz channel info #general # List users slackbuzz user list # User profile slackbuzz user info @alice ``` ## Token Defaults The CLI automatically selects the correct token for each command. You do not need to think about bot vs user mode — just run the command. | Command | Token | Rationale | |---------|-------|-----------| | `message send`, `edit`, `delete` | **User** | Posts as the authenticated user | | `message list` | **Bot** | Reads channel history | | `channel list`, `channel info` | **Bot** | Reads channel metadata | | `user list`, `user info` | **Bot** | Reads user profiles | | `react`, `react remove` | **Bot** | Reactions via bot | | `notify` | **Bot** | System/automated notifications | | `thread link` | **Bot** | Generates permalinks | | `activity`, `threads` | **User** | Slack search API (user-only) | | `dm list` | **User** | Slack search API (user-only) | | `message search`, `file search` | **User** | Slack search API (user-only) | | `later list`, `add`, `remove` | **User** | Stars API (user-only) | | `status`, `status set`, `clear` | **User** | Profile API (user-only) | **Override:** Pass `--as-bot` on `message send`, `edit`, or `delete` to post as the bot app instead of the user. Only do this when explicitly requested. **Missing permissions:** If a command fails due to a missing token or scope, the error message will indicate what's needed. Run `slackbuzz auth status` to check available capabilities. ## Common Flags | Flag | Description | |------|-------------| | `--json` | Output as JSON | | `--jq <expr>` | Filter JSON with jq expression | | `--template <tmpl>` | Format with Go template | | `--as-bot` | Post as the bot app instead of the user (send/edit/delete only) | | `--since <duration>` | Time filter (2h, 1d, 7d, 2w, or YYYY-MM-DD) | | `--limit <n>` | Max results | ## @Mentioning Users in Messages `@name` mentions in message bodies are **resolved automatically**. The CLI looks up usernames and display names (case-insensitive) and converts them to Slack's `<@USERID>` format before posting. Resolved mentions are confirmed on stderr. ```bash # Mentions are resolved automatically — these will ping the users slackbuzz message send '#channel' '@michelle @herman please review this' # → stderr: Mentioning @michelle # → stderr: Mentioning @herman # Also works in notify --message slackbuzz notify #general --message '@alice maintenance window starting' ``` ### First-name resolution When a user's Slack username is dotted (`herman.gorbatovskii`) or their display name has multiple words (`Herman Gorbatovskii`), the CLI also indexes the **first name** as a shorthand. Writing `@herman` will resolve to that user as long as the first name is unambiguous (only one user has that first name). If multiple users share a first name, use the full username or display name instead. ```bash # These all resolve to the same user: slackbuzz message send '#dev' '@herman.gorbatovskii check this' # full username slackbuzz message send '#dev' '@herman gorbatovskii check this' # full display name slackbuzz message send '#dev' '@herman, check this' # first-name shorthand ``` Unrecognized names are left as-is (no error). Use `slackbuzz user list` to discover available usernames if a mention isn't resolving. ## Shell Es
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.