slack-search-user
Search for Slack users by username with intelligent caching. Returns user IDs for DMs and maintains a local cache to avoid repeated API calls. Can answer questions about cached users.
What this skill does
# Slack Search User Skill Search for Slack users by username, real name, or display name with intelligent caching. This skill maintains a local cache of users to speed up lookups and can answer questions about the cache. **Features:** - ✅ **Automatic status check** - Verifies Slack is configured before searching - ✅ **Efficient cache lookup** - Uses `jq` for fast searches even with 50,000+ users - ✅ **Automatic API fallback** - Searches via Slack API if user not in cache - ✅ **Bulk caching** - Caches ALL users from API responses (up to 1000 per request) - ✅ **Smart matching** - Exact match first, then partial/contains match as fallback - ✅ **Cache introspection** - Can answer questions like "how many users are cached?" ## Usage This skill provides two executable scripts: ### 1. `search-user.sh` - Find a specific user Search for a Slack user by username, real name, or display name. Returns the user ID on stdout and details on stderr. **When the user asks:** - "Find user @fulano in Slack" - "Search for Will in Slack" - "Look up John Smith" - "Is djalma in Slack?" **Run:** ```bash ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-search-user/search-user.sh <username> ``` **Examples:** ```bash # Find user by exact username ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-search-user/search-user.sh djalma # Output: U01ULLNEM3Q # Find user by real name ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-search-user/search-user.sh "John Smith" # Capture user ID in a variable USER_ID=$(~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-search-user/search-user.sh fulano) echo "User ID: $USER_ID" ``` **How it works:** 1. Checks Slack status first (calls `slack-status`) 2. Checks cache first using `jq` (fast, even with 50,000+ users) 3. First tries exact match (case-insensitive) on `name`, `real_name`, `display_name` 4. If no exact match, tries partial match (startswith/contains) 5. If still not found, searches via Slack API with pagination 6. Automatically caches ALL users from API response (up to 1000 per request) 7. Excludes bots and deleted users 8. Returns user ID on stdout for easy integration **Matching examples:** - `djalma` matches user with username `djalma.araujo` - `john` matches `John Smith` in real name - `will` matches `William` in display name ### 2. `cache-utils.sh` - Cache management Inspect and manage the user cache. **When the user asks:** - "How many users are cached?" - "List all users with 'john' in their name" - "Clear the Slack cache" **Run:** ```bash ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-search-user/cache-utils.sh <command> ``` **Commands:** ```bash # Count total cached users ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-search-user/cache-utils.sh count # Output: Total cached users: 12000 # List all cached users ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-search-user/cache-utils.sh list # Search for users matching a pattern ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-search-user/cache-utils.sh search will # Clear the cache ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-search-user/cache-utils.sh clear ``` ## Configuration This skill uses the centralized Slack plugin configuration at: ``` ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/config.json ``` The config file contains: - `workspace` - Your Slack workspace domain - `token` - Your session token (xoxc-...) - `cookie` - Your session cookie (xoxd-...) - `users` - Cached user array (auto-populated) ## Status Check Before searching, the skill automatically checks Slack status. If not configured: ``` ⚠️ Slack is not properly configured MISSING_CONFIG|Config file not found|Create config at: ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/config.json Please run: /slack:slack-setup ``` ## Integration with Other Skills The `slack-send-message` skill uses this skill to find users for DMs. ## Important Notes - **Automatic validation**: Checks configuration before every search - **Shared cache**: Cache is shared across all Slack skills in the plugin - **Efficient with large caches**: Uses `jq` for streaming, works well with 50,000+ users - **Bulk caching**: One API call can populate hundreds or thousands of users - **No duplicates**: Automatically skips users already in cache - **Active users only**: Excludes bots and deleted users from cache - **Requirements**: - `jq` is required (install with `brew install jq` on macOS) - Python 3.6+ is required for API calls - Slack plugin must be configured (run `/slack:slack-setup` if needed) ## Troubleshooting | Error | Solution | | ---------------------------------- | ------------------------------------------------------------------- | | `Slack is not properly configured` | Run `/slack:slack-setup` to configure credentials | | `invalid_auth` | Token or cookie expired. Re-run `/slack:slack-setup` | | `User 'X' not found` | User doesn't exist or doesn't match any name fields | | `jq: command not found` | Install `jq`: `brew install jq` (macOS) or `apt install jq` (Linux) | | Python JSON decode error | Config file corrupted. Re-run `/slack:slack-setup` |
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.