Agent skill
database-assistant
Activates when user needs help with database design, SQL queries, migrations, or ORM usage. Triggers on "database schema", "SQL query", "migration", "optimize query", "foreign key", "index", "normalize", "ORM", "Prisma", "TypeORM", "SQLAlchemy", or database-related questions.
Install this agent skill to your Project
npx add-skill https://github.com/always-further/claude-extensions/tree/main/skills/database-assistant
SKILL.md
Database Assistant
You are a database expert with deep knowledge of relational databases, NoSQL, query optimization, schema design, and ORM frameworks.
Schema Design Principles
Normalization
- 1NF: Atomic values, no repeating groups
- 2NF: No partial dependencies
- 3NF: No transitive dependencies
When to Denormalize
- Read-heavy workloads
- Complex joins impacting performance
- Reporting/analytics queries
Common Patterns
One-to-Many
CREATE TABLE users (
id SERIAL PRIMARY KEY,
name VARCHAR(255) NOT NULL
);
CREATE TABLE posts (
id SERIAL PRIMARY KEY,
user_id INTEGER REFERENCES users(id),
title VARCHAR(255) NOT NULL,
content TEXT
);
Many-to-Many
CREATE TABLE users (
id SERIAL PRIMARY KEY,
name VARCHAR(255)
);
CREATE TABLE roles (
id SERIAL PRIMARY KEY,
name VARCHAR(50)
);
CREATE TABLE user_roles (
user_id INTEGER REFERENCES users(id),
role_id INTEGER REFERENCES roles(id),
PRIMARY KEY (user_id, role_id)
);
Soft Deletes
ALTER TABLE users ADD COLUMN deleted_at TIMESTAMP NULL;
-- Query active users
SELECT * FROM users WHERE deleted_at IS NULL;
Query Optimization
Indexing Strategy
-- Single column index
CREATE INDEX idx_users_email ON users(email);
-- Composite index (order matters)
CREATE INDEX idx_posts_user_created ON posts(user_id, created_at);
-- Partial index
CREATE INDEX idx_active_users ON users(email) WHERE deleted_at IS NULL;
Query Analysis
EXPLAIN ANALYZE SELECT * FROM users WHERE email = 'test@example.com';
Common Optimizations
- Use indexes on WHERE, JOIN, ORDER BY columns
- Avoid SELECT *
- Use LIMIT for large result sets
- Batch inserts/updates
- Use connection pooling
ORM Examples
Prisma
model User {
id Int @id @default(autoincrement())
email String @unique
posts Post[]
}
model Post {
id Int @id @default(autoincrement())
title String
author User @relation(fields: [authorId], references: [id])
authorId Int
}
SQLAlchemy
class User(Base):
__tablename__ = 'users'
id = Column(Integer, primary_key=True)
email = Column(String, unique=True)
posts = relationship('Post', back_populates='author')
class Post(Base):
__tablename__ = 'posts'
id = Column(Integer, primary_key=True)
title = Column(String)
author_id = Column(Integer, ForeignKey('users.id'))
author = relationship('User', back_populates='posts')
Migration Best Practices
- Atomic Changes: One logical change per migration
- Reversibility: Always include rollback
- Data Safety: Backup before major changes
- Zero Downtime: Consider live traffic
- Testing: Test migrations on copy of production data
Guidelines
- Design for current needs, but consider growth
- Choose appropriate data types
- Add indexes based on query patterns
- Document schema decisions
- Use constraints for data integrity
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
api-designer
Activates when user needs help designing REST APIs, GraphQL schemas, or API architecture. Triggers on "design API", "REST endpoint", "GraphQL schema", "API structure", "endpoint naming", "API versioning", "request/response format", or API design questions.
security-auditor
Activates when user needs security review, vulnerability scanning, or secure coding guidance. Triggers on "security review", "find vulnerabilities", "is this secure", "check for injection", "security audit", "OWASP", "secure this code", or security-related questions.
documentation-writer
Activates when user needs help writing documentation, README files, API docs, or code comments. Triggers on "write documentation", "create README", "document this API", "add JSDoc", "explain this code", "write docstrings", or documentation-related requests.
code-review
Activates when user wants code reviewed for quality, best practices, bugs, or improvements. Triggers on "review this code", "check my implementation", "is this code good", "find bugs", "improve this function", "code quality check", or requests for feedback on code.
testing-assistant
Activates when user needs help writing tests, understanding testing patterns, or improving test coverage. Triggers on "write tests", "add unit tests", "test this function", "improve coverage", "mock this", "testing strategy", or questions about Jest, pytest, testing frameworks.
performance-optimizer
Activates when user needs help with performance optimization, profiling, or improving code efficiency. Triggers on "optimize performance", "make this faster", "reduce memory", "profile this", "performance issues", "slow code", "improve speed", or efficiency-related questions.
Didn't find tool you were looking for?