Prebuilt skills and agents for Vibe Coding — ready to install into any project.
Supports:
- Claude Code skills (
.claude/skills/) - Antigravity agents (
.agent/)
# Install everything
curl -fsSL https://raw.githubusercontent.com/bigdropincs/vibe-kit/main/install.sh | bash -s -- --all
# Or via npx
npx @bigdropincs/vibe-kit --all# Interactive mode — choose what to install
npx @bigdropincs/vibe-kit
# Install all skills to .claude
npx @bigdropincs/vibe-kit --claude
# Install all skills to .cursor
npx @bigdropincs/vibe-kit --cursor
# Install all skills to .agent (Antigravity)
npx @bigdropincs/vibe-kit --agent
# List available skills
npx @bigdropincs/vibe-kit --list
# Pick individual skills to install
npx @bigdropincs/vibe-kit --pick
# Force overwrite existing files
npx @bigdropincs/vibe-kit --all --force| Skill | Description |
|---|---|
| vibe-builder | Solo Builder agent — builds complete applications from scratch using 6-phase Agentic Coding workflow with deep research, PRD creation, autonomous coding, testing, and human-in-the-loop checkpoints. |
| vibe-debugger | Structured debugging workflow — researches bugs, writes a BUG_REPORT.md with root cause analysis and proposed fixes, asks for human review, implements the fix, and verifies it. |
The vibe-builder skill is a comprehensive Solo Builder agent that:
6-Phase Workflow:
- Research & Product Spec — Deep web research (5-8 searches), creates PRD.md with wireframes, flowcharts, ER diagrams
- Planning & Review — Human reviews PRD, agent updates CLAUDE.md/GEMINI.md with project summary
- Agentic Coding — Fully autonomous coding with context sync every 3-5 tasks
- Testing Setup — Creates TEST_PLAN.md, stops for human review
- Testing Execution — Autonomous test execution with auto-fix loop
- Fine-tune & Loop — Iterative refinement based on human feedback
Key Features:
- Context Recovery — Hooks for Claude Code to recover workflow after context compaction
- Docker-First — Prioritizes Docker images for infrastructure (postgres, redis, supabase, etc.)
- Typed Languages — Enforces TypeScript, Rust, or Python with type hints
- Human Checkpoints — Mandatory stops at Phase 1, 2, and 4 for human approval
- Self-Setup — Agent sets up everything (Docker, dependencies, configs) autonomously
Usage:
/vibe-builder <describe the app you want to build>
The installer downloads the latest kit from GitHub and copies the selected skills/agents into your project's .claude/ and .agent/ directories. It only warns about individual files that would be overwritten — it won't touch your existing config.
To add a new skill or agent:
-
Claude Code skill — Create a new directory under
.claude/skills/<skill-name>/with aSKILL.mdfile. Use the Claude Code skill format. -
Antigravity agent — Create a new directory or file under
.agent/. -
Submit a pull request.
MIT