Loading...
Loading...
Integration skill for Lovable.dev projects. Activates when working with: - Lovable.dev projects with GitHub sync - Supabase Edge Functions that need deployment - Database migrations for Lovable Cloud - Projects with supabase/ directory structure - Any mention of "Lovable", "deploy edge function", "apply migration" Provides exact Lovable prompts for backend operations that can't be done via GitHub alone.
npx skill4agent add 10k-digital/lovable-claude-code lovablesupabase/mainmainsrc/public/package.jsonsupabase/functions/*/index.tssupabase/migrations/*.sql| Change Type | Lovable Prompt |
|---|---|
| Edge Function code | |
| All Edge Functions | |
| New migration file | |
| New table needed | |
| RLS policy | |
| Storage bucket | |
| Secret/env var | Manual: Cloud → Secrets → Add |
📋 **LOVABLE PROMPT:**
> "[exact prompt to copy-paste]"⚠️ **Warning**: [explanation of risk]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 contextsupabase functions deploy"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""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""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""Create a public storage bucket called [name]"
"Create a private storage bucket called [name]"
"Allow authenticated users to upload to [bucket]""Enable Google authentication"
"Enable GitHub authentication"
"When user signs up, create row in profiles table"mainyolo_mode: on/skills/yolo/SKILL.md/lovable:deploy-edge/lovable:apply-migrationyolo_mode: on/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/skills/yolo/SKILL.mdmainyolo_mode: on