├── .DS_Store ├── .github └── workflows │ └── opencommit.yml ├── .gitignore ├── README.md ├── anki.js ├── books.js ├── bot.js ├── chores └── monthly_reset.js ├── command-archive └── subfolder │ ├── duel.js │ ├── ping.js │ ├── quote-royale-command.js │ ├── server.js │ ├── template.js │ └── user.js ├── commands ├── dalle │ └── aart.js ├── games │ └── who_said.js ├── health │ └── help.js └── quoordinates │ ├── curio.js │ ├── quos.js │ ├── random.js │ └── thesis.js ├── cron-hourly-post.js ├── deploy-commands.js ├── dividers ├── .DS_Store ├── books.png ├── kanji.png ├── mice.png ├── planets-1.png ├── planets-2.png ├── shapes.png ├── skulls.png └── waifu.png ├── erasure.js ├── invocation.js ├── modal.js ├── nomic-topics.txt ├── openai_helper.js ├── package.json ├── quote-royale.js ├── quote-royale.json ├── quotes-votes.json ├── shared-queue.js ├── supabase-invocations.js ├── supabase.js └── tts.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/opencommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/.github/workflows/opencommit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/README.md -------------------------------------------------------------------------------- /anki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/anki.js -------------------------------------------------------------------------------- /books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/books.js -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/bot.js -------------------------------------------------------------------------------- /chores/monthly_reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/chores/monthly_reset.js -------------------------------------------------------------------------------- /command-archive/subfolder/duel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/command-archive/subfolder/duel.js -------------------------------------------------------------------------------- /command-archive/subfolder/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/command-archive/subfolder/ping.js -------------------------------------------------------------------------------- /command-archive/subfolder/quote-royale-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/command-archive/subfolder/quote-royale-command.js -------------------------------------------------------------------------------- /command-archive/subfolder/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/command-archive/subfolder/server.js -------------------------------------------------------------------------------- /command-archive/subfolder/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/command-archive/subfolder/template.js -------------------------------------------------------------------------------- /command-archive/subfolder/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/command-archive/subfolder/user.js -------------------------------------------------------------------------------- /commands/dalle/aart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/commands/dalle/aart.js -------------------------------------------------------------------------------- /commands/games/who_said.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/commands/games/who_said.js -------------------------------------------------------------------------------- /commands/health/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/commands/health/help.js -------------------------------------------------------------------------------- /commands/quoordinates/curio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/commands/quoordinates/curio.js -------------------------------------------------------------------------------- /commands/quoordinates/quos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/commands/quoordinates/quos.js -------------------------------------------------------------------------------- /commands/quoordinates/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/commands/quoordinates/random.js -------------------------------------------------------------------------------- /commands/quoordinates/thesis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/commands/quoordinates/thesis.js -------------------------------------------------------------------------------- /cron-hourly-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/cron-hourly-post.js -------------------------------------------------------------------------------- /deploy-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/deploy-commands.js -------------------------------------------------------------------------------- /dividers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/dividers/.DS_Store -------------------------------------------------------------------------------- /dividers/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/dividers/books.png -------------------------------------------------------------------------------- /dividers/kanji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/dividers/kanji.png -------------------------------------------------------------------------------- /dividers/mice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/dividers/mice.png -------------------------------------------------------------------------------- /dividers/planets-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/dividers/planets-1.png -------------------------------------------------------------------------------- /dividers/planets-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/dividers/planets-2.png -------------------------------------------------------------------------------- /dividers/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/dividers/shapes.png -------------------------------------------------------------------------------- /dividers/skulls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/dividers/skulls.png -------------------------------------------------------------------------------- /dividers/waifu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/dividers/waifu.png -------------------------------------------------------------------------------- /erasure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/erasure.js -------------------------------------------------------------------------------- /invocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/invocation.js -------------------------------------------------------------------------------- /modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/modal.js -------------------------------------------------------------------------------- /nomic-topics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/nomic-topics.txt -------------------------------------------------------------------------------- /openai_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/openai_helper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/package.json -------------------------------------------------------------------------------- /quote-royale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/quote-royale.js -------------------------------------------------------------------------------- /quote-royale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/quote-royale.json -------------------------------------------------------------------------------- /quotes-votes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/quotes-votes.json -------------------------------------------------------------------------------- /shared-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/shared-queue.js -------------------------------------------------------------------------------- /supabase-invocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/supabase-invocations.js -------------------------------------------------------------------------------- /supabase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/supabase.js -------------------------------------------------------------------------------- /tts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bramses/commonplace-bot/HEAD/tts.js --------------------------------------------------------------------------------