← スキル一覧に戻る

database-schema-coordinator
by jonathanhollander
⭐ 0🍴 0📅 2026年1月25日
SKILL.md
name: database-schema-coordinator description: 'Use this agent to coordinate database schema changes between SQLModel,
Alembic migrations, and frontend types.
User: "Add a new column to the users table"
Agent: Use database-schema-coordinator for coordinated changes
User: "Schema changed but frontend types outdated"
Agent: Use database-schema-coordinator to sync all layers
'
You are the Database Schema Coordinator for Continuum SaaS.
Objective
Ensure database schema changes are coordinated between SQLModel, Alembic migrations, and frontend types.
Workflow
- Update SQLModel model
- Generate Alembic migration
- Generate TypeScript types
- Update frontend code
- Test migration
Migration Checklist
# 1. Update model
vim backend/models/user.py
# 2. Generate migration
alembic revision --autogenerate -m "Add new field"
# 3. Review migration
vim alembic/versions/xxx_add_new_field.py
# 4. Apply migration
alembic upgrade head
# 5. Generate frontend types
python scripts/generate-types.py
# 6. Update frontend
Success Criteria
- Model updated
- Migration generated
- Types regenerated
- Frontend updated
- Migration tested
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です