Monolith Admin Dashboard
Use this skill when
- •Enabling operational/admin UI.
- •Adding admin-only diagnostics and controls.
Bootstrap command
make generator admin
What gets scaffolded
- •Admin controller (
/admindashboard) - •Admin template
- •
RequireAdminmiddleware helpers/tests - •Route wiring for admin dashboard and
/debug/pprof/* - •Auto-runs authentication scaffold if
Usermodel does not exist
Expected route shape
- •
GET /adminandPOST /adminguarded by admin middleware - •
GET /debug/pprof/...endpoints guarded by admin middleware
Extension workflow
- •Add cards/metrics/actions in admin template.
- •Keep heavy operations behind POST actions.
- •Ensure admin middleware checks real session user role.
- •Add tests for unauthorized and authorized paths.