Quick Start
From zero to shipping in 5 minutes. No yak shaving required.
╔═══════════════════════════════════════════════════════╗
║ _ _ _ __ _____ _ ║
║ | | ___ __ _ __| | ___ __| | \ \ / /_ _| |__ ║
║ | | / _ \ / _` |/ _` |/ _ \/ _` | \ V / | || '_ \ ║
║ | |__| (_) | (_| | (_| | __/ (_| | | | | || |_) | ║
║ |_____\___/ \__,_|\__,_|\___|\__,_| |_| |___|_.__/ ║
║ ║
║ Bad vibes · Clean code · Solid infra · Sharted loads ║
╚═══════════════════════════════════════════════════════╝Step 1: Create a New Project
The lv create command scaffolds a complete project with all framework assets pre-configured:
# Create a new fullstack project
lv create my-app --stack fullstack
# Or use the interactive wizard
lv create my-app --wizardStack options
fullstack, api, frontend, cli, library. Each includes appropriate DevCycles and configuration.Step 2: Enter the Project
cd my-app
code . # Open in VS Code for best experienceStep 3: Run Your First DevCycle
DevCycles are the core of Loaded Vibes. Start with the initialization cycle to set up your environment:
# Run the initialization DevCycle
lv devcycle run init
# Watch the magic happen
lv dashboardDashboard
Step 4: Scaffold Your Features
Now that initialization is complete, scaffold your first feature using the scaffolding DevCycle:
# Scaffold a new feature
lv devcycle run scaffold --feature user-authentication
# The orchestrator will:
# 1. Generate boilerplate code
# 2. Create test stubs
# 3. Update project documentation
# 4. Commit with conventional messageStep 5: Ship It
When you're ready to deploy, the deploy DevCycle handles everything:
# Run pre-deployment checks
lv devcycle run validate
# Deploy to your environment
lv devcycle run deploy --env productionWhat Just Happened?
In those few commands, the framework:
Generated specs
PRD and tech requirements with EARS notation
Scaffolded code
Boilerplate following your stack conventions
Created tests
Unit and integration test stubs
Logged everything
NDJSON execution summaries for CI
Explore More
You're now ready to dive deeper. Here's where to go next:
- DevCycles — Learn about all 18 development cycles
- CLI Reference — Full command documentation
- Customization — Make the framework yours
Pro tip: Run lv hint anytime for contextual help based on your current project state. It's like having a senior dev who never gets annoyed at your questions.