원클릭으로
generate
Run go generate to build templ templates and frontend assets. Use after changing templates or CSS/JS.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run go generate to build templ templates and frontend assets. Use after changing templates or CSS/JS.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run Go benchmarks and compare results to detect performance regressions. Use before and after performance-related changes.
Run pre-push quality checks (vet + lint + tests with race detector). Use before pushing code.
Run tests with coverage analysis and identify untested code paths. Use to find gaps before releases.
Check and tidy Go module dependencies. Use after adding/removing imports or before releases.
Run integration tests that require Docker (Postgres, MinIO via testcontainers). Use to validate database and storage behavior.
Run golangci-lint and static analysis on Go code. Use before pushing or to check code quality.
| name | generate |
| description | Run go generate to build templ templates and frontend assets. Use after changing templates or CSS/JS. |
| disable-model-invocation | true |
Run go generate to build templ templates and frontend CSS/JS assets.
/generate - Generate all assetsRun go generate
go generate ./assets/... 2>&1
This executes two steps defined in assets/embed.go:
templ generate - Compiles .templ files into Go codenpm install && npm run build - Builds frontend CSS/JS into assets/static/Verify output
ls -la assets/static/css/ assets/static/js/ 2>&1
Install the updated binary
go install ./...
Report results
## Generate Results
### templ
- [number of templates compiled]
### Frontend
- CSS: [files generated]
- JS: [files generated]
### Status
- Binary installed: yes/no
Run /generate after changing:
.templ template filefrontend/css/package.jsontempl CLI must be installed (go install github.com/a-h/templ/cmd/templ@latest if missing)The CI pipeline runs go generate ./assets/... before every build. Running /generate locally ensures your embedded assets are current.