Agent skill
generate-db-wrappers
Generate database wrappers for all supported database engines
Install this agent skill to your Project
npx add-skill https://github.com/kalbasit/ncps/tree/main/.agent/skills/generate-db-wrappers
SKILL.md
Generate Database Wrappers
This workflow guides you through generating the database wrappers for SQLite, PostgreSQL, and MySQL. These wrappers provide a common interface for different database backends.
Prerequisites
- Nix environment: This project uses Nix for its development environment. You should run the following steps within
nix developor after loadingdirenv.
Workflow Steps
1. Generate Wrappers
Run sqlc generate followed by the go generate command for the pkg/database package. Both should be run within the Nix environment.
// turbo
nix develop --command bash -c "sqlc generate && go generate ./pkg/database"
2. Verify Generated Files
Ensure that the following files have been updated:
pkg/database/wrapper_sqlite.gopkg/database/wrapper_postgres.gopkg/database/wrapper_mysql.go
3. Lint and Format
After generating the wrappers, run the linting workflow to ensure the generated code is properly formatted and passes quality checks.
// turbo
nix develop --command golangci-lint run --fix
nix fmt
[!IMPORTANT] Do NOT edit these files manually. They are overwritten every time the generation tool is run. If you need to fix lint errors or change the logic, modify the generation tool or the
querier.gointerface.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
openspec-propose
Propose a new change with all artifacts generated in one step. Use when the user wants to quickly describe what they want to build and get a complete proposal with design, specs, and tasks ready for implementation.
openspec-archive-change
Archive a completed change in the experimental workflow. Use when the user wants to finalize and archive a change after implementation is complete.
openspec-explore
Enter explore mode - a thinking partner for exploring ideas, investigating problems, and clarifying requirements. Use when the user wants to think through something before or during a change.
openspec-apply-change
Implement tasks from an OpenSpec change. Use when the user wants to start implementing, continue implementation, or work through tasks.
openspec-ff-change
Fast-forward through OpenSpec artifact creation. Use when the user wants to quickly create all artifacts needed for implementation without stepping through each one individually.
openspec-continue-change
Continue working on an OpenSpec change by creating the next artifact. Use when the user wants to progress their change, create the next artifact, or continue their workflow.
Didn't find tool you were looking for?