A powerful community management bot designed specifically for the PESU Discord Server. This bot provides essential moderation tools, anonymous messaging capabilities, user linking systems, and various utility commands to enhance the Discord experience for PESU students.
The bot is built with security and privacy in mind, ensuring safe and effective community management while maintaining user confidentiality.
Warning
The bot is hosted on a free tier AWS server with limited hardware. Users may experience lag during peak usage times.
The bot is currently deployed and active in the PESU Discord Server. Use slash commands to interact with the bot:
- Type
/
in any channel to see available commands - Use
/help
for detailed command documentation - Contact moderators for support with bot-related issues
- Check our project board for current work
- Read the contribution guidelines
- Set up your development environment
- Create a branch:
(discord-username)/feature-description
- Submit a PR to the
dev
branch
For detailed development setup and contribution instructions, see our Contributing Guide.
├── application.py # Main application entry point (loads cogs, sets presence)
├── bot.py # Discord bot subclass with MongoDB attributes
├── faq.json # FAQ responses data
├── requirements.txt # Python dependencies (for non-uv users)
├── pyproject.toml # Project metadata and tooling config
├── uv.lock # uv lockfile
├── Dockerfile # Container image definition
├── docker-compose.yml # Local compose for services
├── LICENSE # Project license
├── README.md # This file
├── cogs/ # Bot functionality modules (Discord.py cogs)
│ ├── events/ # Event handlers
│ │ └── general.py # General event handling (member joins, etc.)
│ └── interactions/ # Command interactions
│ └── slash/ # Slash commands implementation
│ ├── anon.py # Anonymous messaging system
│ ├── help.py # Help and command documentation
│ ├── link.py # User linking and verification
│ ├── mod.py # Moderation commands
│ └── utils.py # Utility commands (ping, uptime, etc.)
└── utils/ # Shared utilities and configuration helpers
├── config.py # Guild/role/channel IDs and access helpers
└── general.py # General helper functions
The bot uses Discord.py's cogs system to organize functionality into modular components:
- Events Cogs: Handle Discord events such as member joins, message events, and server updates
- Slash Command Cogs: Implement modern Discord slash commands for user interactions
- Utility Functions: Shared helper functions used across different cogs
The bot maintains several MongoDB collections:
link
: Stores Discord-PESU account linksstudent
: Student linking dataanonban
: Anonymous messaging ban recordsmute
: Server mute records
The bot's behavior is controlled primarily through environment variables and code-based configuration:
Refer to our Contributing Guide for environment setup and the list of variables: .github/CONTRIBUTING.md
. An example file is provided at .env.example
.
Holds guild-specific role and channel ID mappings and exposes helpers like get_role
/get_channel
.
Stores frequently asked questions and their responses for quick access.
Made with ❤️ by
Powered by contrib.rocks
We welcome contributions from the PESU community! Whether you're fixing bugs, adding new features, or improving documentation, your help is appreciated.
👉 Read our detailed Contributing Guide for complete setup instructions and development workflow.
- No Credential Storage: The bot does not store Discord or PESU passwords
- Secure Database: All data is stored securely in MongoDB with proper access controls
- Role-based Access: Commands are restricted based on user permissions and server roles
- Active Development: The bot is actively maintained and updated
- Community Driven: Features are developed based on community needs
- Production Ready: Currently deployed and serving the PESU Discord community
This project is licensed under the MIT License - see the LICENSE file for details.
For questions, support, or feature requests, please visit our project board or join the discussion on the PESU Discord server.