Agent Skills: database-operations

Instructions on how to write database queries with SQLAlchemy.

UncategorizedID: aiskillstore/marketplace/database-operations

Install this agent skill to your local

pnpm dlx add-skill https://github.com/aiskillstore/marketplace/tree/HEAD/skills/crossbill-highlights/database-operations

Skill Files

Browse the full folder contents for database-operations.

Download Skill

Loading file tree…

skills/crossbill-highlights/database-operations/SKILL.md

Skill Metadata

Name
database-operations
Description
Instructions on how to write database queries with SQLAlchemy.

When performing database operations using SQLAlchemy, follow these guidelines to ensure efficient and maintainable code:

  • Avoid for-loops. Instead always prefer bulk operations using SQLAlchemy's built-in methods or use SQL joins to get related data in a single query.
  • Database operations should be contained in repository classes