What problem does it solve? Starting a new Grafana resources-as-code project from scratch requires setting up Go modules, directory structure, CI/CD workflows, and sample dashboards manually. This Skill automates that boilerplate using the gcx CLI so you can begin defining dashboards and alerts immediately. ## Core Features & Use Cases - Interactive Scaffolding: Run gcx dev scaffold and answer prompts for project name and Go module path. - Non-Interactive Mode: Pass --project and --go-module-path flags for scripted or CI-driven project creation. - Complete Project Layout: Generates a Go module with a main.go entrypoint, an internal dashboards registry, a sample dashboard built with foundation-sdk builders, and a GitHub Actions deploy workflow. - Use Case: A platform engineer wants to manage Grafana dashboards as code. They scaffold a project, run go mod tidy, configure the gcx server and token, then push resources to Grafana with gcx resources push. ## Quick Start Ask the assistant to scaffold a new gcx project named my-dashboards with the Go module path github.com/myorg/my-dashboards.