# Send rpe-grafana to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/rpe-grafana",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rpe-grafana",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "openclaw.plugin.json",
      "index.js",
      "package.json",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Grafana Skill

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.

Works with any Grafana datasource (Prometheus, InfluxDB, MySQL, …).

### When to Use

✅ USE this skill when:

Asked about a value that's visible in a Grafana dashboard
Listing what dashboards or panels are available
Retrieving the current or recent value of a metric by panel name

### When NOT to Use

❌ DON'T use this skill when:

Writing, modifying, or creating dashboards → use Grafana UI
Admin operations (users, datasource config, alerts) → use Grafana API directly
You need to run an arbitrary query not backed by an existing panel

### Setup

Add to your openclaw.json:

{
  "plugins": {
    "entries": {
      "rpe-grafana": {
        "enabled": true,
        "config": {
          "url": "http://your-grafana:3000",
          "user": "your-username",
          "password": "your-password"
        }
      }
    }
  }
}

Or set environment variables:

GRAFANA_URL - Grafana base URL
GRAFANA_USER - Username
GRAFANA_PASSWORD - Password or API key

### grafana_list_dashboards

List all available dashboards.

Parameters: none

Returns: [{ uid, title }]

### grafana_list_panels

List all panels in a dashboard.

Parameters:

dashboard_uid (required) - Dashboard UID from grafana_list_dashboards

Returns: [{ id, title }]

### grafana_query_panel

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.

Parameters:

dashboard_uid (required) - Dashboard UID
panel_id (required) - Panel ID from grafana_list_panels
from (optional) - Start of time range (default: now-1h)
to (optional) - End of time range (default: now)

Returns: [{ refId, name, lastValue, unit }]

### Typical Workflow

grafana_list_dashboards → find the dashboard UID
grafana_list_panels → find the panel ID by title
grafana_query_panel → get the current value

### Notes

Requires a Grafana user with read access (Viewer role is sufficient)
Dashboard UIDs are stable identifiers; panel IDs are unique within a dashboard
Row panels are flattened automatically
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: DarkStarDS9
- Version: 1.0.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/rpe-grafana)
- [Send to Agent page](https://openagent3.xyz/skills/rpe-grafana/agent)
- [JSON manifest](https://openagent3.xyz/skills/rpe-grafana/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/rpe-grafana/agent.md)
- [Download page](https://openagent3.xyz/downloads/rpe-grafana)