Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

db-enforcer数据库执行者

Agent Skill

db-enforcer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

717

周安装

29

GitHub Stars

10

下载量

225
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:db-enforcer(数据库执行者)
来源仓库:https://github.com/oakoss/agent-skills
仓库路径:skills/db-enforcer
安装命令:
npx skills add https://github.com/oakoss/agent-skills --skill db-enforcer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill db-enforcer

简介

db-enforcer 确保 TypeScript 应用层与 PostgreSQL 持久层的数据一致性,防止类型漂移。

  • 它自动生成 CHECK 约束与 RLS 策略,并在迁移前预生成 SQL 脚本,保障零停机部署。
  • 使用时需定义 Prisma 模型与约束规则,技能会比对两端差异并输出修复建议与审计日志。
  • 建议集成到 CI 流程中,每次 schema 变更时自动运行检查以避免生产环境类型不匹配。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

DB Enforcer

Overview

Enforces data integrity and architectural consistency between the TypeScript application layer and the PostgreSQL persistence layer. Prevents type drift by ensuring CHECK constraints mirror TypeScript types, migrations are generated before applying changes, and Row-Level Security protects every table.

When to use: Schema design, migration planning, RLS policy authoring, Prisma model mapping, constraint auditing, zero-downtime deployments.

When NOT to use: Application-level business logic, frontend state management, non-PostgreSQL databases. For full RLS auditing, performance tuning, and compliance validation, use the database-security skill instead.

Quick Reference

PatternAPI/ToolKey Points
Type-to-DB syncprisma migrate dev --create-onlyGenerate SQL before applying changes
Naming alignment@map / @@mapsnake_case in SQL, camelCase in TS
Primary keysDEFAULT uuidv7()Sequential, globally unique, fast indexing (PG 18+)
Virtual columnsGENERATED ALWAYS AS (...) VIRTUALZero disk cost, computed on read (PG 18+)
Temporal uniquenessEXCLUDE USING gistPrevent overlapping ranges natively
NOT VALID constraintsADD CONSTRAINT... NOT VALIDAdd constraints without table locks
TypedSQLprisma.$queryRawTyped()Type-safe raw SQL via .sql files
Relation emulationrelationMode = "prisma"Integrity in FK-less environments (GA since 4.8.0)
Soft deletesPrisma $extendsCross-cutting concern via client extensions
RLS standard(select auth.uid()) = user_idDefault own-data access policy with initPlan caching
Team RLSEXISTS subqueryPermission checks via join tables
Column-level securityPostgreSQL ViewsHide sensitive columns from public APIs

Synchronization Protocol

Every schema modification MUST follow these steps:

  1. Type-to-DB Verification: When adding an enum or union in TS, verify the equivalent CHECK constraint in SQL
  2. Migration-First Generation: Generate SQL migrations using prisma migrate dev --create-only BEFORE applying
  3. Naming Alignment: Enforce snake_case in SQL and camelCase in TS via explicit @map/@@map directives
  4. Integrity Audit: Run prisma validate and check for missing indices on relation scalars
  5. RLS Verification: Confirm every new table has RLS enabled with appropriate policies
  6. Lock Assessment: Evaluate whether migration requires CREATE INDEX CONCURRENTLY or NOT VALID patterns

PostgreSQL Version Requirements

Several patterns in this skill require specific PostgreSQL versions:

FeatureMinimum VersionFallback
uuidv7()PostgreSQL 18gen_random_uuid() (UUIDv4) via pgcrypto
Virtual columnsPostgreSQL 18STORED generated columns (PG 12+)
EXCLUDE USINGPostgreSQL 9.0Application-level overlap checks
NOT VALIDPostgreSQL 9.1Schedule constraint addition during downtime
security_invokerPostgreSQL 15Use security_definer with restricted grants

Common Mistakes

MistakeCorrect Pattern
Running SQL changes manually without migrationsGenerate numbered migrations with prisma migrate dev --create-only before applying
Using auto-increment or raw IDs exposed in URLsUse UUIDv7 for globally unique, non-enumerable identifiers
Skipping CHECK constraints on enums or unionsAdd database-level CHECK constraints that mirror TypeScript types
Mixing snake_case and camelCase without explicit mappingUse @map and @@map to enforce snake_case in SQL and camelCase in TypeScript
Tables without Row-Level Security policiesApply RLS policies to every table, defaulting to (select auth.uid()) = user_id
DROP or RENAME column in a single deploymentUse expand-and-contract: add new column, dual-write, backfill, switch reads, drop old
Adding NOT NULL to large tables with full lockAdd column as NULL first, backfill, then add NOT NULL with NOT VALID
Creating indices without CONCURRENTLYUse CREATE INDEX CONCURRENTLY in raw SQL migrations to avoid table locks
Using auth.uid() directly in RLS without subselectWrap in (select auth.uid()) to trigger initPlan caching
Assuming uuidv7() works on all PG versionsVerify PostgreSQL 18+; fall back to gen_random_uuid() on older versions

Naming Conventions

Prisma models use camelCase in TypeScript and must map to snake_case in PostgreSQL:

LayerConventionEnforced By
TypeScriptcamelCasePrisma model field names
PostgreSQLsnake_case@map / @@map
EnumsUPPER_SNAKECHECK constraints
Indicessnake_caseidx_table_column

Deployment Pipeline

Migrations follow a strict pipeline order:

  1. prisma migrate dev --create-only -- generate and review SQL locally
  2. prisma validate -- verify schema consistency
  3. Apply to staging/preview database and run integration tests
  4. prisma migrate deploy -- apply in CI/CD pipeline to production
  5. Monitor for lock contention and query plan regressions

Relationship to Other Skills

  • database-security: Covers full RLS auditing, PGAudit configuration, Supabase-specific patterns, Convex auth guards, and compliance validation. Use database-security for in-depth policy review and access simulation. Use db-enforcer for schema design and migration patterns that include RLS as part of the integrity workflow.

Delegation

  • Audit existing schema for missing constraints or indices: Use Explore agent
  • Plan a zero-downtime migration strategy for production databases: Use Plan agent
  • Execute a full schema refactor with type alignment and RLS setup: Use Task agent
  • Review RLS policies for bypasses and performance issues: Use database-security skill

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.49%
按下载量换算80

Claude

29.77%
按下载量换算67

Cursor

19.79%
按下载量换算45

Gemini CLI

9.11%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills