Claude Code Plugins

Community-maintained marketplace

Feedback
0
0

Use when working with database models or migrations. Contains schema documentation and relationship patterns.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name database-schema
description Use when working with database models or migrations. Contains schema documentation and relationship patterns.

Database Schema Skill

Quick Reference

See references/schema.md for the complete schema.

Model Conventions

  • All models inherit from BaseModel
  • Use UUID for primary keys
  • Include created_at and updated_at timestamps
  • Soft delete via is_active flag

Relationship Pattern

class Pet(BaseModel):
    shelter_id = Column(UUID, ForeignKey('shelters.id'))
    shelter = relationship('Shelter', back_populates='pets')

When creating new models, always check references/schema.md first.