Python code is easier to work with when it follows smart design rules. These patterns help you avoid big tangled chunks of code that are hard to change. You will learn to keep things simple, split responsibilities, and choose composition over inheritance.
This skill is useful when building new services or refactoring old ones. It helps you decide when to add a new abstraction or keep working with what you have. You will also learn how to spot structural problems in pull requests.
By following these principles, your code becomes easier to test and modify. Other developers will find it simpler to understand and maintain. The goal is to write code that works well today and stays easy to change tomorrow.
Global
mkdir -p ~/.claude/skills/python-design-patternsProject
mkdir -p .claude/skills/python-design-patternsSource Repository
Typescript Advanced Typeswshobson/agents
Master advanced TypeScript types for safer and more flexible code
Python Executorqu-skills/skills
Execute Python code safely with 100+ libraries for data, scraping, and media
Golang Error Handlingsamber/cc-skills-golang
Learn to create, wrap, inspect, and log Go errors like a professional engineer
Golang Performancesamber/cc-skills-golang
Speed up your Go code using proven patterns for allocation reduction and CPU efficiency
Golang Design Patternssamber/cc-skills-golang
Idiomatic Go patterns for clean constructors error handling and graceful shutdown
Golang Concurrencysamber/cc-skills-golang
Write safe Go concurrency with goroutines, channels, and sync primitives
Golang Data Structuressamber/cc-skills-golang
Optimize Go data structures for speed and memory efficiency with internals knowledge
Golang Contextsamber/cc-skills-golang
Master Go context for cancellations, timeouts, and request values