Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/features/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,24 @@ const sortedCategories: Categories[] = [
];

const commandsList: Command[] = [
{
words: [`!ai`],
help: `explains why AI-generated responses should be avoided.`,
Copy link

Copilot AI Jan 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The help text should not end with a period to be consistent with all other commands in the codebase. Other command help texts like lists all available commands (line 62), provides a no cross-post message (line 132), and explains the XY problem (line 184) do not end with periods.

Copilot uses AI. Check for mistakes.
category: "Communication",
handleMessage: (msg) => {
msg.reply({
Copy link

Copilot AI Jan 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This command should use msg.channel.send() instead of msg.reply() to be consistent with similar community behavior reminder commands in this codebase. Commands like !crosspost (line 135) and !gender (line 804), which are also in the "Communication" category and have titles starting with "Please," use msg.channel.send(). The msg.channel.send() approach is more appropriate for commands that are typically invoked to remind or inform other users in the channel, rather than to respond directly to the invoking user.

Copilot uses AI. Check for mistakes.
embeds: [
{
title: "Please Avoid AI-Generated Posts",
type: EmbedType.Rich,
description:
"AI-generated responses may seem helpful but are often unverified or misleading unless you’ve personally tried them. This server is for human experience and discussion—many users are here specifically for firsthand insight rather than AI-generated answers. Sharing your own thoughts or experience helps everyone more.",
color: EMBED_COLOR,
},
],
});
},
},
{
words: [`!commands`],
help: `lists all available commands`,
Expand Down
Loading