SOLID principles (Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, Dependency Inversion) for object-oriented design.
原文语言:英语
菜单
这个仓库中的 skills
SkillsMP 已收集 sethdford/claude-skills 中的 383 个 Skill。打开任一 Skill 可查看来源和详情。
sethdford/claude-skills已展示 40 / 383 个已收集 Skill。
SOLID principles (Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, Dependency Inversion) for object-oriented design.
原文语言:英语
Pool sizing, connection lifetime, health checks, and resource exhaustion prevention.
原文语言:英语
Constraints, triggers, audit trails, referential integrity, and data validation.
原文语言:英语
B-tree indexes, composite indexes, covering indexes, UNIQUE indexes, and index trade-offs.
原文语言:英语
Safe schema migrations, backward compatibility, zero-downtime deployments, and rollback strategies.
原文语言:英语
EXPLAIN PLAN analysis, index selection, join strategies, and slow query debugging.
原文语言:英语
Database schema design with normalization, relationships, constraints, and data integrity.
原文语言:英语
ACID properties, isolation levels, locks, deadlocks, and transaction design.
原文语言:英语
Using bisect/git bisect to isolate failure to exact commit or code path.
原文语言:英语
Race conditions, deadlocks, thread analysis, happens-before relationships.
原文语言:英语
Parsing logs, correlation analysis, reconstructing timeline of failures.
原文语言:英语
Detecting memory leaks through heap dumps, retention analysis, and reference tracing.
原文语言:英语
CPU/memory profiling, identifying bottlenecks, flame graphs, hotspot analysis.
原文语言:英语
Writing comprehensive postmortems: timeline, root cause, prevention, action items.
原文语言:英语
Five Whys, fishbone diagrams, identifying systemic causes not just symptoms.
原文语言:英语
Disciplined methodology to isolate bugs through hypothesis-driven testing. Form hypotheses, test them with minimal changes, narrow scope systematically. Use when bugs are unclear or reproduce intermittently.
原文语言:英语
SLO-based alerting, threshold tuning, incident escalation, runbooks, and on-call management.
原文语言:英语
GitHub Actions, GitLab CI, Jenkins; stages, artifacts, caching, and deployment automation.
原文语言:英语
Blue-green, canary, rolling deployments, traffic shifting, and safe release strategies.
原文语言:英语
Dockerfile best practices, layer optimization, multi-stage builds, security, and image size reduction.
原文语言:英语
Designing feature flags for gradual rollouts, A/B testing, and safe feature releases.
原文语言:英语
Terraform, CloudFormation, reproducible infrastructure, version control, and IaC best practices.
原文语言:英语
ELK Stack, structured logging, log query patterns, and centralized log management.
原文语言:英语
Metrics, logs, traces (observability); choosing what to measure, dashboards, and incident response.
原文语言:英语
Systematic code review process, feedback templates, approval criteria, and review best practices.
原文语言:英语
Documentation levels and types (README, architecture, API, runbooks), keeping docs current and discoverable.
原文语言:英语
Feature branches, commit hygiene, rebasing vs. merging, and collaborative workflows.
原文语言:英语
SEV classification, incident command system, communication, and incident response procedures.
原文语言:英语
Runbook templates, escalation procedures, playbooks, and incident playbooks.
原文语言:英语
Effective pair programming, driver/navigator roles, tools, and collaboration patterns.
原文语言:英语
Clear technical documentation, API docs, architecture decision records, and runbooks.
原文语言:英语
Big O notation, time/space complexity analysis, and choosing efficient algorithms.
原文语言:英语
Actor model, CSP (Communicating Sequential Processes), lock-free patterns, async/await.
原文语言:英语
Choosing optimal data structures based on access patterns and performance requirements.
原文语言:英语
Gang of Four patterns (Creational, Structural, Behavioral) and when to apply them.
原文语言:英语
Higher-order functions, composition, monads, immutability, and functional programming idioms.
原文语言:英语
Streams, observables, event-driven reactive systems, backpressure, and reactive programming.
原文语言:英语
RAII (Resource Acquisition Is Initialization), cleanup patterns, resource leaks, and lifetime management.
原文语言:英语
Finite state machines, event sourcing, CQRS (Command Query Responsibility Segregation), and state modeling.
原文语言:英语
Testing multiple components together; contract verification; real I/O (database, HTTP). Use when testing component interactions.
原文语言:英语