aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Janzen <jacob.a.s.janzen@gmail.com>2024-12-30 21:25:09 -0600
committerJacob Janzen <jacob.a.s.janzen@gmail.com>2024-12-30 21:25:09 -0600
commitb0fcbe49b4bee0d384f9a9d3df91c29dc4c4643c (patch)
treee0ddf59c448ff51fc88d2fcaea3055156000b5c8
parentaf4278b2ee3b0bf9d541e13dfabbee7e8d5ee89b (diff)
update readme and help
-rw-r--r--README.md4
-rw-r--r--command_impls.js2
2 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6f89272..986eac0 100644
--- a/README.md
+++ b/README.md
@@ -43,5 +43,9 @@ This bot requires that there be a publicly accessible interactions endpoint URL.
|Command|Description|
|---|---|
+|`/blep`|blep.|
+|`/catfact`|Get a fact about cats|
+|`/fomx`|Get an image of a fox|
+|`/help`|Show a help message|
|`/pet`|You can pet sily-bot.|
|`/schedule-message <message> <cron>`|Schedule a message to be send later. Works like Linux cron jobs in the format `second minute hour day month weekday`. Put the number (or name of month or weekday) in each spot. If you want it to run every second, minute, etc. instead of once when it reaches the provided number, use a `*` instead of a number. For instance, to run a job every minute on January 4th, you might use `0 * * 4 January *`.|
diff --git a/command_impls.js b/command_impls.js
index 4665044..a9183f3 100644
--- a/command_impls.js
+++ b/command_impls.js
@@ -37,6 +37,8 @@ export function help(state) {
content: `Hi, I'm sily-bot!
Here are the available commands and their descriptions:
- \`/blep\` blep.
+- \`/catfact\` Get a fact about cats.
+- \`/fomx\` Get an image of a fox.
- \`/help\` Show this message.
- \`/pet\` You can pet sily-bot.
- \`/schedule-message <message> <cron>\` Schedule a message to be send later. Works like Linux cron jobs in the format second minute hour day month weekday. Put the number (or name of month or weekday) in each spot. If you want it to run every second, minute, etc. instead of once when it reaches the provided number, use a \`*\` instead of a number. For instance, to run a job every minute on January 4th, you might use \`0 * * 4 January *\`.`,