home/categories/databases
domain cluster

Databases

SQL, NoSQL, and database management tools.

3963 スキルall categories
sorting
stars
current ordering strategy
query
all entries
refine the visible subset
sql-databases
0

inspect-table

Shows COMPLETE table structure including columns, types, nullability, defaults, and ALL constraints (CHECK, FK, UNIQUE, ENUM values). CRITICAL - Use this skill BEFORE writing ANY SQL INSERT/UPDATE statements or creating database functions. Use when you need to: (1) Verify actual table/column names because documentation may be outdated, (2) Check valid enum/constraint values to prevent constraint violations, (3) See foreign key requirements to prevent FK errors, (4) Identify NOT NULL columns to prevent null violations, or (5) Understand complete table schema before any database operation

zohar-ui
zohar-ui
databases
open
sql-databases
0

supabase-integration

This skill should be used when the user asks to "configure Supabase with SQLAlchemy", "set up Supabase async engine", "create Supabase models", "handle Supabase authentication with SQLAlchemy", or "integrate Supabase pooling with SQLAlchemy async patterns". It provides complete Supabase integration patterns for SQLAlchemy with async support, authentication, and connection pooling optimizations.

kivo360
kivo360
databases
open
sql-databases
0

task-crud-model

Create SQLModel models for Todo tasks. Use for database schema generation.

Jawad-Chaudhary
Jawad-Chaudhary
databases
open
sql-databases
0

backend-models-standards

Define database models with clear naming, appropriate data types, constraints, relationships, and validation at multiple layers. Use this skill when creating or modifying database model files, ORM classes, schema definitions, or data model relationships. Apply when working with model files (e.g., models.py, models/, ActiveRecord classes, Prisma schema, Sequelize models), defining table structures, setting up foreign keys and relationships, configuring cascade behaviors, implementing model validations, adding timestamps, or working with database constraints (NOT NULL, UNIQUE, foreign keys). Use for any task involving data integrity enforcement, relationship definitions, or model-level data validation.

knopki
knopki
databases
open
sql-databases
0

postgres-neon-connection-and-migrations

Standard patterns for connecting applications to Neon Postgres and managing schema changes via migrations (Alembic / SQLModel / SQLAlchemy), with attention to serverless connection behaviour.

Okashanadeem
Okashanadeem
databases
open
sql-databases
0

database-observability

Instrument database queries, connection pools, and detect N+1 queries

nexus-labs-automation
nexus-labs-automation
databases
open
sql-databases
0

write-sql

SQL query writing expert for generating optimized database queries

ibytechaos
ibytechaos
databases
open
sql-databases
0

backend-queries

Write efficient and secure database queries following best practices for SQL injection prevention, N+1 query optimization, and performance for PostgreSQL (Bun.sql, Prisma, Supabase) and Firestore. Use this skill when writing or modifying database queries, implementing data fetching logic, working with ORMs (Prisma, TypeORM, Entity Framework), using Bun.sql native driver, querying Firestore collections, or implementing caching strategies. Apply when working on service files (services/*.ts, repositories/*.ts, *Service.cs), query builder implementations, data access layers, or any code that fetches or manipulates data. This skill ensures parameterized queries to prevent SQL injection (never interpolate user input), eager loading to prevent N+1 problems, selective column fetching (no SELECT *), strategic indexing on WHERE/JOIN/ORDER BY columns, transactions for related operations, query timeouts for performance, caching expensive queries, prepared statements with Bun.sql for repeated queries, and query-driven mod

TheophilusChinomona
TheophilusChinomona
databases
open
sql-databases
0

asyncpg-detection

This skill should be used when the user asks to "detect asyncpg usage", "find asyncpg patterns", "scan for asyncpg imports", or "identify asyncpg database code in FastAPI projects". It automatically scans Python files to identify asyncpg imports, connection patterns, and query execution methods that need conversion to SQLAlchemy.

kivo360
kivo360
databases
open
sql-databases
0

repository-adapters

Modify database repository adapters using sqlc-generated SQLite queries.

matt-riley
matt-riley
databases
open
sql-databases
0

data-modeling

Transform business requirements into logical data models. Use when: entity extraction, relationship analysis, normalization decisions, schema design. Do not use for: physical implementation details (use postgresql or sqlite skill after this). Workflow: this skill (design) → postgresql/sqlite skill (implement).

zzoohub
zzoohub
databases
open
sql-databases
0

rls-templates

Row Level Security policy templates for Supabase - multi-tenant patterns, user isolation, role-based access, and secure-by-default configurations. Use when securing Supabase tables, implementing RLS policies, building multi-tenant AI apps, protecting user data, creating chat/RAG systems, or when user mentions row level security, RLS, Supabase security, tenant isolation, or data access policies.

vanman2024
vanman2024
databases
open
sql-databases
0

schema-evolution-agent

Manages database schema changes and migrations while maintaining backward compatibility

Unicorn
Unicorn
databases
open
sql-databases
0

db-user

查询租户和组织信息(v3_user数据库)。使用 exec_sql 工具执行查询。

SeSiTing
SeSiTing
databases
open
sql-databases
0

postgres-pro

Use when user needs PostgreSQL database administration, performance optimization, high availability setup, backup/recovery, or advanced PostgreSQL feature implementation.

404kidwiz
404kidwiz
databases
open
sql-databases
0

op-db-metadata

提供v3_metadata数据库的SQL查询模板,包括对象编码(object_code)、对象名称、事件、按钮配置、自定义字段、元数据字段、插件中心等表的查询。查询对象编码、对象名称、自定义对象时使用。使用 exec_sql 工具执行查询。

SeSiTing
SeSiTing
databases
open
sql-databases
0

sql-optimizer

Especialista em otimização de queries SQL, design de banco de dados e performance tuning para PostgreSQL, MySQL e SQLite

automacoescomerciaisintegradas
automacoescomerciaisintegradas
databases
open
sql-databases
0

sql-expert

PostgreSQL, MySQL, SQLite, 및 SQL Server를 지원하는 전문가 수준의 SQL 쿼리 작성, 최적화 및 데이터베이스 스키마 설계입니다. 데이터베이스 작업 시 다음을 위해 사용하세요: (1) JOIN, 서브쿼리, 윈도우 함수를 포함한 복잡한 SQL 쿼리 작성, (2) 느린 쿼리 최적화 및 실행 계획 분석, (3) 올바른 정규화를 적용한 데이터베이스 스키마 설계, (4) 인덱스 생성 및 쿼리 성능 개선, (5) 마이그레이션 작성 및 스키마 변경 처리, (6) SQL 에러 및 쿼리 문제 디버깅

icartsh
icartsh
databases
open
sql-databases
0

do-domain-database

PostgreSQL, MongoDB, Redis 및 현대적 애플리케이션을 위한 고급 데이터 패턴을 다루는 Database 전문가

yejune
yejune
databases
open
sql-databases
0

database-manager

Manages Supabase database schema, migrations, and queries for CookMode V2. Use this when the user needs to create/modify tables, write migrations, update RLS policies, or troubleshoot database issues.

AdamFehse
AdamFehse
databases
open
sql-databases
0

sql-injection-prevention

Эксперт по защите от SQL injection. Используй для parameterized queries, input validation и database security.

dengineproblem
dengineproblem
databases
open
sql-databases
0

db-design-agent

Designs database schemas, data models, and database architectures

Unicorn
Unicorn
databases
open
sql-databases
0

tenant-db-ops

マルチテナント(顧客別DB分離)のDB運用・マイグレーション・調査に使う。

rozwer
rozwer
databases
open
Previous
Page 154 / 166
Next