From 9a428ee8959cfc16658744a0fb4daef85aa493b8 Mon Sep 17 00:00:00 2001 From: Rabeles Date: Mon, 13 Jul 2026 15:12:00 +0200 Subject: [PATCH 1/2] command alias change --- docs/chatbot/commands/default/command.mdx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/chatbot/commands/default/command.mdx b/docs/chatbot/commands/default/command.mdx index 5ea80c7..a283b0c 100644 --- a/docs/chatbot/commands/default/command.mdx +++ b/docs/chatbot/commands/default/command.mdx @@ -105,15 +105,12 @@ Changes the response text of an existing custom command. ### alias -Shows the aliases associated with a specific command. - -:::info Note -Aliases themselves can only be created or managed through the StreamElements Dashboard, not via chat commands. -::: +Shows the aliases associated with a specific command, or adds a new alias to it. **Syntax:** ```streamelements !command alias !*command_name* +!command alias add !*command_name* !*alias_name* ``` **Example:** @@ -122,6 +119,12 @@ Aliases themselves can only be created or managed through the StreamElements Das { persona: 'bot', message: '@Moderator, Command !socials has aliases: !links, !connect' } ]} /> +**Example (adding an alias):** + + ### show Displays the full response text and configuration details (level, cost, cooldowns) of a command. @@ -196,8 +199,8 @@ When using the `!command options` subcommand, you specify settings using flags f * **Can I make a command respond with a whisper instead of a public message?** Yes, use the `options` subcommand with the `-type` parameter: `!command options ! -type whisper`. Note that whisper functionality depends on the chat platform. -* **Why can't I add or edit command aliases using the `!command` system?** - Alias management (creating, deleting, editing aliases for commands) is currently only available through the Command page on your StreamElements Dashboard. +* **How do I add an alias to a command via chat?** + Use the `alias` subcommand with `add`: `!command alias add ! !`. * **I'm a moderator, but `!command add` isn't working. Why?** Double-check that the `!command` default command itself hasn't been disabled or had its permission level changed from the default (Moderator). You can check its settings in the `Default Commands` section of your StreamElements Dashboard. From 2272e5011b86a3dedd1dd2d5a6cd53bc680a7d0c Mon Sep 17 00:00:00 2001 From: Rabeles Date: Tue, 14 Jul 2026 20:26:52 +0200 Subject: [PATCH 2/2] docs: Add alias remove and listing notes to !command alias section Closes #83 Co-Authored-By: Claude Fable 5 --- docs/chatbot/commands/default/command.mdx | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/docs/chatbot/commands/default/command.mdx b/docs/chatbot/commands/default/command.mdx index a283b0c..3f0a5fb 100644 --- a/docs/chatbot/commands/default/command.mdx +++ b/docs/chatbot/commands/default/command.mdx @@ -105,15 +105,20 @@ Changes the response text of an existing custom command. ### alias -Shows the aliases associated with a specific command, or adds a new alias to it. +Shows the aliases associated with a specific command, or adds/removes an alias. **Syntax:** ```streamelements !command alias !*command_name* !command alias add !*command_name* !*alias_name* +!command alias remove !*command_name* !*alias_name* ``` -**Example:** +:::info Note +Listing aliases only works with the original command name, not with one of its aliases. +::: + +**Example (listing aliases):** +**Example (removing an alias):** + + ### show Displays the full response text and configuration details (level, cost, cooldowns) of a command. @@ -199,8 +210,8 @@ When using the `!command options` subcommand, you specify settings using flags f * **Can I make a command respond with a whisper instead of a public message?** Yes, use the `options` subcommand with the `-type` parameter: `!command options ! -type whisper`. Note that whisper functionality depends on the chat platform. -* **How do I add an alias to a command via chat?** - Use the `alias` subcommand with `add`: `!command alias add ! !`. +* **How do I add or remove a command alias via chat?** + Use the `alias` subcommand with `add` or `remove`: `!command alias add ! !` or `!command alias remove ! !`. * **I'm a moderator, but `!command add` isn't working. Why?** Double-check that the `!command` default command itself hasn't been disabled or had its permission level changed from the default (Moderator). You can check its settings in the `Default Commands` section of your StreamElements Dashboard.