Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.21 KB

File metadata and controls

47 lines (32 loc) · 1.21 KB

AI Usage Guidelines

AI-assisted coding is welcomed and encouraged. Use it to boost your productivity!

Rules

  1. Review everything line by line - Never blindly accept AI-generated code
  2. Understand what you commit - If you can't explain it, don't push it
  3. Test your code - AI makes mistakes, always verify
  4. Don't share secrets - Never paste API keys or credentials to AI tools

Recommended Tools

  • GitHub Copilot - Code completion in your IDE
  • Cursor - AI-powered code editor
  • ChatGPT / Claude - For explanations and problem-solving

Good Use Cases

  • Boilerplate code generation
  • Writing tests
  • Refactoring suggestions
  • Learning new concepts
  • Debugging help
  • Documentation writing

Be Careful With

  • Security-sensitive code
  • Complex business logic
  • Database queries (SQL injection risk)
  • Authentication/authorization

Tips

  1. Give clear, specific prompts
  2. Break complex tasks into smaller pieces
  3. Ask AI to explain its code
  4. Use AI to learn, not just copy-paste
  5. Double-check imports and dependencies

Remember

AI is a tool, not a replacement for understanding. The goal is to work smarter, not to skip learning.

You are responsible for the code you commit.