Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
PostgreSQL 18.2 and golang-migrate for database schema management
Combining PostgreSQL 18.2 (advanced relational database) with golang-migrate (migration tool) provides a robust, version-controlled approach to database schema management. This ensures reproducible database state and supports team collaboration.
Track schema changes as discrete, reversible migrations to maintain consistency across environments.
migrations/
├── 001_initial_schema.up.sql
├── 001_initial_schema.down.sql
├── 002_add_user_profile.up.sql
├── 002_add_user_profile.down.sql
├── 003_create_posts_table.up.sql
└── 003_create_posts_table.down.sql
-- migrations/001_initial_schema.up.sql
CREATE TABLE users (
id BIGSERIAL PRIMARY KEY,
npx skills add nhattran998/crossfire --skill databaseHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Partially actionable with several concrete steps, but still missing important details.