vibefast-cli
v1.3.6
Published
CLI for installing VibeFast features into your monorepo
Maintainers
Readme
VibeFast CLI
CLI for bootstrapping and extending VibeFast projects (Expo + Next.js) with licensed feature recipes.
Requirements
- Node.js >= 20.10.0
- pnpm (recommended)
- Git
Install
npm i -g vibefast-cli
# or
pnpm add -g vibefast-cliQuick Start
# Authenticate
vf login --token YOUR_LICENSE_TOKEN
# Initialize a project
vf init
# List available features
vf list
# Add a feature (native by default)
vf add chatbot
# Add integrations (or select during vf init)
vf add posthog --target native
vf add sentry --target native
# Add web payments (Convex or Supabase)
vf add stripe --target web
vf add lemonsqueezy --target webKey Concepts
- Recipes are delivered remotely via the VibeFast worker (no offline fallback).
- Feature installs are tracked in .vibefast/journal.json.
- Project signature lives at .vibefast/starter.json.
- Integrations (PostHog/Sentry) can be selected during
vf initor added later viavf add.
Documentation
- docs/quickstart.md
- docs/commands.md
- docs/architecture.md
- docs/recipes.md
- docs/troubleshooting.md
- docs/contributing.md
