Free SKILL.md scraped from GitHub. Clone the repo or copy the file directly into your Claude Code skills directory.
npx versuz@latest install coding-philosophy-and-practicesgit clone https://github.com/iashyam/iashyam.gitcp -r iashyam/ ~/.claude/skills/coding-philosophy-and-practices/# Coding Philosophy and Practices ## Minimalism Embrace simplicity in your code by removing unnecessary complexity. Focus on writing clear and concise code that serves its purpose without over-engineering. ## Pragmatism Adopt a practical approach to solving problems. Aim for solutions that work effectively in real-world scenarios rather than adhering strictly to theoretical principles. ## Type Hints Utilize type hints in your code to provide clarity on the expected types of variables. This enhances readability and helps in debugging. ## Reproducibility Ensure that your code can be easily reproduced in different environments. Use version control and maintain clear documentation to facilitate this. ## Clean Code Strive for clean code by following standard practices. Write functions that do one thing well, keep your methods short, and avoid unnecessary comments that may clutter the understanding of the code.