diff --git a/src/auto-reply/commands-registry.ts b/src/auto-reply/commands-registry.ts index 795873b27..edaec3225 100644 --- a/src/auto-reply/commands-registry.ts +++ b/src/auto-reply/commands-registry.ts @@ -6,7 +6,6 @@ export type ChatCommandDefinition = { description: string; textAliases: string[]; acceptsArgs?: boolean; - supportsNative?: boolean; }; export type NativeCommandSpec = { @@ -141,9 +140,7 @@ export function listChatCommands(): ChatCommandDefinition[] { } export function listNativeCommandSpecs(): NativeCommandSpec[] { - return CHAT_COMMANDS.filter( - (command) => command.supportsNative !== false, - ).map((command) => ({ + return CHAT_COMMANDS.map((command) => ({ name: command.nativeName, description: command.description, acceptsArgs: Boolean(command.acceptsArgs), diff --git a/src/auto-reply/status.ts b/src/auto-reply/status.ts index a971d9735..1aeb3d933 100644 --- a/src/auto-reply/status.ts +++ b/src/auto-reply/status.ts @@ -375,8 +375,7 @@ export function buildCommandsMessage(): string { const aliasLabel = aliases.length ? ` (aliases: ${aliases.join(", ")})` : ""; - const scopeLabel = command.supportsNative === false ? " (text-only)" : ""; - lines.push(`${primary}${aliasLabel}${scopeLabel} - ${command.description}`); + lines.push(`${primary}${aliasLabel} - ${command.description}`); } return lines.join("\n"); }