Vibe Skill banner
aakashdhar aakashdhar

Vibe Skill

Development community

Description

vibe-* is a collection of Claude Code CLI skills. Each skill is a structured instruction set that tells Claude Code exactly what to do at a specific moment in a project — how to plan it, build it, review it, test it, deploy it, and hand it off.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

vibe-* skills

A framework of 27 Claude Code skills that covers the complete software development lifecycle — from first idea to client sign-off.

Built by **Aakash Dhar** at [BetaCraft](https://betacraft.in) for production AI-assisted development workflows.


What this is

vibe-* is a collection of Claude Code CLI skills. Each skill is a structured instruction set that tells Claude Code exactly what to do at a specific moment in a project — how to plan it, build it, review it, test it, deploy it, and hand it off.

Every skill follows the same principles:

  • Grounded in real files — reads your actual TASKS.md, SPEC.md, DECISIONS.md, git history. Nothing invented.
  • One trigger, complete output — type feature: add dark mode and get a spec, plan, task list, and code.
  • Phase-gated — skills enforce quality gates. A phase cannot proceed until review passes.
  • Two audiences — client-facing documents are always plain English. Developer documents are technical and precise.

Installation

git clone https://github.com/aakashdhar/vibe-skill.git /tmp/vibe-skill && mv /tmp/vibe-skill/vibe-* ~/.claude/skills/ && rm -rf /tmp/vibe-skill

Restart Claude Code. All 26 skills are active immediately.

**Update skills anytime:**

cd /tmp && git clone https://github.com/aakashdhar/vibe-skill.git && mv /tmp/vibe-skill/vibe-* ~/.claude/skills/ && rm -rf /tmp/vibe-skill

Usage

Skills trigger automatically from natural language. No slash commands needed.


Skills included (26)

**Plan**

  • vibe-brainstorm — turn ideas into a buildable brief
  • vibe-architect — plan code structure before writing
  • vibe-agent — design multi-agent AI systems
  • vibe-spec-review — audit specs before coding

**Build**

  • vibe-new-app — build a new app from scratch
  • vibe-add-feature — add a feature to existing codebase
  • vibe-change-spec — modify requirements mid-build
  • vibe-fix-bug — diagnose and fix bugs
  • vibe-review — evide