Create and manage Supabase database migrations using MCP tools. Use when creating tables, modifying schemas, adding RLS policies, or working with database structure.
Configure Supabase across development, staging, and production with separate projects, environment-specific secrets, and safe migration promotion.
Set up monitoring and observability for Supabase projects using Dashboard reports, CLI inspect commands, pg_stat_statements, log drains, and alerting.
Generic Supabase best practices for Row Level Security, realtime subscriptions, storage, and edge functions. Framework-agnostic.
Optimize Supabase query performance with indexes, EXPLAIN ANALYZE, connection pooling, column selection, pagination, RPC functions, materialized views, and diagnostics.
Enforce organizational governance for Supabase projects: shared RLS policy library with reusable templates, table and column naming conventions, migration review process with CI…
PostgreSQL patterns for Supabase. Schema design, migrations, indexes, functions. Trigger: Al diseñar tablas, crear migraciones, o escribir funciones SQL.
Model Supabase and PostgreSQL for Carni-mvp with VESTA-style discipline: multi-tenant thinking, explicit roles, RLS on every sensitive table, and operational clarity.
Execute Supabase production deployment checklist covering RLS, key hygiene, connection pooling, backups, monitoring, Edge Functions, and Storage policies.
Manage Supabase rate limits and quotas across all plan tiers. Use when hitting 429 errors, configuring connection pooling, optimizing API throughput, or understanding…
Implement enterprise Supabase reference architectures — monorepo layout, multi-tenant RLS, microservices with cross-project access, framework integration, edge functions, caching,…
Build resilient Supabase integrations: circuit breakers wrapping createClient calls, offline queue with IndexedDB, graceful degradation with cached fallbacks, health check…
Manage a Supabase project from the CLI — list projects, run SQL files (with post-run row-count verification), run inline queries, audit RLS coverage, and generate TypeScript…
Detects tables created without ROW LEVEL SECURITY enabled, over-permissive policies (USING (true) / WITH CHECK (true) without owner conditions), and service_role key exposure in…
Design Supabase Postgres schema from business requirements with migrations, RLS, and types. Use when translating specifications into database tables, creating migration files,…
anytime-markdown の Supabase スキーマ変更と同期方式の規約。マイグレーションファイルを新規追加せず supabase/migrations/001_schema.sql を直接編集する運用と、拡張機能 (SyncService) から Supabase への洗い替え(wash-away)同期方式を定義する。Supabase…
Use when setting up Supabase, creating database tables, writing RLS policies, configuring Auth (especially Apple Sign-In), creating storage buckets, writing Edge Functions in…
Skill synchronisation Supabase ↔ localStorage CYNA — pattern exact de lecture/écriture des données dans l'app.
Migrate a Supabase application to a microservices.sh app on Cloudflare. Use when a user wants to move off Supabase (Postgres, Auth, Storage, Realtime, Edge Functions) onto…
Production-ready Supabase integration patterns for Next.js/React/TypeScript applications. Use when working with Supabase for (1) SSR authentication with @supabase/ssr, (2)…
Supabase CLI를 활용한 데이터베이스 타입 생성 및 동기화. PROACTIVELY use when (1) DB 스키마 변경 후 타입 업데이트, (2) Repository 구현 전 타입 확인, (3) 새 테이블/컬럼 추가 시, (4) 타입 불일치 오류 발생 시.
Supabase CLI를 활용한 데이터베이스 타입 생성 및 동기화. PROACTIVELY use when (1) DB 스키마 변경 후 타입 업데이트, (2) Repository 구현 전 타입 확인, (3) 새 테이블/컬럼 추가 시, (4) 타입 불일치 오류 발생 시.
Upgrade Supabase SDK and CLI versions with breaking-change detection and automated code migration. Use when upgrading @supabase/supabase-js (v1→v2 or minor bumps), migrating…
Implement Supabase database webhooks, pg_net async HTTP, LISTEN/NOTIFY, and Edge Function event handlers with signature verification.
Teable is an open source no-code database platform built on PostgreSQL that uses a spreadsheet-like interface for creating powerful database applications.
Use when you need framework-agnostic MongoDB and non-relational database query guidance — document schema design, collection modeling, JSON Schema validation, indexes, aggregation…
Telegram WebApp üzerinde Mongoose şeması ve React frontend kullanılarak, URL parametreleri üzerinden çalışan bir referans/davet sistemi kurulumu ve yönetimi.
When the user wants to perform visual regression testing with Storybook integration using Chromatic. Also use when the user mentions 'chromatic,' 'visual regression,' 'Storybook…
Expert guidance for Firebase, Google's platform for building and scaling web and mobile applications.
Add checkpoint/resume, durable queues and cron schedules, cancellation, human approval gates, live progress state, subagent fanout, and per-run cost tracking to AI agent workflows…
TimescaleDB - PostgreSQL extension for high-performance time-series and event data analytics, hypertables, continuous aggregates, compression, and real-time analytics
Use when reasoning about the I in ACID — the isolation level a database provides between concurrent transactions: the five SQL-standard levels (read uncommitted, read committed,…
trdsql is a CLI tool that executes SQL queries directly on CSV, LTSV, JSON, YAML, and TBLN files. It supports PostgreSQL and MySQL syntax, can join data across multiple files and…
Supabase patterns for storage, realtime, and db integration. Use when handling uploads, signed URLs, Realtime publications, or combining Supabase with Drizzle.
Review Supabase Postgres work for query performance, schema design, indexing, connection handling, and RLS pitfalls using Supabase's own prioritized guidance.
Local vector search with turbovec (Google TurboQuant, Rust+Python). Use for embeddings indexing, semantic search, local RAG, or filtered vector retrieval without external services…
Guidelines for developing with TypeORM, a full-featured ORM for TypeScript and JavaScript supporting multiple databases
TypeORM + MySQL 성능 튜닝 스킬. TypeORM(Node.js/TypeScript) 환경에서 MySQL 쿼리가 느린 경우, N+1 문제 해결, EXPLAIN 분석, 인덱스 설계, relations 로딩 전략, 배치 처리, QueryBuilder 최적화 등 모든 TypeORM+MySQL 성능 관련 작업에…
An official MCP server from Upstash that lets AI agents manage Redis databases, QStash message queues, and Vector stores through natural language.
Read and write to Upstash Redis-compatible key-value store via REST API. Use when there is a need to save or retrieve key-value data, use Redis features (caching, counters, lists,…
Prisma 5+ ORM with schema-first design, type-safe client, migrations, and database integrations (Supabase, PlanetScale, Neon). Use for TypeScript/JavaScript database access.
PostgreSQL's VACUUM machinery — heap scanning, dead-tuple collection, index cleanup, HOT pruning, freezing, VM/FSM updates, truncation — plus the autovacuum launcher/worker…
Connect to live PostgreSQL database to validate schema assumptions, compare pg_dump vs pgschema output, and query system catalogs interactively
Applies the ADO late-binding pattern when writing or modifying database access code in Visual Basic 6, supporting both Microsoft SQL Server and PostgreSQL.
Start the Native Python ChromaDB background server. Use when semantic search returns connection refused on port 8110, or when the user wants to enable concurrent agent read/writes.
Implement vector similarity search with embedding generation, index selection, and hybrid retrieval strategies. Covers ChromaDB, pgvector, FAISS, and RAG pipeline design.
Vector database and embedding patterns for AI agent retrieval systems. pgvector similarity search, Chroma collections, Pinecone upsert/query, cosine vs dot-product vs Euclidean…
Skill per il progetto virtualservice (NX monorepo in C:\Leo\sviluppo\virtualservice). Gestisce operazioni sul database MongoDB tramite gli script Node.js del progetto.
Harici platform, API, araç veya ürün hakkında özellik, kısıtlama, fiyat veya herhangi bir faktüel iddia yapmadan önce WebSearch ile doğrula ve kaynak göster.
Hazır 'borsa oyunu' kutusu. Al-sat butonu, canlı fiyatlar, K/Z hesabı, mobil ekran — hepsi içinde. React + Supabase. MT5'e benzer, kendin yazma. Forex, altın, kripto, hisse.
Auto-generates weekly KPI reports from multiple data sources including Supabase analytics, CRM data, financial spreadsheets, and email metrics.
Use for API/SWR wiring in PierceDesk. Covers Supabase auth patterns, client-to-API wiring, data fetching for large datasets or high-frequency updates, and references to…
Browser-based login to WorldAI via Firebase Google OAuth using Chrome Superpowers MCP
Excel 工具(专业版)面向数据分析师与团队,在免费版基础读写之上新增多表合并、数据透视表、图表生成、大数据处理、自动化流水线与数据库联动六大模块。支持从 `PostgreSQL` 等数据库直接导入导出,处理百万行级数据不溢出。Use when 需要数据分析、报表生成、统计洞察、数据可视化时使用。不适用于实时流数据处理.
ConstructionStructure projesinde yeni bir modül iskeleti oluşturur. Kullanıcı "yeni modül oluştur", "modül ekle", "modül iskeleti", "scaffold modül" veya herhangi bir modül adı…
Zara Privacy MCP skill — 21 tools for privacy scanning, database proxy (SQL/MongoDB/Redis), HTTP API proxy, AI provider proxy with fallback routing, and version info.
Use when changing schema on a live production database without dropping traffic, doing expand/contract migrations, backfilling new columns on million-plus-row tables, dual-writing…
Bootstrap a Cowork conversation for a specific AI Solutions project - establishes context (Vercel project, GitHub repo, local clone, live URL, Supabase table, framework, last…
This skill should be used when the user asks about libraries, frameworks, API references, or needs code examples.
Deploy and manage web apps with Firebase App Hosting. Use this skill when deploying Next.js/Angular apps with backends. — from KunanonJ/ai-skills-hub