mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-16 21:45:14 +00:00
Created comprehensive skill collection covering all aspects of modern software development with production-ready patterns, best practices, and detailed documentation. ## Skills Organized by Domain ### Code Quality & Architecture (2 skills) - advanced-code-refactoring: SOLID principles, design patterns, refactoring patterns - code-review: Automated/manual review, security, performance, maintainability ### API & Integration (2 skills) - api-integration-expert: REST/GraphQL/WebSocket with auth, retry, caching - graphql-schema-design: Schema design, resolvers, optimization, subscriptions ### Database & Data (3 skills) - database-optimization: SQL/NoSQL tuning, indexing, query optimization - data-pipeline: ETL/ELT with Airflow, Spark, dbt - caching-strategies: Redis, Memcached, CDN, invalidation patterns ### Security & Authentication (2 skills) - security-audit: OWASP Top 10, vulnerability scanning, security hardening - auth-implementation: OAuth2, JWT, session management, SSO ### Testing & Quality (2 skills) - test-automation: Unit/integration/E2E tests, TDD/BDD, coverage - performance-profiling: CPU/memory profiling, Core Web Vitals optimization ### DevOps & Infrastructure (3 skills) - docker-kubernetes: Containerization, orchestration, production deployments - ci-cd-pipeline: GitHub Actions, automated testing, deployment strategies - logging-monitoring: Observability with Datadog, Prometheus, Grafana, ELK ### Frontend Development (3 skills) - frontend-accessibility: WCAG 2.1 compliance, ARIA, keyboard navigation - ui-component-library: Design systems with React/Vue, Storybook - mobile-responsive: Responsive design, mobile-first, PWAs ### Backend & Scaling (2 skills) - backend-scaling: Load balancing, sharding, microservices, horizontal scaling - real-time-systems: WebSockets, SSE, WebRTC for real-time features ### ML & AI (1 skill) - ml-model-integration: Model serving, inference optimization, monitoring ### Development Tools (2 skills) - git-workflow-optimizer: Git workflows, branching strategies, conflict resolution - dependency-management: Package updates, security patches, version conflicts ### Code Maintenance (3 skills) - error-handling: Robust error patterns, logging, graceful degradation - documentation-generator: API docs, README, technical specifications - migration-tools: Database/framework migrations with zero downtime ## Key Features Each skill includes: - YAML frontmatter with name, description, allowed tools - Clear purpose and when to use - Comprehensive capabilities overview - Production-ready code examples - Best practices and patterns - Success criteria - Tool-specific configurations ## Highlights - 25 comprehensive skills covering full development lifecycle - Production-ready patterns and examples - Security-first approach throughout - Performance optimization built-in - Comprehensive testing strategies - DevOps automation and infrastructure as code - Modern frontend with accessibility focus - Scalable backend architectures - Data engineering and ML integration - Advanced Git workflows ## File Structure claude_skills/ ├── README.md (comprehensive documentation) ├── advanced-code-refactoring/ │ ├── SKILL.md (main skill definition) │ ├── reference.md (design patterns, SOLID principles) │ └── examples.md (refactoring examples) ├── api-integration-expert/ │ └── SKILL.md (REST/GraphQL/WebSocket integration) ├── [23 more skills...] Total: 25 skills + comprehensive README + supporting documentation ## Usage Personal skills: cp -r claude_skills/* ~/.claude/skills/ Project skills: cp -r claude_skills/* .claude/skills/ Skills automatically activate based on context and description triggers.
4.9 KiB
4.9 KiB
| name | description | allowed-tools |
|---|---|---|
| advanced-code-refactoring | Expert-level code refactoring applying SOLID principles, design patterns, and architectural improvements. Use when refactoring legacy code, improving code structure, applying design patterns, or modernizing codebases. | Read, Write, Edit, Grep, Glob, Bash |
Advanced Code Refactoring Expert
Purpose
This skill enables deep, architectural-level code refactoring with a focus on maintainability, scalability, and best practices. It applies proven design patterns, SOLID principles, and modern architectural approaches.
When to Use
- Refactoring legacy or monolithic code
- Applying design patterns (Factory, Strategy, Observer, etc.)
- Improving code modularity and separation of concerns
- Extracting duplicated code into reusable utilities
- Converting imperative code to declarative patterns
- Modernizing codebases (callbacks → promises → async/await)
- Improving testability through dependency injection
Capabilities
1. Design Pattern Application
- Creational: Factory, Builder, Singleton, Prototype
- Structural: Adapter, Decorator, Facade, Proxy
- Behavioral: Strategy, Observer, Command, Template Method
2. SOLID Principles
- Single Responsibility: One class, one reason to change
- Open/Closed: Open for extension, closed for modification
- Liskov Substitution: Subtypes must be substitutable
- Interface Segregation: Many specific interfaces over one general
- Dependency Inversion: Depend on abstractions, not concretions
3. Architectural Improvements
- Extract Service Layer from Controllers
- Implement Repository Pattern for data access
- Create Domain-Driven Design (DDD) boundaries
- Separate Business Logic from Infrastructure
- Apply Clean Architecture / Hexagonal Architecture
4. Code Smell Detection & Resolution
- Long methods → Extract method/class
- Large classes → Split responsibilities
- Duplicated code → Extract common utilities
- Feature envy → Move method to appropriate class
- Primitive obsession → Create value objects
- Switch statements → Replace with polymorphism
Workflow
-
Analyze Current Code
- Identify code smells and anti-patterns
- Map dependencies and coupling
- Find duplicated logic
- Assess testability
-
Design Refactoring Plan
- Choose appropriate patterns
- Define new abstractions
- Plan incremental changes
- Identify breaking changes
-
Execute Refactoring
- Preserve existing tests (or create them first)
- Make small, incremental changes
- Run tests after each change
- Update documentation
-
Verify Improvements
- All tests pass
- Code coverage maintained or improved
- Complexity metrics improved
- No regression in functionality
Best Practices
- Test First: Ensure comprehensive tests exist before refactoring
- Small Steps: Make incremental changes, not massive rewrites
- Preserve Behavior: Refactoring should not change functionality
- Measure Impact: Use metrics (cyclomatic complexity, coupling, cohesion)
- Document Decisions: Explain why patterns were chosen
- Review Thoroughly: Refactoring requires careful code review
Tools & Techniques
Static Analysis
- ESLint, TSLint, Prettier (JavaScript/TypeScript)
- Pylint, Black, mypy (Python)
- RuboCop (Ruby)
- SonarQube (Multi-language)
Complexity Metrics
- Cyclomatic Complexity (McCabe)
- Cognitive Complexity
- Lines of Code (LOC)
- Coupling Between Objects (CBO)
- Lack of Cohesion in Methods (LCOM)
Refactoring Patterns
// Before: Long method with multiple responsibilities
function processOrder(order) {
// Validation (20 lines)
// Price calculation (30 lines)
// Inventory update (25 lines)
// Email notification (15 lines)
}
// After: Single Responsibility
function processOrder(order) {
const validator = new OrderValidator();
const calculator = new PriceCalculator();
const inventory = new InventoryService();
const notifier = new EmailNotifier();
validator.validate(order);
const total = calculator.calculate(order);
inventory.update(order);
notifier.sendConfirmation(order);
}
Configuration
Refactoring follows these priorities:
- Safety: Never break existing functionality
- Clarity: Code should be more readable after refactoring
- Testability: Improve test coverage and ease of testing
- Performance: Maintain or improve performance
- Maintainability: Reduce future maintenance burden
Dependencies
- Testing framework (Jest, pytest, RSpec, etc.)
- Linter configured for project
- Type checker (TypeScript, mypy, etc.) if applicable
Success Criteria
- ✓ All existing tests pass
- ✓ Code complexity reduced (measured)
- ✓ Duplication eliminated or minimized
- ✓ Design patterns appropriately applied
- ✓ SOLID principles followed
- ✓ Documentation updated
- ✓ No performance regressions