Claude Code Skills·Claude Skills·The open SKILL.md registry for Claude
ClaudSkillsLearn › Migrating from awesome-claude-code

Migrating from awesome-claude-code to ClaudSkills

Published 23 May 2026 · 5 min read · For developers using community catalogs to discover Claude Code skills

If you've been finding Claude Code skills via awesome-list READMEs on GitHub — awesome-claude-code, awesome-anthropic, or any of the curated lists that appear when you search "Claude skill" — here's a practical guide to using ClaudSkills alongside or instead of them. Not a takedown of awesome-lists; they're great. Just a different shape that solves different problems.

TL;DR. Awesome-lists are hand-curated READMEs (~100-500 entries each, weekly-ish updates). ClaudSkills is an automated catalog mining 26 sources nightly (69,000+ admitted skills, deterministic admission, programmatic dataset access). Pick the one that matches what you're doing: casual browsing → awesome-list; search by category/tag/use-case → ClaudSkills; build something that ingests a catalog → ClaudSkills' /data/skills.json.

What awesome-lists do well

The awesome-list format earned its popularity for good reasons. It's lightweight (just a README), trustworthy (the maintainer's personal pick), browsable on phones via GitHub mobile, and most importantly — every entry is human-vouched by a real maintainer who knows the ecosystem. If you trust the curator's taste, you can find a great starting set in ~5 minutes.

What they don't do well, by design:

What ClaudSkills does well

ClaudSkills started as a complement, not a replacement. The architecture optimizes for different things:

Practical migration paths

Path 1: "I was just browsing for inspiration"

Replace your awesome-list bookmark with one of these ClaudSkills entry points:

Add the RSS feeds to Feedly / dev.to / Inoreader. New skills land in your reader without manual checking.

Path 2: "I was looking for a specific use-case"

ClaudSkills has 10 hand-curated use-case bundles that group skills by job-to-be-done rather than by category. Map your awesome-list section headers to these URLs:

If you were looking under…Go to
"Security" / "Audits"/use-case/security-audit/
"Code review"/use-case/code-review/
"Content / Writing"/use-case/content-writing/
"Cold email / Outreach"/use-case/cold-outreach/
"Data analysis"/use-case/data-analysis/
"DevOps / Infrastructure"/use-case/devops-automation/
"Customer support"/use-case/customer-support/
"SEO / Marketing"/use-case/seo-research/
"Social media"/use-case/social-media/
"Testing"/use-case/test-generation/

Path 3: "I was building an indexer / aggregator that scrapes catalogs"

Don't scrape ClaudSkills — fetch /data/skills.json directly. The full catalog (slug, name, description, category, sub-category, tags, daily_eligible flag, author, license, source URL) is a single JSON file.

# Python — fetch + filter to Sales/security daily_eligible skills
import json, urllib.request

raw = urllib.request.urlopen('https://claudskills.com/data/skills.json').read()
catalog = json.loads(raw)['skills']

elite = [s for s in catalog
         if s.get('daily_eligible')
         and s.get('category') in {'sales', 'security'}]

print(f'{len(elite)} daily-eligible skills in sales+security')

For per-skill raw markdown, fetch /skills/<slug>/SKILL.md — served via Cloudflare R2 with appropriate caching headers.

Path 4: "I was an awesome-list maintainer myself"

Two paths that don't conflict:

  1. Keep maintaining your list. ClaudSkills' miner crawls awesome-list READMEs as one of its 26 sources, so anything you curate gets ingested automatically. Your hand-vouched picks bubble up to higher quality_pro scores anyway because awesome-list inclusion correlates with structural authoring discipline.
  2. Submit your list's standouts directly. The Submit form takes a GitHub URL pointing at a SKILL.md file. Useful for new skills you want indexed within ~12 hours rather than waiting for the next awesome-list-README crawl pass.

Honest caveats

ClaudSkills isn't a strict superset of awesome-lists. Some real trade-offs:

How awesome-list maintainers can crosswalk content

If you maintain an awesome-list and want to add a "browse the full catalog" footer pointing at ClaudSkills, this is the canonical URL pattern:

## Browse the full catalog

For programmatic access or filtering beyond this list, see
[claudskills.com](https://claudskills.com/) — open catalog of
69,000+ admitted SKILL.md files, mined nightly from 26 public
sources. Use cases:
[security audits](https://claudskills.com/use-case/security-audit/) ·
[code review](https://claudskills.com/use-case/code-review/) ·
[cold outreach](https://claudskills.com/use-case/cold-outreach/) ·
[full list](https://claudskills.com/use-case/).

Reverse direction: ClaudSkills is happy to add awesome-list URLs as "Related external" links from category pages. Email us if you maintain a Claude/Anthropic-ecosystem awesome-list and want to be cross-linked.

Share on X Share on LinkedIn Submit to HN

Related reading