My assorted cogs for Red-DiscordBot.
  • Python 98.7%
  • Nix 0.9%
  • JavaScript 0.4%
Find a file
cswimr 8c6e42367b
All checks were successful
Actions / Build Documentation (push) Successful in 47s
Actions / Lint (push) Successful in 51s
Actions / Ensure Cogs Load (push) Successful in 3m58s
chore(deps): update red
2026-03-14 10:55:12 -04:00
.docs hotreload: finish blacklist and required command groups; improve documentation 2026-02-19 15:19:10 -05:00
.forgejo chore(deps): update catthehacker/ubuntu:act-latest docker digest to 612235b (#170) 2026-03-08 10:07:26 -04:00
.typings decrease max line length from 150 -> 140 2025-12-18 16:49:48 -05:00
.vscode repo: bunch of stuff 2025-10-14 03:16:19 -05:00
aurora aurora: hide by default 2025-06-18 10:15:38 -05:00
backup backup: bump red 2026-03-08 00:59:52 -05:00
bible fix(deps): update dependency pillow to v12 [security] (#167) 2026-02-26 15:10:18 -05:00
emojiinfo repo: update tidegear 2026-02-21 02:12:44 -05:00
hotreload repo: update tidegear 2026-02-21 02:12:44 -05:00
issuecards repo: update tidegear 2026-02-21 02:12:44 -05:00
LICENSES repo: reuse compliance 2025-10-14 18:33:27 -05:00
nerdify repo: update tidegear 2026-02-21 02:12:44 -05:00
pterodactyl ptero: fix infinite recursion in websocket task 2026-03-04 20:20:14 -05:00
seautils repo: update tidegear 2026-02-21 02:12:44 -05:00
tickchanger repo: update tidegear 2026-02-21 02:12:44 -05:00
.editorconfig repo: reuse compliance 2025-10-14 18:33:27 -05:00
.envrc repo: reuse compliance 2025-10-14 18:33:27 -05:00
.gitignore repo: reuse compliance 2025-10-14 18:33:27 -05:00
.readthedocs.yml repo: bunch of stuff 2025-10-14 03:16:19 -05:00
flake.lock chore(deps): lock file maintenance (#171) 2026-03-08 20:10:18 -04:00
flake.nix mess with some flake stuff 2025-12-18 16:36:39 -05:00
info.json treewide: update links again 2025-06-16 05:29:16 -05:00
mkdocs.yml bunch of fixes for cog creator application stuff 2026-02-17 13:05:43 -05:00
pyproject.toml chore(deps): update red 2026-03-14 10:55:12 -04:00
README.md repo: add notice regarding fluxer compatibility 2026-02-21 15:35:39 -05:00
renovate.json5 add missing licensing information 2026-01-05 06:29:49 -05:00
REUSE.toml add missing licensing information 2026-01-05 06:29:49 -05:00
uv.lock chore(deps): update red 2026-03-14 10:55:12 -04:00

SeaCogs

Discord Documentation Actions Status Python Versions

My assorted cogs for Red-DiscordBot.

Important

At present, SeaCogs does not support the Fluxer version of Red-DiscordBot. Lots of stuff used by my cogs is not supported by Fluxer (yet), such as application (slash) commands, modals, message components, and some API features. Feel free to report issues only if they are unrelated to missing functionality in Fluxer.

Developing

You'll need some prerequisites before you can start working on my cogs.
git - uv
Additionally, I recommend a code editor of some variety. Visual Studio Code is a good, beginner-friendly option.

Installing Prerequisites

This section of the guide only applies to Windows systems. If you're on Linux, refer to the documentation of the projects listed above. I also offer a Nix Flake that contains all of the required prerequisites, if you're a Nix user.

git

You can download git from the git download page.

Alternatively, you can use winget:

winget install --id=Git.Git -e --source=winget

uv

You can install uv with the following Powershell command:

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Alternatively, you can use winget:

winget install --id=astral-sh.uv -e

Getting the Source Code

Once you have git installed, you can use the git clone command to get a copy of the repository on your system.

git clone https://c.csw.im/cswimr/SeaCogs.git --recurse-submodules

Then, you can use uv to install the Python dependencies required for development.

uv sync --frozen