What problem does it solve? Writing Grafana dashboards and alert rules as Go code with the grafana-foundation-sdk requires repetitive boilerplate before any real design work begins. This Skill scaffolds ready-to-edit, compilable Go stub files so you can skip the setup and start customizing panels, queries, and alert conditions immediately. ## Core Features & Use Cases - Typed Stub Generation: Run gcx dev generate to create dashboard or alert rule Go files that compile without modification. - Automatic Type Inference: Resource type is inferred from the parent directory (dashboards/ or alerts/), with a --type flag override for custom layouts. - Naming Normalization: Filenames are converted to snake_case and function names to CamelCase automatically. - Use Case: You need three new alert rules for CPU, memory, and disk monitoring. Generate all three stubs in one batch command, then customize each with the foundation-sdk builder patterns from the included reference guide. ## Quick Start Ask the assistant to generate a dashboard stub at dashboards/my-service-overview.go using gcx dev generate.