| name | code-generation |
| description | Run and troubleshoot project code generation (sqlc + templ). |
| license | MIT |
| compatibility | Requires bash, git, Go, make, sqlc v1.30.0+, and templ. |
| metadata | [object Object] |
| allowed-tools | Bash(git:*) Bash(make:*) Bash(go:*) Bash(sqlc:*) Bash(templ:*) Bash(curl:*) Read |
What this skill covers
This repo relies on generated code for:
- sqlc: generates DB access code into
internal/adapters/repository/sqlc/sqlite/ - templ: generates Go code from
.templtemplates
Standard commands
make generate
Manual equivalents:
sqlc generate
templ generate
When to run generation
Run make generate when you change:
internal/adapters/repository/sqlc/sqlite/queries.sqlsqlc.yaml- migration files referenced by
sqlc.yamlunderschema: - any
.templfiles
Troubleshooting
If you see compile errors referencing missing generated code, re-run:
make generate