A curated library of 137 production-grade skills for Claude and other AI coding agents. Every skill follows one structure, speaks with one voice, and earns its place by changing what the agent does.
FAQ
claude-skills-collection is a Claude Code plugin with 137 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes agent-instructions, agent-memory, hooks. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
$ npx -y skills add nimadorostkar/Claude-Skills-collection --agent claude-code
Repo: nimadorostkar/Claude-Skills-collection
A curated library of 137 production-grade skills for Claude and other AI coding agents.
Every skill follows one structure, speaks with one voice, and earns its place by changing what the agent does.
Catalog ยท Installation ยท Writing a skill ยท Contributing
A skill is a Markdown file that an agent loads when it becomes relevant โ a compact briefing that changes how the agent approaches a task. This repository contains 137 of them, spanning engineering, infrastructure, AI, documents, design, writing, and finance.
They are not prompts, and they are not documentation. A skill is loaded automatically, based on its description, and it must be specific enough to change the output. If it does not, it does not belong here.
skills/backend/api-design/SKILL.md โ loaded when you say "review this endpoint"
skills/data/postgres/SKILL.md โ loaded when you paste an EXPLAIN plan
skills/ai/rag/SKILL.md โ loaded when a retrieval system returns bad answers
Specificity over breadth. A skill that says "write clean code" changes nothing. A skill that says "noUncheckedIndexedAccess is the highest-value flag most codebases are missing: it makes arr[i] return T | undefined, which is the truth" changes the next file the agent writes.
Every skill must alter behavior. The test for inclusion is simple: run the task without the skill, run it with the skill, and compare. If the output is the same, the skill is deleted. This is why the library is 137 skills and not 400.
Constraints, not preferences. "Prefer composition" is advice. "An unlabelled arrow between two boxes conveys almost nothing" is a rule an agent can follow.
The mistake is the content. The most valuable line in most of these skills is the one that names the specific way people get it wrong โ the timestamp at the top of a system prompt that silently disables prompt caching, the total row read as data that doubles a sum, the waitForTimeout that makes an entire E2E suite flaky.
One author, one voice. Consistent structure, consistent terminology, consistent tone. A library that reads like it was assembled from twelve sources is a library nobody trusts.
.
โโโ README.md
โโโ CONTRIBUTING.md
โโโ CHANGELOG.md
โโโ LICENSE
โโโ categories/ One index per category, with a one-line summary of each skill
โโโ docs/
โ โโโ catalog.md Every skill, linked
โ โโโ authoring.md How to write a skill that triggers and works
โ โโโ standards.md The template and the style rules
โ โโโ installation.md Every installation path, in detail
โ โโโ faq.md
โโโ examples/ Worked end-to-end sessions showing skills in use
โโโ templates/
โ โโโ SKILL.md The canonical template
โโโ scripts/
โ โโโ validate.py The check that runs in CI
โโโ skills/
โโโ languages/ python, typescript, go, rust, java-kotlin, โฆ
โโโ development/ code-review, debugging, refactoring, system-design, โฆ
โโโ backend/ api-design, graphql, microservices, caching, โฆ
โโโ frontend/ react, nextjs, accessibility, web-performance, โฆ
โโโ mobile/ ios, react-native, flutter, mobile-release
โโโ devops/ kubernetes, terraform, ci-cd, observability, โฆ
โโโ data/ postgres, database-performance, data-modeling, โฆ
โโโ security/ secure-coding, threat-modeling, supply-chain, โฆ
โโโ testing/ test-strategy, tdd, e2e-playwright, โฆ
โโโ ai/ prompt-engineering, rag, agent-design, โฆ
โโโ agent-tooling/ skill-authoring, hooks, subagents, plugins, โฆ
โโโ finance/ position-sizing, risk-management, backtesting, โฆ
โโโ documents/ word-documents, spreadsheets, pdf, diagrams, โฆ
โโโ design/ visual-design, theming, ui-review, โฆ
โโโ writing/ technical-documentation, changelog, editing, โฆ
โโโ productivity/ deep-research, fact-checking, meeting-notes, โฆ
โโโ business/ competitive-analysis, product-analysis, โฆ
Clone the repository, then link the skills you want into your agent's skills directory.
Everything:
git clone https://github.com/nimadorostkar/claude-skills.git
ln -s "$(pwd)/claude-skills/skills"/*/* ~/.claude/skills/
One category โ recommended. Loading 137 skill descriptions costs context on every session; most people want two or three categories.
ln -s "$(pwd)/claude-skills/skills/backend"/* ~/.claude/skills/
ln -s "$(pwd)/claude-skills/skills/data"/* ~/.claude/skills/
One skill:
cp -r claude-skills/skills/ai/rag ~/.claude/skills/
Per project โ commit the skills your team should share into the repository itself:
mkdir -p .claude/skills
cp -r ~/src/claude-skills/skills/testing/test-strategy .claude/skills/
git add .claude/skills && git commit -m "Add shared test-strategy skill"
See docs/installation.md for other agents and for project-scoped setups.
Skills load themselves. You do not invoke them โ you describe your problem, and the agent loads the skills whose descriptions match.
> this endpoint takes 3 seconds and I think it's the database
โ loads database-performance, postgres
โ asks for EXPLAIN (ANALYZE, BUFFERS) rather than guessing
โ identifies "Rows Removed by Filter: 8,214,502" as the finding
โ proposes a partial index matching both the filter and the sort
โ 3184ms โ 1.8ms
> our RAG system keeps hallucinating
โ loads rag, llm-evaluation
โ measures retrieval recall BEFORE touching the prompt
โ 31 of 100 failures are retrieval, 6 are generation
โ prompt engineering would have addressed 6% of the problem
> review this PR
โ loads code-review, and the language skill for the diff
โ findings ranked: blocking, should fix, consider
โ each with a file, a line, a reason, and a fix
The mechanism is the description field in each skill's frontmatter. It is written in the words a user would actually use โ "the page is slow and it's the database", not "database performance optimization" โ which is why the skills load when they should.
Every skill in this repository is identical in shape:
---
name: skill-name
description: Use when <trigger>. Covers <scope>.
metadata:
category: <category>
version: 1.0.0
tags: [...]
---
# Title
## Purpose What this makes possible, and what failure it prevents.
## When to Use Concrete situations, in the user's vocabulary.
## Capabilities What the skill covers.
## Inputs What it needs from you.
## Outputs What you get.
## Workflow Numbered steps. The order matters.
## Best Practices Rules, not preferences. Each one earns its line.
## Examples Real code or a worked case. Never a toy.
## Notes The non-obvious detail. Version caveats. The gotcha.
The template is in templates/SKILL.md. The rules are in docs/standards.md.
Worked sessions showing skills in use, end to end:
database-performance โ postgres โ a 1,700ร improvementcode-review โ secure-coding, and the finding a scanner cannot makerag โ llm-evaluation, and why the prompt was not the problemThe bar is behavioral difference. A skill is accepted if the agent's output measurably improves when it loads, and rejected if it does not โ however well written it is.
Read CONTRIBUTING.md. In short:
python scripts/validate.py must pass.Why 137 and not 400? Because 263 of them did not change what the agent did. Coverage is not the goal; a skill that adds tokens and no capability is a net negative.
Do I need all of them? No, and you should not install all of them. Every skill's description is loaded so the agent can decide whether to read it. Install the two or three categories you work in.
Will these work with agents other than Claude? The format is a Markdown file with YAML frontmatter. Any agent that supports skills โ or any system that can inject Markdown into context โ can use them. The triggering mechanism is what varies. See docs/installation.md.
How do I stop a skill from loading when I don't want it?
Its description is too broad. Sharpen it, or add an explicit boundary: Do not use for X โ see the y skill. Both are covered in docs/authoring.md.
Is the finance content advice? No. It is methodology โ position sizing, backtesting, risk limits โ and every skill in that category says so explicitly. It is not a recommendation to trade anything.
How is this kept current?
Skills rot. A confidently stated obsolete practice is worse than no skill at all. Each carries a version, and the Notes section is where version caveats live. See CHANGELOG.md.
@nimadorostkar
MIT. Use them, fork them, ship them.
.github/
workflows/
validate.yml
.gitignore
assets/
README.md
categories/
agent-tooling.md
ai.md
backend.md
business.md
data.md
design.md
development.md
devops.md
documents.md
finance.md
frontend.md
languages.md
mobile.md
productivity.md
security.md
testing.md
writing.md
CHANGELOG.md
CONTRIBUTING.md
docs/
authoring.md
catalog.md
faq.md
installation.md
standards.md
examples/
pull-request-review.md
rag-diagnosis.md
README.md
slow-endpoint.md
LICENSE
README.md
scripts/
validate.py
skills/
agent-tooling/
agent-instructions/
SKILL.md
agent-memory/
SKILL.md
hooks/
SKILL.md
plugin-development/
SKILL.md
skill-authoring/
SKILL.md
skill-review/
SKILL.md
slash-commands/
SKILL.md
subagents/
SKILL.md
ai/
agent-design/
SKILL.md
context-engineering/
SKILL.md
fine-tuning/
SKILL.md
llm-cost-optimization/
SKILL.md
llm-evaluation/
SKILL.md
llm-integration/
SKILL.md
mcp-server/
SKILL.md
ml-pipeline/
SKILL.md
model-selection/
SKILL.md
prompt-engineering/
SKILL.md
rag/
SKILL.md
structured-output/
SKILL.md
backend/
api-design/
SKILL.md
background-jobs/
SKILL.md
caching/
SKILL.md
django/
SKILL.md
event-driven-architecture/
SKILL.md
fastapi/
SKILL.md
graphql/
SKILL.md
microservices/
SKILL.md
nestjs/
SKILL.md
realtime-websockets/
SKILL.md
spring-boot/
SKILL.md
business/
competitive-analysis/
SKILL.md
lead-research/
SKILL.md
product-analysis/
SKILL.md
resume/
SKILL.md
user-research/
SKILL.md
data/
data-modeling/
SKILL.md
data-quality/
SKILL.md
database-performance/
SKILL.md
pandas/
SKILL.md
postgres/
SKILL.md
spark/
SKILL.md
design/
brand-guidelines/
SKILL.md
generative-art/
SKILL.md
theming/
SKILL.md
ui-review/
SKILL.md
visual-design/
SKILL.md
development/
architecture-decisions/
SKILL.md
bug-fix-protocol/
SKILL.md
cli-development/
SKILL.md
code-review/
SKILL.md
debugging/
SKILL.md
design-patterns/
SKILL.md
domain-modeling/
SKILL.md
git-workflow/
SKILL.md
legacy-modernization/
SKILL.md
refactoring/
SKILL.md
repository-exploration/
SKILL.md
simple-design/
SKILL.md
system-design/
SKILL.md
devops/
aws-cdk/
SKILL.md
aws-cost-optimization/
SKILL.md
aws-serverless/
SKILL.md
chaos-engineering/
SKILL.md
ci-cd/
SKILL.md
cloud-architecture/
SKILL.md
containers/
SKILL.md
incident-response/
SKILL.md
kubernetes/
SKILL.md
network-troubleshooting/
SKILL.md
observability/
SKILL.md
site-reliability/
SKILL.md
terraform/
SKILL.md
documents/
diagrams/
SKILL.md
document-conversion/
SKILL.md
pdf/
SKILL.md
presentations/
SKILL.md
spreadsheets/
SKILL.md
word-documents/
SKILL.md
finance/
backtesting/
SKILL.md
earnings-analysis/
SKILL.md
market-breadth/
SKILL.md
market-regime/
SKILL.md
options-strategy/
SKILL.md
portfolio-review/
SKILL.md
position-sizing/
SKILL.md
quantitative-analysis/
SKILL.md
risk-management/
SKILL.md
stock-screening/
SKILL.md
technical-analysis/
SKILL.md
trade-journal/
SKILL.md
frontend/
accessibility/
SKILL.md
angular/
SKILL.md
design-systems/
SKILL.md
frontend-architecture/
SKILL.md
nextjs/
SKILL.md
react/
SKILL.md
visual-qa/
SKILL.md
vue/
SKILL.md
web-performance/
SKILL.md
languages/
cpp/
SKILL.md
csharp-dotnet/
SKILL.md
go/
SKILL.md
java-kotlin/
SKILL.md
php/
SKILL.md
python/
SKILL.md
ruby/
SKILL.md
rust/
SKILL.md
shell/
SKILL.md
sql/
SKILL.md
swift/
SKILL.md
typescript/
SKILL.md
mobile/
flutter/
SKILL.md
ios/
SKILL.md
mobile-release/
SKILL.md
react-native/
SKILL.md
productivity/
deep-research/
SKILL.md
fact-checking/
SKILL.md
file-organization/
SKILL.md
meeting-notes/
SKILL.md
web-data-extraction/
SKILL.md
security/
secrets-management/
SKILL.md
secure-coding/
SKILL.md
security-review/
SKILL.md
supply-chain/
SKILL.md
threat-modeling/
SKILL.md
testing/
e2e-playwright/
SKILL.md
performance-testing/
SKILL.md
qa-review/
SKILL.md
test-driven-development/
SKILL.md
test-strategy/
SKILL.md
web-app-testing/
SKILL.md
writing/
changelog/
SKILL.md
editing/
SKILL.md
internal-comms/
SKILL.md
long-form-content/
SKILL.md
technical-documentation/
SKILL.md
templates/
SKILL.mdยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic