Internal engineering tools for vibe
npx claudepluginhub cuongtl1992/vibe-skillsAI-first engineering workflow with BDD living documentation. Lean PRD writing, Gherkin generation, and wireframe mockups for Product and Engineer roles.
Production-ready workflow orchestration with 80 focused plugins, 185 specialized agents, and 153 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
Share bugs, ideas, or general feedback.
A community-driven collection of skills for Claude Code. Easily install and manage AI coding assistant skills organized by technology stack.
# macOS/Linux
curl -sSL https://raw.githubusercontent.com/cuongtl1992/vibe-skills/main/scripts/install.sh | bash
# Or with Go
go install github.com/cuongtl1992/vibe-skills/cmd/vibe-skills@latest
# macOS (Apple Silicon)
curl -L https://github.com/cuongtl1992/vibe-skills/releases/latest/download/vibe-skills_darwin_arm64.tar.gz | tar xz
sudo mv vibe-skills /usr/local/bin/
# macOS (Intel)
curl -L https://github.com/cuongtl1992/vibe-skills/releases/latest/download/vibe-skills_darwin_amd64.tar.gz | tar xz
sudo mv vibe-skills /usr/local/bin/
# Linux (amd64)
curl -L https://github.com/cuongtl1992/vibe-skills/releases/latest/download/vibe-skills_linux_amd64.tar.gz | tar xz
sudo mv vibe-skills /usr/local/bin/
# Linux (arm64)
curl -L https://github.com/cuongtl1992/vibe-skills/releases/latest/download/vibe-skills_linux_arm64.tar.gz | tar xz
sudo mv vibe-skills /usr/local/bin/
Invoke-WebRequest -Uri https://github.com/cuongtl1992/vibe-skills/releases/latest/download/vibe-skills_windows_amd64.zip -OutFile vibe-skills.zip
Expand-Archive vibe-skills.zip -DestinationPath .
# Add to PATH or move to a directory in PATH
cd your-project
vibe-skills init
This creates a .vibe-skills.yaml config file in your project.
# Install from config file
vibe-skills install
# Install specific skills
vibe-skills install commit-convention code-reviewer
# Install all skills from a stack
vibe-skills install --stack dotnet
# Install multiple stacks
vibe-skills install --stack common,dotnet,database
# Install all available skills
vibe-skills install --all
# List all skills
vibe-skills list
# List skills in a specific stack
vibe-skills list --stack dotnet
# List installed skills only
vibe-skills list --installed
vibe-skills search "database"
vibe-skills search "review"
# Update all installed skills to latest version
vibe-skills update
# Update specific skill(s)
vibe-skills update code-reviewer
vibe-skills update code-reviewer sqlserver-expert
vibe-skills remove commit-convention
vibe-skills self-update
# Use skills from develop branch (pre-release testing)
vibe-skills list --branch develop
vibe-skills install commit-convention --branch develop
# Use skills from a specific tag/version
vibe-skills list --ref v1.0.0
vibe-skills install --ref v1.0.0
.vibe-skills.yamlCreate in your project root:
# Optional: Use a specific branch/ref for this project
registry:
branch: develop # or use 'ref: v1.0.0' for a specific version
skills:
# Common skills for all projects
- common/commit-convention
- common/code-reviewer
# Stack-specific skills
- dotnet/clean-architecture
- dotnet/ef-core
- database/sql-optimization
~/.vibe-skills/config.yamlSet default branch for all projects:
registry:
branch: main # default branch to use
--branch, --ref) - highest priority.vibe-skills.yaml)~/.vibe-skills/config.yaml)main branch| Skill | Description |
|---|---|
commit-convention | Conventional commit message format |
code-reviewer | Code review checklist and guidelines |
More skills coming soon! Contributions welcome.
We welcome contributions! See CONTRIBUTING.md for guidelines.
skills/<stack>/<skill-name>/SKILL.md file with your skill content./scripts/generate-registry.sh to update the registrySee docs/creating-skills.md for detailed instructions.