agentsclimarketplace

Dashboard generator

Skill a5c-ai/babysitter/library/specializations/software-architecture/skills/dashboard-generator

Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration

Install
npx -y skills add a5c-ai/babysitter --skill dashboard-generator

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

Generate monitoring dashboards for Grafana and DataDog with alert integration

SKILL.md

3.3 KB, as published. Nobody here has run it

Dashboard Generator Skill

Overview

Generates monitoring dashboards for Grafana and DataDog from JSON/YAML definitions with panel configuration and alert rule integration.

Capabilities

  • Generate Grafana dashboards from JSON/YAML
  • DataDog dashboard creation
  • Panel configuration and templates
  • Alert rule integration
  • Variable templating
  • Annotation support
  • Dashboard versioning
  • Row and panel layouts

Target Processes

  • observability-implementation
  • performance-optimization
  • resilience-patterns

Input Schema

{
  "type": "object",
  "required": ["dashboards"],
  "properties": {
    "dashboards": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "type": { "type": "string", "enum": ["service", "infrastructure", "business", "slo"] },
          "metrics": { "type": "array" },
          "panels": { "type": "array" }
        }
      }
    },
    "platform": {
      "type": "string",
      "enum": ["grafana", "datadog", "cloudwatch"],
      "default": "grafana"
    },
    "options": {
      "type": "object",
      "properties": {
        "datasource": {
          "type": "string",
          "default": "prometheus"
        },
        "refreshInterval": {
          "type": "string",
          "default": "30s"
        },
        "timeRange": {
          "type": "string",
          "default": "6h"
        },
        "includeAlerts": {
          "type": "boolean",
          "default": true
        },
        "variables": {
          "type": "array"
        }
      }
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "dashboards": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "uid": { "type": "string" },
          "json": { "type": "object" },
          "path": { "type": "string" }
        }
      }
    },
    "alerts": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "condition": { "type": "string" },
          "threshold": { "type": "number" }
        }
      }
    },
    "variables": {
      "type": "array"
    }
  }
}

Usage Example

{
  kind: 'skill',
  skill: {
    name: 'dashboard-generator',
    context: {
      dashboards: [
        {
          name: 'API Service Overview',
          type: 'service',
          metrics: ['http_requests_total', 'http_request_duration_seconds'],
          panels: [
            { type: 'graph', title: 'Request Rate' },
            { type: 'stat', title: 'Error Rate' }
          ]
        }
      ],
      platform: 'grafana',
      options: {
        datasource: 'prometheus',
        includeAlerts: true
      }
    }
  }
}

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.