How I indexed 69,000 Claude Code skills (and what I learned doing it)
Adam Lankamer has created an open catalog of Claude Code skills, indexing over 69,000 SKILL.md files. The project aims to improve the discoverability of these skills, which previously lacked a centralized directory or aggregator. The catalog is built using a Python script that crawls multiple public sources to gather and validate the skills.
- ▪The catalog includes skills that are Markdown files with YAML frontmatter for Anthropic's Claude Code agent.
- ▪Lankamer's project addresses the issue of skill discovery, which was previously reliant on social media and random searches.
- ▪The catalog is designed to be open and free, with no fees for skill authors to list their skills.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3949472) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Adam Lankamer Posted on May 24 • Originally published at claudskills.com How I indexed 69,000 Claude Code skills (and what I learned doing it) #ai #opensource #claude #devtools One month ago I started building an open catalog of Claude Code skills. Yesterday it crossed 69,369 indexed SKILL.md files. This post is the engineering story — what I built, what surprised me, and what's free for anyone to use.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).