← Back to list

database
by SylphxAI
🚀 AI development platform with MEP architecture - stop writing prompts, start building with 90% less typing
⭐ 4🍴 3📅 Jan 8, 2026
SKILL.md
name: database description: Database - schema, indexes, migrations. Use when working with databases.
Database Guideline
Tech Stack
- Database: Neon (Postgres)
- ORM: Drizzle
- Migrations: Drizzle Kit
Non-Negotiables
- All database access through Drizzle (no raw SQL unless necessary)
- Migration files must exist, be complete, and be committed
- CI must fail if schema changes aren't represented by migrations
- No schema drift between environments
- Drizzle schema is SSOT for database structure
Context
Database handles physical implementation — schema, indexes, migrations, query performance. Conceptual modeling (entities, relationships) lives in data-modeling.
Drizzle is the SSOT for database access. Type-safe, end-to-end.
Driving Questions
- Is all database access through Drizzle?
- Are migrations complete and committed?
- What constraints are missing that would prevent invalid state?
- Where are missing indexes causing slow queries?
- What queries are N+1 or unbounded?
Score
Total Score
75/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
3ヶ月以内に更新
+5
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

