-
Notifications
You must be signed in to change notification settings - Fork 43
feat: added AI content guideline command prompt #511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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`, | ||
|
|
||
There was a problem hiding this comment.
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), andexplains the XY problem(line 184) do not end with periods.