fix(slack): land #29032 /agentstatus alias from @maloqab

Land contributor PR #29032 by @maloqab with Slack native alias docs, integration tests, and changelog entry.

Co-authored-by: maloqab <mitebaloqab@gmail.com>
This commit is contained in:
Peter Steinberger
2026-02-27 19:08:59 +00:00
parent 1867611733
commit 8bc80fad47
6 changed files with 37 additions and 1 deletions

View File

@@ -123,6 +123,11 @@ const NATIVE_NAME_OVERRIDES: Record<string, Record<string, string>> = {
discord: {
tts: "voice",
},
slack: {
// Slack reserves /status — registering it returns "invalid name"
// and invalidates the entire slash_commands manifest array.
status: "agentstatus",
},
};
function resolveNativeName(command: ChatCommandDefinition, provider?: string): string | undefined {