lovable
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.
What this skill does
# 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) ## Core Concept Lovable uses **two-way GitHub sync** on the `main` branch only: - Frontend code syncs automatically - Backend operations (Edge Functions, migrations, RLS) require Lovable prompts ## What Syncs Automatically (GitHub → Lovable) ✅ 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 ⚠️ After editing, provide Lovable prompt: | Change Type | Lovable 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 var | Manual: Cloud → Secrets → Add | ## 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 ``` 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 ``` ## 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 in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.