Skip to content

Commit 904c91e

Browse files
committed
feat: added AI content guideline command prompt
1 parent 3b171a6 commit 904c91e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/features/commands.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,24 @@ const sortedCategories: Categories[] = [
3939
];
4040

4141
const commandsList: Command[] = [
42+
{
43+
words: [`!ai`],
44+
help: `explains why AI-generated responses should be avoided.`,
45+
category: "Communication",
46+
handleMessage: (msg) => {
47+
msg.reply({
48+
embeds: [
49+
{
50+
title: "Please Avoid AI-Generated Posts",
51+
type: EmbedType.Rich,
52+
description:
53+
"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.",
54+
color: EMBED_COLOR,
55+
},
56+
],
57+
});
58+
},
59+
},
4260
{
4361
words: [`!commands`],
4462
help: `lists all available commands`,

0 commit comments

Comments
 (0)