Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

vibe-build — MVP Build Agent

Executes the plan in AGENTS.md to build your MVP one feature at a time, with verification and progress tracking.

Dev & CodingIntermediate2,843361AI score 9/10Last updated: Jul 18, 2026

What it does

  • Reads AGENTS.md for the current phase, proposes a short implementation plan, and waits for approval before writing code.
  • Implements one feature at a time, following agent_docs/code_patterns.md and tech_stack.md.
  • Verifies each feature with npm test, npm run lint, and browser checks for frontend work, then commits.
  • Updates the ## Current State block, ticks ## Roadmap items in AGENTS.md, and logs one-line entries in MEMORY.md for cross-session continuity.
  • Enforces a four-phase order: foundation → core features → polish → launch, including a security pass against REVIEW-CHECKLIST.md.

Who it's for

  • Users already running the vibe-coding workflow with PRD, TechDesign, and AGENTS.md in place
  • Solo developers who want the agent to stay in scope and stop over-engineering
  • Indie founders shipping a web MVP (Next.js, Supabase, Firebase) fast

Examples

  1. "Start building my MVP" → reads Phase 1 and proposes project init, env setup, and DB connection.
  2. "Implement user authentication" → auth provider setup, login/signup components, protected routes, tests, commit.
  3. "Get ready to launch" → deploy to production, add monitoring, run the security checklist (no hardcoded secrets, .env gitignored, dependency audit).

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/KhazP/vibe-coding-prompt-template/HEAD/.claude/skills/vibe-build/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .claude/skills/vibe-build folder from the GitHub repo KhazP/vibe-coding-prompt-template into my ~/.claude/skills/vibe-build/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/KhazP/vibe-coding-prompt-template.git /tmp/vibe-coding-prompt-template && mkdir -p ~/.claude/skills && cp -r /tmp/vibe-coding-prompt-template/.claude/skills/vibe-build ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/KhazP/vibe-coding-prompt-template.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r vibe-coding-prompt-template/.claude/skills/vibe-build ~/.claude/skills/
  5. To use the whole workflow, copy every folder inside .claude/skills/ (e.g. vibe-agents).
  6. Restart Claude Code and confirm your project has AGENTS.md and agent_docs/ (run /vibe-agents first if not).
  7. Say "start building my MVP" to trigger the skill.