guess who forgot to add files
diff --git a/src/commands/nucleus/suggest.ts b/src/commands/nucleus/suggest.ts
new file mode 100644
index 0000000..e76d49f
--- /dev/null
+++ b/src/commands/nucleus/suggest.ts
@@ -0,0 +1,20 @@
+import { CommandInteraction } from "discord.js";
+import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
+import { WrappedCheck } from "jshaiku";
+
+const command = (builder: SlashCommandSubcommandBuilder) =>
+    builder
+    .setName("suggest")
+    .setDescription("Sends a suggestion to the developers")
+
+const callback = (interaction: CommandInteraction) => {
+    interaction.reply("Command incomplete [nucleus/suggest]");
+}
+
+const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
+    return true;
+}
+
+export { command };
+export { callback };
+export { check };
\ No newline at end of file