cali-coding-go-stack
Installation
SKILL.md
Datastar Go SDK v2 Watch
Monitor: Issue #8 (GET/POST SSE action options) and PR #18 (PatchElement* refactor) pending. Alert user if merged. Today: v1.2.2 stable.
Go Stack Web Application
Go boilerplate inspired by Northstar.
Engineering Standards
Stack patterns only. Concurrency/linting/security in cali-coding-go-standards.
- Local dev (Air,
.air.toml, Makefile) also defined incali-coding-go-standards.
⚠️ PocketBase hook wiring pitfall:
app.OnServe().BindFunc(...)from inside anotherOnServehandler is a SILENT no-op. PocketBase'sHook.Triggersnapshots handlers before running them — nested BindFuncs never fire. Always register routes DIRECTLY onse.Routerinside the existing top-level hook, or as a top-levelapp.OnServe().BindFuncregistered beforepb.Start(). Symptom: route returns 303 to /login indefinitely even thoughcurlshows the bind ran.