3 Open Issues Need Help Last updated: Mar 3, 2026

Open Issues Need Help

View All on GitHub
Automation Bot Development

AI Summary: The `/setup_reaction_role` command currently lacks explicit permission checks, allowing any user to create reaction role messages. This security vulnerability should be fixed by adding a decorator to restrict its use to administrators or users with the 'Manage Roles' permission.

Complexity: 1/5
good first issue security
Automation Bot Development

AI Summary: This issue proposes to update the `roster_monitor.py` and `suggestions.py` files to use timezone-aware datetime objects for embed timestamps. Currently, they use `datetime.now()`, which can lead to inconsistencies. The suggested fix is to use `datetime.now(datetime.timezone.utc)` for better regional consistency and auditing.

Complexity: 1/5
enhancement good first issue
Automation Bot Development

AI Summary: The bot fails to load cogs when started from a different directory because it uses a relative path to find the 'cogs' folder. This means the 'cogs' folder might not exist in the current working directory, preventing cogs from being loaded. The suggested fix is to resolve the 'cogs' directory path relative to the script's location.

Complexity: 2/5
bug good first issue