From 904c91ec1d5335851043f87344b6a95d7f88b282 Mon Sep 17 00:00:00 2001 From: Simplyalex99 Date: Wed, 28 Jan 2026 22:30:29 -0500 Subject: [PATCH 1/2] feat: added AI content guideline command prompt --- src/features/commands.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/features/commands.ts b/src/features/commands.ts index cabcc427..d44e1389 100644 --- a/src/features/commands.ts +++ b/src/features/commands.ts @@ -39,6 +39,24 @@ const sortedCategories: Categories[] = [ ]; const commandsList: Command[] = [ + { + words: [`!ai`], + help: `explains why AI-generated responses should be avoided.`, + category: "Communication", + handleMessage: (msg) => { + msg.reply({ + 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`, From 7b3e64920896067569836a62fa3ad653f9842468 Mon Sep 17 00:00:00 2001 From: Simplyalex99 Date: Wed, 28 Jan 2026 22:41:29 -0500 Subject: [PATCH 2/2] chore: align AI command formatting and message handling --- src/features/commands.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/commands.ts b/src/features/commands.ts index d44e1389..fc26a068 100644 --- a/src/features/commands.ts +++ b/src/features/commands.ts @@ -41,10 +41,10 @@ const sortedCategories: Categories[] = [ const commandsList: Command[] = [ { words: [`!ai`], - help: `explains why AI-generated responses should be avoided.`, + help: `explains why AI-generated responses should be avoided`, category: "Communication", handleMessage: (msg) => { - msg.reply({ + msg.channel.send({ embeds: [ { title: "Please Avoid AI-Generated Posts",