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

react

97

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing or reviewing React. Covers component and state design, hook correctness, memoization that is actually needed, data fetching, and the render behavior behind most React performance problems.

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

visual-qa

98

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when verifying that a UI renders correctly. Covers visual regression testing, responsive checks across breakpoints, cross-browser verification, and screenshot-based review of an implementation against a design.

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

vue

99

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when building Vue 3 applications. Covers the Composition API, reactivity fundamentals, composables, Pinia state management, and the reactivity mistakes that cause silent update failures.

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

web-performance

100

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when improving page load or runtime performance. Covers Core Web Vitals, bundle and asset optimization, rendering strategy, caching headers, and measuring on real hardware rather than a fast laptop.

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

cpp

101

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing modern C++ (17/20/23). Covers RAII, smart-pointer ownership, move semantics, ranges, concepts, and eliminating undefined behavior with sanitizers.

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

csharp-dotnet

102

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when building on .NET 8+ with C# 12. Covers nullable reference types, records, async/await correctness, minimal APIs, dependency injection, and EF Core query performance.

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

go

103

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing Go services, CLIs, or libraries. Covers idiomatic error wrapping, goroutine and context discipline, interface design, table-driven tests, and the race detector.

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

java-kotlin

104

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing modern Java (17+) or Kotlin on the JVM. Covers records, sealed interfaces, pattern matching, coroutines, null safety, and JVM performance and memory tuning.

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

php

105

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing PHP 8.2+ or working in Laravel and Symfony codebases. Covers strict types, enums, readonly classes, attributes, PSR standards, and static analysis with PHPStan.

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

python

106

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing, reviewing, or modernizing Python 3.11+ code. Produces fully type-annotated modules, async I/O, dataclasses and protocols, pytest suites, and a lint/type gate built on ruff and mypy --strict.

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

ruby

107

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing Ruby or working in Rails codebases. Covers idiomatic object design, service objects, ActiveRecord query performance, RSpec structure, and RuboCop-clean style.

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

rust

108

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing Rust or resolving borrow-checker, lifetime, and trait errors. Covers ownership models, error handling with thiserror and anyhow, async with Tokio, and safe abstractions over unsafe code.

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

shell

109

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing Bash scripts or command-line automation. Covers strict mode, safe quoting, argument parsing, trap-based cleanup, portability, and ShellCheck-clean scripts.

not rated 26 25d ago C 34 tokens original MIT

sql

110

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing or optimizing SQL. Covers query planning, indexing strategy, window functions, CTEs, transaction isolation, and reading EXPLAIN output.

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

swift

111

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing Swift for iOS, macOS, or server-side. Covers value semantics, optionals, protocol-oriented design, structured concurrency with async/await and actors, and SwiftUI state management.

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

typescript

112

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when writing or hardening TypeScript in strict mode. Covers advanced types, discriminated unions, runtime validation at trust boundaries, generics, and removing any from an existing codebase.

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

flutter

113

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when building Flutter applications. Covers widget composition, state management, build-method performance, platform channels, and the rendering behavior behind most Flutter jank.

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

ios

114

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when building native iOS applications. Covers SwiftUI architecture, state management, navigation, networking, persistence, background behavior, and App Store submission requirements.

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

mobile-release

115

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when preparing a mobile app for release. Covers versioning, signing, staged rollout, crash monitoring, store review requirements, and rollback when an update goes wrong.

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

react-native

116

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when building cross-platform mobile apps with React Native or Expo. Covers navigation, platform differences, list performance, native modules, offline behavior, and release builds.

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

deep-research

117

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when researching a question that requires multiple sources. Covers question decomposition, source evaluation, tracking what is known versus assumed, and producing a synthesis with honest confidence levels.

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

fact-checking

118

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when verifying claims. Covers tracing a claim to its origin, evaluating sources, detecting laundered statistics, and reporting a verdict with the evidence rather than an assertion.

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

file-organization

119

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when organizing, deduplicating, or cleaning up files. Covers safe classification and renaming, finding true duplicates, reclaiming space, and never destroying data during a cleanup.

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

meeting-notes

120

nimadorostkar/Claude-Skills-collection

Skill Claude CodeCodex

Use when turning a meeting, call, or transcript into notes. Covers extracting decisions and actions rather than transcribing discussion, and producing something that is useful a month later.

not rated 26 25d ago A SkillSpector: pass 38 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: