Public skills for working with Grafana, Prometheus, Loki, Tempo, and the broader LGTM stack
npx claudepluginhub grafana/skillsSkills for building apps on the Grafana App Platform using grafana-app-sdk — CUE schemas, reconcilers, and admission control
No description available.
RuFlo Marketplace: Claude Code native agents, swarms, workers, and MCP tools for continuous software engineering
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Share bugs, ideas, or general feedback.
Public skills for working with Grafana, Prometheus, Loki, Tempo, Pyroscope, k6, and the broader LGTM observability stack. Compatible with Claude Code, Cursor, Codex, and any tool supporting the Agent Skills open standard.
The official Grafana CLI installs skills directly from this repo with no setup required.
First, point npm at GitHub Packages for the @grafana scope (one-time setup):
npm config set @grafana:registry https://npm.pkg.github.com
Then use the CLI:
# Install all skills in a plugin group
npx @grafana/grafana-skills add grafana-plugins
npx @grafana/grafana-skills add grafana-core
npx @grafana/grafana-skills add grafana-cloud
# Install a single skill
npx @grafana/grafana-skills add grafana-plugins --skill plugin-bundle-size
# Target a specific tool only
npx @grafana/grafana-skills add grafana-plugins --platform cursor
# See what's available
npx @grafana/grafana-skills list
npx @grafana/grafana-skills info grafana-plugins
npx @grafana/grafana-skills search "bundle"
# Preview without writing files
npx @grafana/grafana-skills add grafana-plugins --dry-run
Skills are written to .claude/skills/ and .cursor/skills/ in your project root and tracked in .grafana-skills.lock.json.
# Reinstall from lockfile (useful in CI or after cloning)
npx @grafana/grafana-skills install
# Update to latest skills from GitHub
npx @grafana/grafana-skills update
# Add this marketplace
claude plugin marketplace add grafana/skills
# Install the plugin(s) you want
claude plugin install grafana-plugins@grafana-skills
claude plugin install grafana-core@grafana-skills
claude plugin install grafana-cloud@grafana-skills
https://github.com/grafana/skillsSkills stay synced with the repository automatically.
Any tool following the Agent Skills standard or the skills/ directory convention:
npx skills add grafana/skills
Skills are organized into plugin groups. All skill files live under skills/<plugin-name>/.
Core Grafana concepts — dashboards, panels, PromQL, and visualization.
Coming soon.
Grafana Cloud — Loki, Tempo, Pyroscope, and the LGTM observability stack.
Coming soon.
Skills for building Grafana plugins — bundle optimisation, code splitting, and plugin development.
| Skill | Description |
|---|---|
plugin-bundle-size | Optimise Grafana app plugin bundle size using React.lazy, Suspense, and webpack code splitting |
react-19-plugin-migration | Migrate a Grafana plugin to React 19 compatibility |
We welcome contributions! See CONTRIBUTING.md for how to add a new skill.
Quick start:
template/SKILL.md to skills/<your-skill-name>/SKILL.md./scripts/lint-skills.sh skills to validategrafana-skills/
├── .claude-plugin/marketplace.json # Claude Code marketplace manifest
├── .cursor-plugin/marketplace.json # Cursor marketplace manifest (identical)
├── .agents-plugin/marketplace.json # Codex marketplace manifest (identical)
├── skill-registry.json # Machine-readable manifest for grafana-skills CLI
├── skills/ # All skills, grouped by plugin
│ ├── grafana-core/
│ ├── grafana-cloud/
│ └── grafana-plugins/
│ ├── plugin-bundle-size/SKILL.md
│ └── react-19-plugin-migration/SKILL.md
├── packages/cli/ # npx grafana-skills CLI source
├── template/SKILL.md # Starter template for new skills
├── scripts/lint-skills.sh # Local skill validation
└── .github/workflows/ # CI validation + CLI publish
Apache License 2.0 - see LICENSE.