Claude Code Skills
Developer workflow skills for Anthropic's Claude Code. Install the full framework or individual skills via the marketplace.
Overview
Skills are structured configuration files that guide AI assistants through complex operational procedures. They encode best practices, workflows, and domain knowledge that can be shared across projects.
Quick Start
# 1. Add the marketplace (once)
/plugin marketplace add https://github.com/dohernandez/claude-skills.git
# 2. Install full framework (23 skills)
/plugin install framework@dohernandez-claude-skills
# 3. Initialize - REQUIRED (copies skills to your project)
claude --init
# 4. Configure - REQUIRED (sets up skills for your project)
/framework configure
After these steps, skills are available as /commit, /tdd, /linear, etc.
Installation Flow
┌─────────────────────────────────────────────────────────────┐
│ 1. /plugin marketplace add .../skills.git │
│ ↓ │
│ 2. /plugin install framework@dohernandez-claude-skills │
│ (Plugin cached at ~/.claude/plugins/cache/) │
│ ↓ │
│ 3. claude --init │
│ (Setup hook copies skills to project/.claude/skills/) │
│ ↓ │
│ 4. /framework configure │
│ (Configure each skill that needs it) │
│ ↓ │
│ Skills available as: /commit, /linear, /tdd, etc. │
└─────────────────────────────────────────────────────────────┘
Available Plugins (24)
Install the full framework or any individual skill:
| Plugin | Description |
|---|
framework | All 23 skills - Complete developer workflow |
arch | Architecture patterns, layer boundaries, and structural validation |
bugfix | Systematic bug investigation with root cause analysis |
code | Code style enforcement and project conventions |
commit | Git commits with conventional commit format |
create-skill | Scaffold new Claude Code skills |
debugger | Production issue debugging through logs and alerts |
deploy | Deployment workflow with environment selection |
deploy-verify | Post-deployment success verification |
developer | Development orchestration with architecture awareness |
docs-refresh | Generate and refresh documentation from source |
domain-expert | Domain knowledge and business terminology |
linear | Linear issue creation and management |
pr-create | Create GitHub pull requests with standardized format |
pr-merge | Merge pull requests with CI validation |
setup | Project setup and environment configuration |
slack | Slack notifications and team integrations |
task | Task execution with validation checkpoints |
test | Smart test runner with watch mode and coverage |
tdd | Test-driven development: tests first, then code |
workflow | Development workflow orchestration |
workflow-finish | Cleanup branches and worktrees after PR merge |
workflow-setup | Setup git worktree for ticket-based development |
Same result: Installing framework = Installing all 23 individual plugins
Installation Options
Option A: Install Full Framework (23 skills)
# 1. Add the marketplace (once)
/plugin marketplace add https://github.com/dohernandez/claude-skills.git
# 2. Install the framework plugin
/plugin install framework@dohernandez-claude-skills
# 3. Initialize - REQUIRED (copies skills to project)
claude --init
# 4. Configure - REQUIRED (configures all skills that need it)
/framework configure
What gets installed:
your-project/
├── .claude/
│ ├── skills/ # All 23 skills
│ │ ├── commit/
│ │ ├── linear/
│ │ ├── tdd/
│ │ └── ...
│ ├── hooks/ # Hook configurations
│ ├── scripts/ # Validation scripts
│ └── Taskfile.yaml # Task runner
Skills are invoked directly: /commit, /linear, /tdd, etc.
Option B: Install Individual Skills
# 1. Add the marketplace (if not already added)
/plugin marketplace add https://github.com/dohernandez/claude-skills.git
# 2. Install specific skill(s)
/plugin install commit@dohernandez-claude-skills
/plugin install tdd@dohernandez-claude-skills
# 3. Initialize - REQUIRED (copies skills to project)
claude --init
# 4. Configure - REQUIRED for skills that need it
/tdd configure
What gets installed:
your-project/
├── .claude/
│ └── skills/
│ ├── commit/
│ └── tdd/
Skills are invoked directly: /commit, /tdd
Required Steps Summary