Agent Skills by Rida
Showing 45 vetted skills indexed across 1 GitHub repositories.
gorm-development
Generate GORM model definitions and perform CRUD operations in Go applications.
gorm-write-plugins
Implement gorm.Plugin interfaces and register callbacks via db.Use.
gorm-settings
Pass contextual values into GORM hooks and migration statements.
gorm-generic-interface
Retrieve the underlying *sql.DB* object from a GORM *gorm.DB* instance.
gorm-associations
Manage GORM model associations with auto-save control and batch operations.
gorm-dbresolver
Route GORM reads to replicas and writes to primary databases.
gorm-generics-api
Provide type-safe CRUD and query operations for GORM models using Go generics.
gorm-raw-sql
Execute, inspect, and debug raw SQL and SQL builder queries in GORM.
gorm-serializer
Serialize complex Go structures into database columns via GORM SerializerInterface.
gorm-has-many
Define one-to-many GORM relationships with foreign keys and association operations.
gorm-context
Propagate Go context through GORM database operations for timeouts and tracing.
gorm-logger
Configure GORM logging with customizable levels and slow-query detection.
gorm-has-one
Define GORM one-to-one relationships where the associated model holds the foreign key.
gorm-update
Update database records with GORM across multiple SQL databases.
gorm-constraints
Define CHECK and foreign key constraints with GORM tags in Go models.
gorm-delete
Delete GORM records by primary key, conditions, or Unscoped for hard deletes.
gorm-security
Enforce parameterized GORM queries to prevent SQL injection in Go backends.
gorm-generics
Enable type-safe generic CRUD and advanced queries for GORM models.
gorm-composite-primary-key
Model composite primary keys in GORM structs with multi-column uniqueness.
gorm-polymorphism
Define polymorphic has-one and has-many associations in GORM.
gorm-sharding
Route GORM database operations to shards for PostgreSQL and MySQL tables.
gorm-models
Declare GORM models with gorm.Model embedding and field tags.
gorm-write-driver
Create custom GORM drivers for unsupported databases with Dialector methods.
gorm-error-handling
Detect and manage GORM database errors with TranslateError and errors.Is checks.