Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
10k-digital avatar

Lovable

  • 273 installs
  • 15 repo stars
  • Updated June 10, 2026
  • 10k-digital/lovable-claude-code

lovable is a Claude Code skill that helps agents work on Lovable.dev projects, mapping GitHub-synced files vs Supabase backend changes that require exact Lovable prompts.

About

lovable is a Claude Code skill for working on Lovable.dev projects while respecting Lovable's deployment model. It detects whether a project is Vite SPA or TanStack Start, explains which files sync automatically via GitHub and which backend changes need a Lovable prompt, and supplies exact copy-paste prompts for edge functions, migrations, tables, RLS policies, and storage buckets. A developer uses it so Claude Code edits and Supabase backend changes land correctly in a Lovable project.

  • Integration skill for working on Lovable.dev projects with Claude Code via GitHub sync
  • Detects Vite SPA vs TanStack Start architecture and gives exact Lovable prompts for backend operations
  • Maps which files auto-sync vs which changes (edge functions, migrations, RLS, storage) need a Lovable prompt

Lovable by the numbers

  • 273 all-time installs (skills.sh)
  • Ranked #510 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

lovable capabilities & compatibility

Capabilities
lovable integration · supabase deploy · migration management
Works with
supabase · github
Use cases
devops · api development · database
From the docs

What lovable says it does

This skill enables Claude Code to work effectively with Lovable.dev projects while respecting Lovable's deployment requirements.
SKILL.md
Provides exact Lovable prompts for backend operations that can't be done via GitHub alone.
SKILL.md
npx skills add https://github.com/10k-digital/lovable-claude-code --skill lovable

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs273
repo stars15
Last updatedJune 10, 2026
Repository10k-digital/lovable-claude-code

What it does

Work on Lovable.dev projects in Claude Code and generate the exact Lovable prompts for backend changes.

Who is it for?

developers using Claude Code on Lovable.dev projects with Supabase backends

Skip if: non-Lovable projects or backends outside Lovable Cloud / Supabase

When should I use this skill?

working with a Lovable.dev project, deploying edge functions, or applying database migrations

What you get

Frontend edits sync via GitHub and backend changes ship through the correct copy-paste Lovable prompts.

By the numbers

  • supports 2 architectures (Vite SPA, TanStack Start)

Files

SKILL.mdMarkdownGitHub ↗

Lovable Integration Skill

This skill enables Claude Code to work effectively with Lovable.dev projects while respecting Lovable's deployment requirements.

When to Use This Skill

Activate when:

  • User mentions "Lovable" or "lovable.dev"
  • Project has supabase/ directory with Edge Functions
  • User asks to deploy edge functions
  • User creates database migrations
  • User asks about Lovable Cloud or backend deployment
  • Project appears to be a Lovable project (React + Supabase structure)

Project Architecture Types

Lovable supports two architectures. Always detect which one you're working with before giving advice.

Detecting Architecture

Check the root directory of the user's project:

  • app.config.ts present → TanStack Start (new, SSR — post-April 2026)
  • vite.config.ts present → Vite SPA (legacy, CSR — pre-April 2026)

Both are fully supported. Old projects remain on Vite and receive no forced migration.

---

Vite SPA Architecture (Legacy)

Projects created before April 2026. Client-side rendering only.

What Syncs Automatically (Vite SPA)

✅ Edit freely and push to main:

  • src/ - All React components, pages, hooks, utils
  • public/ - Static assets
  • Config files - vite.config.ts, tailwind.config.js, tsconfig.json
  • package.json - Dependencies
  • supabase/functions/*/index.ts - Edge Function code (not deployment)
  • supabase/migrations/*.sql - Migration files (not application)

What Requires Lovable Deployment (Vite SPA)

⚠️ After editing, provide Lovable prompt:

Change TypeLovable Prompt
Edge Function code"Deploy the [name] edge function"
All Edge Functions"Deploy all edge functions"
New migration file"Apply pending Supabase migrations"
New table needed"Create a [name] table with columns: [list]"
RLS policy"Enable RLS on [table] allowing [who] to [what]"
Storage bucket"Create a [public/private] bucket called [name]"
Secret/env varManual: Cloud → Secrets → Add

---

TanStack Start Architecture (New Projects)

Projects created after April 2026. Full server-side rendering (SSR) via TanStack Start.

Key Differences from Vite SPA

  • Routes are file-based in app/routes/ (not React Router in src/App.tsx)
  • Config file is app.config.ts (not vite.config.ts)
  • Server functions (createServerFn) let server-side logic live directly in component files — no edge function needed for simple server logic
  • Files named *.server.ts are server-only and never sent to the browser
  • Pages are rendered as complete HTML on the server before reaching the browser

What Syncs Automatically (TanStack Start)

✅ Edit freely and push to main:

  • app/ - All routes, components, server functions, layouts
  • app/routes/ - File-based route pages
  • public/ - Static assets
  • app.config.ts, tailwind.config.js, tsconfig.json - Config files
  • package.json - Dependencies
  • app/**/*.server.ts - TanStack server functions (auto-deploys, no Lovable prompt needed)
  • supabase/functions/*/index.ts - Supabase Edge Function code (not deployment)
  • supabase/migrations/*.sql - Migration files (not application)

What Requires Lovable Deployment (TanStack Start)

⚠️ After editing, provide Lovable prompt:

Change TypeLovable Prompt
Supabase Edge Function code"Deploy the [name] edge function"
All Supabase Edge Functions"Deploy all edge functions"
New migration file"Apply pending Supabase migrations"
New table needed"Create a [name] table with columns: [list]"
RLS policy"Enable RLS on [table] allowing [who] to [what]"
Storage bucket"Create a [public/private] bucket called [name]"
Secret/env varManual: Cloud → Secrets → Add
Note: TanStack server functions (createServerFn) are not Supabase Edge Functions. They live in app/ and deploy automatically via GitHub sync — no Lovable prompt needed. Only supabase/functions/ requires manual deployment.

TanStack Start File Structure

project/
├── app/                          # ✅ Safe - auto-syncs
│   ├── routes/                   # File-based routing
│   │   ├── __root.tsx            # Root layout
│   │   ├── index.tsx             # Home page (/)
│   │   └── [route].tsx           # Other pages
│   ├── components/               # Shared UI components
│   ├── lib/                      # Utilities and helpers
│   └── *.server.ts               # ✅ Server functions (auto-deploy)
├── app.config.ts                 # TanStack Start config
├── public/                       # Static assets
├── supabase/
│   ├── functions/                # ✅ Edit code, ⚠️ needs deploy
│   └── migrations/               # ✅ Create files, ⚠️ needs apply
└── CLAUDE.md                     # Project context

---

Core Concept (Both Architectures)

Lovable uses two-way GitHub sync on the main branch only:

  • Frontend and server-side code (including TanStack server functions) sync automatically
  • Supabase Edge Functions and database migrations require Lovable prompts after code changes

Response Format

When backend deployment is needed, always output:

📋 **LOVABLE PROMPT:**
> "[exact prompt to copy-paste]"

For destructive operations, add:

⚠️ **Warning**: [explanation of risk]

File Structure Reference

Vite SPA (Legacy — vite.config.ts present)

project/
├── src/                          # ✅ Safe - auto-syncs
│   ├── components/
│   ├── pages/
│   ├── hooks/
│   ├── lib/
│   └── integrations/supabase/
│       ├── client.ts             # ⚠️ Has Supabase URLs
│       └── types.ts
├── supabase/
│   ├── functions/                # ✅ Edit code, ⚠️ needs deploy
│   │   └── [function-name]/
│   │       └── index.ts
│   ├── migrations/               # ✅ Create files, ⚠️ needs apply
│   │   └── YYYYMMDDHHMMSS_*.sql
│   └── config.toml               # ⚠️ Lovable Cloud manages
├── .env                          # Local only - Lovable ignores
└── CLAUDE.md                     # Project context

TanStack Start (New — app.config.ts present)

project/
├── app/                          # ✅ Safe - auto-syncs
│   ├── routes/                   # File-based routing
│   │   ├── __root.tsx            # Root layout
│   │   ├── index.tsx             # Home route (/)
│   │   └── [name].tsx            # Named routes
│   ├── components/               # Shared components
│   ├── lib/                      # Utilities
│   ├── integrations/supabase/    # Supabase client + types
│   └── *.server.ts               # ✅ Server functions (auto-deploy, no prompt needed)
├── app.config.ts                 # TanStack Start config
├── public/                       # Static assets
├── supabase/
│   ├── functions/                # ✅ Edit code, ⚠️ needs deploy via Lovable
│   │   └── [function-name]/
│   │       └── index.ts
│   ├── migrations/               # ✅ Create files, ⚠️ needs apply via Lovable
│   │   └── YYYYMMDDHHMMSS_*.sql
│   └── config.toml               # ⚠️ Lovable Cloud manages
├── .env                          # Local only - Lovable ignores
└── CLAUDE.md                     # Project context

Backend Types

Lovable Cloud

  • Backend managed entirely by Lovable
  • No Supabase dashboard access
  • All operations via Lovable prompts
  • Secrets in Cloud → Secrets UI

Own Supabase

  • Direct Supabase dashboard access
  • Can use Supabase CLI: supabase functions deploy
  • More flexibility but manual setup

Quick Prompts Reference

Edge Functions

"Deploy all edge functions"
"Deploy the send-email edge function"
"Create an edge function called [name] that [description]"
"Show logs for [name] edge function"
"The [name] edge function returns [error]. Fix it"

Database

"Create a [name] table with columns: id (uuid), name (text), created_at (timestamp)"
"Add a [column] column of type [type] to [table]"
"Add foreign key from [table1].[col] to [table2].id"
"Apply pending Supabase migrations"

RLS Policies

"Enable RLS on [table]"
"Add RLS policy on [table] allowing authenticated users to read all rows"
"Add RLS policy on [table] allowing users to only access their own rows"

Storage

"Create a public storage bucket called [name]"
"Create a private storage bucket called [name]"
"Allow authenticated users to upload to [bucket]"

Auth

"Enable Google authentication"
"Enable GitHub authentication"
"When user signs up, create row in profiles table"

Branch Rules

  • Only `main` syncs with Lovable
  • Feature branches don't deploy until merged
  • Lovable syncs within 1-2 minutes of push

Yolo Mode - Automated Deployments (Beta)

When yolo_mode: on in CLAUDE.md, deployments are automated via browser automation:

How It Works

Instead of showing manual prompts, the yolo skill (/skills/yolo/SKILL.md) takes over: 1. Automatically navigates to Lovable.dev 2. Submits deployment prompts 3. Monitors for success/failure 4. Runs verification tests (if enabled) 5. Reports deployment summary

When Yolo Mode Activates

  • During /lovable:deploy-edge command
  • During /lovable:apply-migration command
  • When yolo_mode: on in CLAUDE.md

Configure Yolo Mode

/lovable:yolo on               # Enable with testing
/lovable:yolo on --no-testing  # Enable without testing
/lovable:yolo on --debug       # Enable with verbose logs
/lovable:yolo off              # Disable

Beta Status

⚠️ Yolo mode is in beta:

  • Requires Claude in Chrome extension
  • May have bugs or UI compatibility issues
  • Always has manual fallback
  • See /skills/yolo/SKILL.md for details

Debugging Checklist

1. Frontend not updating?

  • On main branch?
  • Changes pushed?
  • Wait 1-2 min

2. Edge Function not working?

  • Deployed via Lovable (or yolo mode)?
  • Secrets set in Cloud UI?
  • Check logs in Lovable

3. Database query failing?

  • Migration applied (via Lovable or yolo mode)?
  • RLS policies correct?
  • Table exists?

4. Yolo mode not working?

  • Check yolo_mode: on in CLAUDE.md
  • Chrome extension installed?
  • Logged into Lovable?
  • See yolo skill for troubleshooting

Related skills

FAQ

How does lovable know which architecture a project uses?

It checks the root directory: app.config.ts means TanStack Start (SSR), vite.config.ts means Vite SPA (CSR).

What changes require a Lovable prompt instead of a GitHub push?

Deploying edge functions, applying migrations, creating tables, RLS policies, storage buckets, and secrets.

Automation & Workflowsbackendintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.