code-styleguide
Installation
SKILL.md
Code Styleguide
Overview
Universal code style guidelines that promote clean, maintainable, and readable code across all programming languages. These principles focus on simplicity, clarity, and avoiding unnecessary complexity while following proven software engineering best practices.
Core Principles
1. KISS (Keep It Simple, Stupid)
The simplest solution is usually the best solution.
- Favor clear, straightforward code over clever tricks
- One function should do one thing well
- Prefer explicit code over implicit behavior
- Avoid premature optimization
- Write code, not documentation: minimize auxiliary files
- Never use emoji in code or comments