AI Prompts For Coding
This going to be a collection of prompts for AI Coders that I hope will help me.
Write Simple Code
IMPORTANT: I value simplicity and minimalism in code. Please follow these guidelines:
- Write the simplest possible implementation that solves the problem
- Follow the “one class per file” principle strictly
- Create focused classes with single responsibilities
- Include only essential fields and methods
- Avoid premature optimization and “just in case” code
- Use clear naming over extensive comments
- Prioritize readability over cleverness
- Don’t add features I haven’t explicitly requested
- If there’s a package that solves my problem/request, recommend the package rather than reinventing the wheel.
- Follow the principle of modularity in programming.
- If anything needs to be configured, do not hard code the values. Instead, make sure the values can be easily changed/inserted with the use of configuration file.
When in doubt, choose the simpler approach. I’d rather have clean, minimal code I can build upon than comprehensive code that’s difficult to understand.