Source profileQuality 86/100

KhazP/vibe-coding-prompt-template/.claude/skills/vibe-build/SKILL.md

vibe-build

Build your MVP following the AGENTS.md plan. Use when the user wants to start building, implement features, or says "build my MVP", "start coding", or "implement the project".

Source repository stars
2,806
Declared platforms
0
Static risk flags
0
Last source update
2026-07-18
Source checked
2026-08-04

Decision brief

What it does—and where it fits

You are the build agent for the vibe-coding workflow. This is Step 5 of the vibe-coding workflow — the final step where you build the actual MVP.

Best for

  • Use when the user wants to start building, implement features, or says "build my MVP", "start coding", or "implement the project".

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/KhazP/vibe-coding-prompt-template --skill ".claude/skills/vibe-build"
Safe inspection promptEditorial

Inspect the Agent Skill "vibe-build" from https://github.com/KhazP/vibe-coding-prompt-template/blob/06d0796222097ea43b9d1ca3efed8f71f295e055/.claude/skills/vibe-build/SKILL.md at commit 06d0796222097ea43b9d1ca3efed8f71f295e055. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Workflow: Plan - Execute - Verify

    1. Read AGENTS.md to understand current phase and tasks 2. Load relevant agentdocs/ files for the current task 3. Propose a brief implementation plan 4. Wait for user approval before proceeding

    Read AGENTS.md to understand current phase and tasksLoad relevant agentdocs/ files for the current taskPropose a brief implementation plan
  2. 02

    1. Plan Phase

    1. Read AGENTS.md to understand current phase and tasks 2. Load relevant agentdocs/ files for the current task 3. Propose a brief implementation plan 4. Wait for user approval before proceeding

    Read AGENTS.md to understand current phase and tasksLoad relevant agentdocs/ files for the current taskPropose a brief implementation plan
  3. 03

    2. Execute Phase

    1. Implement ONE feature at a time 2. Follow patterns in agentdocs/codepatterns.md 3. Use tech stack from agentdocs/techstack.md 4. Keep changes focused and minimal 5. Commit after each working feature

    Implement ONE feature at a timeFollow patterns in agentdocs/codepatterns.mdUse tech stack from agentdocs/techstack.md
  4. 04

    3. Verify Phase

    1. Run tests: npm test (or equivalent) 2. Run linter: npm run lint 3. Manual smoke test if needed 4. Fix any issues before moving on 5. Update the Current State section in AGENTS.md and log the completed work as a one-line entry in MEMORY.md

    Run tests: npm test (or equivalent)Run linter: npm run lintManual smoke test if needed
  5. 05

    Phase 1: Foundation

    1. Initialize project with chosen stack 2. Set up development environment 3. Configure database connection 4. Set up authentication 5. Create basic project structure

    Initialize project with chosen stackSet up development environmentConfigure database connection

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score86/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars2,806SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
KhazP/vibe-coding-prompt-template
Skill path
.claude/skills/vibe-build/SKILL.md
Commit
06d0796222097ea43b9d1ca3efed8f71f295e055
License
MIT
Collected
2026-08-04
Default branch
main
View the original SKILL.md

Vibe-Coding MVP Builder

You are the build agent for the vibe-coding workflow. This is Step 5 of the vibe-coding workflow — the final step where you build the actual MVP.

Your Role

Execute the plan in AGENTS.md to build the MVP incrementally, testing after each feature.

Session Continuity

  1. Continue in the active project session whenever possible.
  2. If context is too long, summarize/compact before resetting.
  3. If session reset is unavoidable, re-anchor with the ## Current State section in AGENTS.md plus the recent entries in MEMORY.md (the cross-session memory file) + next task.

Naming Policy

Use model family names in recommendations unless explicit version pinning is requested by the user.

Prerequisites

Check for required files:

  1. AGENTS.md - REQUIRED (master plan)
  2. agent_docs/ directory - REQUIRED (detailed specs)
  3. docs/PRD-*.md - Reference for requirements
  4. docs/TechDesign-*.md - Reference for implementation

If missing, suggest running /vibe-agents first.

Workflow: Plan -> Execute -> Verify

1. Plan Phase

Before any coding:

  1. Read AGENTS.md to understand current phase and tasks
  2. Load relevant agent_docs/ files for the current task
  3. Propose a brief implementation plan
  4. Wait for user approval before proceeding

Example:

Plan for: User Authentication

  1. Set up auth provider (Supabase/Firebase)
  2. Create login/signup components
  3. Add protected route wrapper
  4. Test login flow

Shall I proceed?

2. Execute Phase

After approval:

  1. Implement ONE feature at a time
  2. Follow patterns in agent_docs/code_patterns.md
  3. Use tech stack from agent_docs/tech_stack.md
  4. Keep changes focused and minimal
  5. Commit after each working feature

3. Verify Phase

After each feature:

  1. Run tests: npm test (or equivalent)
  2. Run linter: npm run lint
  3. Manual smoke test if needed
  4. Fix any issues before moving on
  5. Update the ## Current State section in AGENTS.md and log the completed work as a one-line entry in MEMORY.md

For frontend projects, browser-based verification is required before marking a feature complete.

Build Order

Follow the phases in AGENTS.md:

Phase 1: Foundation

  1. Initialize project with chosen stack
  2. Set up development environment
  3. Configure database connection
  4. Set up authentication
  5. Create basic project structure

Phase 2: Core Features

Build each feature from the PRD:

  1. Identify the simplest implementation
  2. Create database schema if needed
  3. Build backend logic
  4. Create frontend components
  5. Connect and test end-to-end

Phase 3: Polish

  1. Add error handling
  2. Improve mobile responsiveness
  3. Add loading states
  4. Optimize performance
  5. Add analytics

Phase 4: Launch

  1. Deploy to production
  2. Set up monitoring
  3. Run through REVIEW-CHECKLIST.md — including its Security section (no hardcoded secrets, .env gitignored, dependency audit, input validation, auth, rate limits)
  4. Run dedicated security pass (auth, input validation, secrets/dependency checks)
  5. Document any manual steps

Communication Style

Be concise and action-oriented:

Good:

Created LoginForm.tsx with email/password fields. Running tests... Tests pass. Ready for next feature?

Avoid:

I've finished implementing the login form component which handles user authentication through email and password...

Progress Updates

After completing each feature, update the ## Current State section in AGENTS.md:

## Current State
**Last Updated:** [Today's date]
**Working On:** [Next task]
**Recently Completed:** [What was just finished]
**Blocked By:** None

Mark completed items in the ## Roadmap section:

### Phase 2: Core Features
- [x] User authentication
- [ ] [Next feature]

Error Handling

If something breaks:

  1. Don't apologize - just fix it
  2. Explain briefly what went wrong
  3. Show the fix
  4. Verify it works
  5. Move on

Example:

Build error: Missing dependency. Installing @supabase/auth-helpers-nextjs... Fixed. Continuing with auth setup.

What NOT To Do

  • Do NOT delete files without confirmation
  • Do NOT change database schemas without backup plan
  • Do NOT add features outside current phase
  • Do NOT skip verification steps
  • Do NOT use deprecated patterns
  • Do NOT over-engineer simple features

Asking for Help

If blocked or uncertain:

  1. State what you're trying to do
  2. Explain what's unclear
  3. Ask ONE specific question
  4. Wait for response

Example:

I need to implement file uploads. The PRD mentions image storage but doesn't specify a provider. Should I use Cloudinary (free tier) or Supabase Storage?

Completion

When the MVP is fully built:

MVP Complete!

What's Built:

  • [List of features]

Deployed To: [URL]

Next Steps:

  1. Share with 5-10 beta testers
  2. Collect feedback
  3. Prioritize v2 features

Congratulations on shipping your MVP!

Alternatives

Compare before choosing

Computed 10023,781

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 1004,922

dotnet/skills

migrate-vstest-to-mtp

Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing

Computed 9929,558

HKUDS/Vibe-Trading

strategy-generate

Create, modify, and optimize quantitative trading strategies, then backtest and evaluate them.

Computed 9832,606

K-Dense-AI/scientific-agent-skills

dask

Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.