command-dispatch
Use this skill when the user's intent is to execute a system or plugin function. Applicable scenarios include: 1) The user sends a slash command starting with / (e.g. /cookiecloud, /sites, /subscribes, etc.); 2) The user describes an action in natural language that can be fulfilled by a system or plugin command (e.g. "sync sites", "show subscriptions", "refresh subscriptions", "check downloads", etc.). This skill helps you identify the user's intent, find the matching command, extract necessary parameters, and execute the corresponding command.
What this skill does
# Command Dispatch Use this skill to identify user intent and dispatch the corresponding system or plugin command. ## When to Use - The user sends a `/xxx` slash command (execute directly) - The user describes an action in natural language, for example: - "Sync sites" → `/cookiecloud` - "Show my subscriptions" → `/subscribes` - "Refresh subscriptions" → `/subscribes refresh` - "What's downloading?" → `/downloading` - "Organize downloaded files" → `/transfer` - "Clear cache" → `/clear_cache` - "Restart the system" → `/restart` - "Pause all QB tasks" → `/pause_torrents` (plugin command) ## Tools - `list_slash_commands` — List all available slash commands (system + plugin), returns command name, description, and category - `query_plugin_capabilities` — Query detailed plugin capabilities (commands, actions, scheduled services) - `run_slash_command` — Execute a specified command (works for both system and plugin commands) ## Workflow ### Step 1: Identify User Intent Determine whether the user's message is requesting the execution of a command: - **Direct command**: Message starts with `/`, e.g. `/sites`, `/subscribes` → skip to Step 3 - **Natural language**: The user describes an actionable request → continue to Step 2 ### Step 2: Find Matching Command Use `list_slash_commands` to retrieve all available commands. Match the user's described intent against the `description` and `category` fields of each command. If the user's description involves a specific plugin's functionality, additionally use `query_plugin_capabilities` to query that plugin's detailed capabilities. **Matching strategy**: - Prefer exact matches on command description - Then narrow down by category and match - If no matching command is found, inform the user that no corresponding function is available ### Step 3: Extract Parameters and Execute Some commands support additional arguments (space-separated after the command), for example: - `/redo <history_id>` — Manually re-organize a specific record - `/sites disable <site_id>` — Disable one or more sites - `/subscribes delete <subscribe_id>` — Delete one or more subscriptions Use `run_slash_command` to execute the command in the format `/command_name arg1 arg2`. ### Step 4: Report Result Command execution is asynchronous. After triggering, inform the user that the command has started. If the command does not exist, list available commands for reference. ## Important Notes - Command execution requires admin privileges; the tool will automatically check permissions - Both system and plugin commands are executed via the `run_slash_command` tool — no need to distinguish between them - If you are unsure which command matches the user's intent, use `list_slash_commands` first to look up before deciding - Never guess non-existent commands; always select from the available command list
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.