{
  "schemaVersion": "1.0",
  "item": {
    "slug": "rpe-grafana",
    "name": "rpe-grafana",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/DarkStarDS9/rpe-grafana",
    "canonicalUrl": "https://clawhub.ai/DarkStarDS9/rpe-grafana",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/rpe-grafana",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rpe-grafana",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "openclaw.plugin.json",
      "index.js",
      "package.json",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/rpe-grafana"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/rpe-grafana",
    "agentPageUrl": "https://openagent3.xyz/skills/rpe-grafana/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rpe-grafana/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rpe-grafana/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Grafana Skill",
        "body": "Read current values from any Grafana dashboard without writing queries. The plugin navigates by dashboard and panel name, extracts the panel's existing query configuration, and returns a compact summary — no PromQL, SQL, or datasource knowledge required.\n\nWorks with any Grafana datasource (Prometheus, InfluxDB, MySQL, …)."
      },
      {
        "title": "When to Use",
        "body": "✅ USE this skill when:\n\nAsked about a value that's visible in a Grafana dashboard\nListing what dashboards or panels are available\nRetrieving the current or recent value of a metric by panel name"
      },
      {
        "title": "When NOT to Use",
        "body": "❌ DON'T use this skill when:\n\nWriting, modifying, or creating dashboards → use Grafana UI\nAdmin operations (users, datasource config, alerts) → use Grafana API directly\nYou need to run an arbitrary query not backed by an existing panel"
      },
      {
        "title": "Setup",
        "body": "Add to your openclaw.json:\n\n{\n  \"plugins\": {\n    \"entries\": {\n      \"rpe-grafana\": {\n        \"enabled\": true,\n        \"config\": {\n          \"url\": \"http://your-grafana:3000\",\n          \"user\": \"your-username\",\n          \"password\": \"your-password\"\n        }\n      }\n    }\n  }\n}\n\nOr set environment variables:\n\nGRAFANA_URL - Grafana base URL\nGRAFANA_USER - Username\nGRAFANA_PASSWORD - Password or API key"
      },
      {
        "title": "grafana_list_dashboards",
        "body": "List all available dashboards.\n\nParameters: none\n\nReturns: [{ uid, title }]"
      },
      {
        "title": "grafana_list_panels",
        "body": "List all panels in a dashboard.\n\nParameters:\n\ndashboard_uid (required) - Dashboard UID from grafana_list_dashboards\n\nReturns: [{ id, title }]"
      },
      {
        "title": "grafana_query_panel",
        "body": "Read the current data for a specific panel. Fetches the panel's query configuration from the dashboard and executes it via Grafana's datasource API — no query language knowledge needed.\n\nParameters:\n\ndashboard_uid (required) - Dashboard UID\npanel_id (required) - Panel ID from grafana_list_panels\nfrom (optional) - Start of time range (default: now-1h)\nto (optional) - End of time range (default: now)\n\nReturns: [{ refId, name, lastValue, unit }]"
      },
      {
        "title": "Typical Workflow",
        "body": "grafana_list_dashboards → find the dashboard UID\ngrafana_list_panels → find the panel ID by title\ngrafana_query_panel → get the current value"
      },
      {
        "title": "Notes",
        "body": "Requires a Grafana user with read access (Viewer role is sufficient)\nDashboard UIDs are stable identifiers; panel IDs are unique within a dashboard\nRow panels are flattened automatically"
      }
    ],
    "body": "Grafana Skill\n\nRead current values from any Grafana dashboard without writing queries. The plugin navigates by dashboard and panel name, extracts the panel's existing query configuration, and returns a compact summary — no PromQL, SQL, or datasource knowledge required.\n\nWorks with any Grafana datasource (Prometheus, InfluxDB, MySQL, …).\n\nWhen to Use\n\n✅ USE this skill when:\n\nAsked about a value that's visible in a Grafana dashboard\nListing what dashboards or panels are available\nRetrieving the current or recent value of a metric by panel name\nWhen NOT to Use\n\n❌ DON'T use this skill when:\n\nWriting, modifying, or creating dashboards → use Grafana UI\nAdmin operations (users, datasource config, alerts) → use Grafana API directly\nYou need to run an arbitrary query not backed by an existing panel\nSetup\n\nAdd to your openclaw.json:\n\n{\n  \"plugins\": {\n    \"entries\": {\n      \"rpe-grafana\": {\n        \"enabled\": true,\n        \"config\": {\n          \"url\": \"http://your-grafana:3000\",\n          \"user\": \"your-username\",\n          \"password\": \"your-password\"\n        }\n      }\n    }\n  }\n}\n\n\nOr set environment variables:\n\nGRAFANA_URL - Grafana base URL\nGRAFANA_USER - Username\nGRAFANA_PASSWORD - Password or API key\nTools\ngrafana_list_dashboards\n\nList all available dashboards.\n\nParameters: none\n\nReturns: [{ uid, title }]\n\ngrafana_list_panels\n\nList all panels in a dashboard.\n\nParameters:\n\ndashboard_uid (required) - Dashboard UID from grafana_list_dashboards\n\nReturns: [{ id, title }]\n\ngrafana_query_panel\n\nRead the current data for a specific panel. Fetches the panel's query configuration from the dashboard and executes it via Grafana's datasource API — no query language knowledge needed.\n\nParameters:\n\ndashboard_uid (required) - Dashboard UID\npanel_id (required) - Panel ID from grafana_list_panels\nfrom (optional) - Start of time range (default: now-1h)\nto (optional) - End of time range (default: now)\n\nReturns: [{ refId, name, lastValue, unit }]\n\nTypical Workflow\ngrafana_list_dashboards → find the dashboard UID\ngrafana_list_panels → find the panel ID by title\ngrafana_query_panel → get the current value\nNotes\nRequires a Grafana user with read access (Viewer role is sufficient)\nDashboard UIDs are stable identifiers; panel IDs are unique within a dashboard\nRow panels are flattened automatically"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/DarkStarDS9/rpe-grafana",
    "publisherUrl": "https://clawhub.ai/DarkStarDS9/rpe-grafana",
    "owner": "DarkStarDS9",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/rpe-grafana",
    "downloadUrl": "https://openagent3.xyz/downloads/rpe-grafana",
    "agentUrl": "https://openagent3.xyz/skills/rpe-grafana/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rpe-grafana/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rpe-grafana/agent.md"
  }
}