nimadorostkar/Claude-Skills-collection

A curated library of 137 production-grade skills for Claude and other AI coding agents.

26Stars on the repository
138Mods indexed here, across every type
25d agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

bug-fix-protocol

49

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when fixing a reported bug end to end. Enforces a disciplined sequence — reproduce, write a failing test, fix minimally, verify, prevent recurrence — and blocks the common failure mode of patching symptoms.

not rated 26 25d ago A SkillSpector: pass 48 tokens original MIT

cli-development

50

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when building command-line tools. Covers argument design, exit codes, streams and piping, progress output, configuration precedence, and behavior that respects the shell.

not rated 26 25d ago A SkillSpector: pass 34 tokens original MIT

code-review

51

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when reviewing a pull request, diff, or branch. Produces severity-ranked findings covering correctness, security, performance, and maintainability, with concrete fixes rather than opinions.

not rated 26 25d ago A 38 tokens original MIT

debugging

52

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when a bug's cause is unknown. Applies a hypothesis-driven method — reproduce, isolate, instrument, prove — instead of speculative edits, and covers profiler, debugger, and log-based investigation.

not rated 26 25d ago A SkillSpector: pass 42 tokens original MIT

design-patterns

53

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when choosing how to structure code for a recurring problem. Covers the patterns that earn their keep, the ones that usually do not, and how to recognize when a pattern is being applied for its own sake.

not rated 26 25d ago A SkillSpector: pass 46 tokens original MIT

domain-modeling

54

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when the code's vocabulary does not match the business's. Establishes a ubiquitous language, models domain concepts as explicit types, and identifies bounded contexts.

not rated 26 25d ago A SkillSpector: pass 35 tokens original MIT

git-workflow

55

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use for branching, committing, history repair, and release hygiene. Covers atomic commits, rebase versus merge, bisect, reflog recovery, and undoing mistakes safely.

not rated 26 25d ago A SkillSpector: warn 39 tokens original MIT

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when incrementally modernizing a legacy system without a rewrite. Covers characterization tests, seams, the strangler pattern, and sequencing migrations so the system stays shippable throughout.

not rated 26 25d ago A SkillSpector: pass 40 tokens original MIT

refactoring

57

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when improving the structure of code without changing its behavior. Covers safe refactoring sequences, characterization tests, and knowing when to stop.

not rated 26 25d ago A SkillSpector: pass 30 tokens original MIT

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when orienting in an unfamiliar codebase. Produces a map of the architecture, entry points, data flow, conventions, and the parts most likely to surprise you — before any code is changed.

not rated 26 25d ago A SkillSpector: pass 46 tokens original MIT

simple-design

59

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when code has grown hard to hold in your head. Applies complexity limits, dependency reduction, and encapsulation to bring functions and modules back under a readable ceiling.

not rated 26 25d ago A SkillSpector: pass 36 tokens original MIT

system-design

60

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when designing a system or service before implementation. Produces a design covering data model, API surface, failure modes, scaling limits, and the trade-offs that were actually decided.

not rated 26 25d ago A SkillSpector: pass 39 tokens original MIT

aws-cdk

61

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when defining AWS infrastructure with the CDK. Covers construct design, stack organization, environment configuration, testing infrastructure code, and safe deployment.

not rated 26 25d ago A SkillSpector: pass 32 tokens original MIT

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when reducing cloud spend. Covers finding the actual cost drivers, right-sizing, commitment discounts, storage lifecycle, the hidden costs of data transfer and logging, and avoiding false savings.

not rated 26 25d ago A SkillSpector: pass 41 tokens original MIT

aws-serverless

63

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when building serverless systems on AWS. Covers Lambda design, cold starts, event-driven patterns with EventBridge and SQS, idempotency, step functions, and the limits that shape the architecture.

not rated 26 25d ago A SkillSpector: pass 45 tokens original MIT

chaos-engineering

64

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when verifying a system's resilience by injecting controlled failure. Covers hypothesis-driven experiments, blast-radius control, failure injection techniques, and running game days safely.

not rated 26 25d ago A SkillSpector: pass 36 tokens original MIT

ci-cd

65

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex needs its repo

Use when building or fixing a delivery pipeline. Covers pipeline structure, caching, test parallelization, deployment strategies, secrets, and making the pipeline fast enough that people do not route around it.

not rated 26 25d ago A SkillSpector: pass 42 tokens original MIT

cloud-architecture

66

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when designing cloud infrastructure. Covers network topology, identity and least privilege, multi-AZ and multi-region trade-offs, managed versus self-hosted decisions, and designing for cost.

not rated 26 25d ago A SkillSpector: pass 40 tokens original MIT

containers

67

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when building or debugging container images. Covers multi-stage builds, layer caching, image size, non-root users, signal handling, and the security defaults most Dockerfiles get wrong.

not rated 26 25d ago A SkillSpector: pass 38 tokens original MIT

incident-response

68

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use during and after a production incident. Covers triage, mitigation before diagnosis, communication, and blameless postmortems that produce action items someone actually does.

not rated 26 25d ago A SkillSpector: pass 36 tokens original MIT

kubernetes

69

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when deploying to or debugging Kubernetes. Covers workload configuration, resource requests and limits, probes, rollout strategy, networking, and the failure modes that produce CrashLoopBackOff and OOMKilled.

not rated 26 25d ago A SkillSpector: pass 42 tokens original MIT

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when diagnosing network failures: connection refused, timeouts, TLS errors, DNS problems, and intermittent failures. Covers layer-by-layer isolation and the tools that answer each question.

not rated 26 25d ago A SkillSpector: warn 40 tokens original MIT

observability

71

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when instrumenting a system or when an incident cannot be diagnosed from existing telemetry. Covers structured logging, metrics, distributed tracing, SLOs, and alerts that are worth waking someone for.

not rated 26 25d ago A SkillSpector: pass 42 tokens original MIT

site-reliability

72

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when establishing reliability practice. Covers SLOs and error budgets, capacity planning, graceful degradation, load shedding, retry and timeout policy, and the arithmetic of availability.

not rated 26 25d ago A SkillSpector: warn 39 tokens original MIT

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: