Claude Code skills collection - code mapping, GTD, knowledge management, and more
npx claudepluginhub durandom/skillsClaude Code skills collection - code mapping, GTD, knowledge management, and more
🚀 A collection of Claude Code skills, agents, commands, and recipes to supercharge your productivity!
This repository contains reusable skills and patterns for Claude Code that help with:
| Component | Description |
|---|---|
| 🗺️ Code Mapping | Navigate codebases like a pro with hierarchical documentation |
| ✅ GTD | Getting Things Done task management via CLI |
| 📂 PARA | Organize notes by actionability (Projects/Areas/Resources/Archive) |
| 🐙 GitHub | GitHub CLI operations for issues, PRs, reviews, and CI |
| 🕷️ crawl4ai | Web crawling and data extraction via crwl CLI |
| 📝 Meeting Notes | Sync meeting transcripts from Google Calendar + Gemini |
| 📖 Recipes | Reusable patterns and guides for AI-assisted development |
| ⚡ Commands | Slash commands like /commit, /catchup, /research |
"Where is this thing? What does this do?" — Every developer, ever
Hierarchical documentation with 4 zoom levels:
| Level | Purpose | Example |
|---|---|---|
| 📋 L0 | System overview | Architecture, entry points |
| 🏘️ L1 | Domain modules | auth/, api/, core/ |
| 📦 L2 | Individual modules | Classes, key functions |
| 🔍 L3 | Source code | The actual code |
Quick Start:
# 🔧 Generate code maps from source
uv run python skills/code-mapping/scripts/code_map.py generate src/ docs/map/
# ✅ Validate existing maps
uv run python skills/code-mapping/scripts/code_map.py validate docs/map/
🧘 "Mind like water" — David Allen
A CLI-based task management system following the GTD methodology:
📥 Capture → 🔍 Clarify → 🗂️ Organize → 🔄 Reflect → ▶️ Engage
Features:
Quick Start:
# 📥 Capture a new task
./skills/gtd/scripts/gtd capture "Review PR #42"
# 📋 List tasks by context
./skills/gtd/scripts/gtd list --context focus --energy high
# 🌅 Start your daily review
./skills/gtd/scripts/gtd daily
🗂️ Organize by actionability, not topic
The PARA method for organizing notes into four categories based on when you'll need them:
| Category | Purpose |
|---|---|
| 📁 Projects | Active goals with deadlines |
| 🔄 Areas | Ongoing responsibilities |
| 📚 Resources | Topics of interest |
| 🗄️ Archive | Inactive items |
Standalone knowledge organization with CLI for project management, folder structure, and archiving.
🔧 Unified interface for GitHub operations
GitHub CLI operations using gh:
🌐 Extract web content as clean markdown
Web crawling and data extraction using the crwl CLI. Handles static sites, JavaScript-rendered SPAs, and structured data extraction.
🎙️ Sync and manage meeting transcripts
Syncs Google Calendar meetings with Gemini transcripts, organizing them into a meetings directory with tag-based categorization.
/commit 📝Smart git commits with emoji conventional format:
/commit # 🔄 Stage all, run hooks, commit
/commit staged # 📋 Only commit staged changes
/commit amend # ✏️ Fix the last commit
/commit split # 🔀 Interactive multi-commit
/commit dry-run # 👀 Preview without committing
/catchup 🔄Session restart orientation:
/catchup # 📊 Review recent changes
/catchup HEAD~3 # 🕐 Review specific commit
/research 🔬Parallel research with synthesized output:
/research "topic" # 📊 Standard research
/research "topic" --quick # ⚡ Quick overview
/research "topic" --thorough # 🔍 Deep dive
Reusable patterns for better development — now a proper skill with router and categorized references.