grafana-helper
Complete Grafana operations via REST API - dashboards, Prometheus/Loki queries, alerting, annotations, Sift When user mentions Grafana, dashboards, Prometheus, Loki, metrics, logs, alerts, PromQL, LogQL
What this skill does
# Grafana Helper Agent
## Overview
Complete Grafana operations via REST API. This skill replaces Grafana MCP server functionality, providing API equivalents for all operations.
## MCP Tool Equivalents Reference
| MCP Tool | API Equivalent |
| --------------------------------- | -------------------------------------------------------------------------------------- |
| `search_dashboards` | `curl "$URL/api/search?query=..."` |
| `get_dashboard_by_uid` | `curl "$URL/api/dashboards/uid/{uid}"` |
| `get_dashboard_summary` | Parse dashboard JSON response |
| `get_dashboard_property` | jq on dashboard JSON |
| `get_dashboard_panel_queries` | Extract from dashboard JSON |
| `update_dashboard` | `curl -X POST "$URL/api/dashboards/db"` |
| `list_datasources` | `curl "$URL/api/datasources"` |
| `get_datasource_by_uid` | `curl "$URL/api/datasources/uid/{uid}"` |
| `get_datasource_by_name` | `curl "$URL/api/datasources/name/{name}"` |
| `query_prometheus` | `curl "$URL/api/ds/query"` |
| `list_prometheus_metric_names` | `curl "$URL/api/datasources/proxy/{id}/api/v1/label/__name__/values"` |
| `list_prometheus_label_names` | `curl "$URL/api/datasources/proxy/{id}/api/v1/labels"` |
| `list_prometheus_label_values` | `curl "$URL/api/datasources/proxy/{id}/api/v1/label/{name}/values"` |
| `list_prometheus_metric_metadata` | `curl "$URL/api/datasources/proxy/{id}/api/v1/metadata"` |
| `query_loki_logs` | `curl "$URL/api/ds/query"` |
| `query_loki_stats` | `curl "$URL/api/datasources/proxy/{id}/loki/api/v1/index/stats"` |
| `list_loki_label_names` | `curl "$URL/api/datasources/proxy/{id}/loki/api/v1/labels"` |
| `list_loki_label_values` | `curl "$URL/api/datasources/proxy/{id}/loki/api/v1/label/{name}/values"` |
| `list_alert_rules` | `curl "$URL/api/v1/provisioning/alert-rules"` |
| `get_alert_rule_by_uid` | `curl "$URL/api/v1/provisioning/alert-rules/{uid}"` |
| `create_alert_rule` | `curl -X POST "$URL/api/v1/provisioning/alert-rules"` |
| `update_alert_rule` | `curl -X PUT "$URL/api/v1/provisioning/alert-rules/{uid}"` |
| `delete_alert_rule` | `curl -X DELETE "$URL/api/v1/provisioning/alert-rules/{uid}"` |
| `list_contact_points` | `curl "$URL/api/v1/provisioning/contact-points"` |
| `get_annotations` | `curl "$URL/api/annotations"` |
| `create_annotation` | `curl -X POST "$URL/api/annotations"` |
| `update_annotation` | `curl -X PUT "$URL/api/annotations/{id}"` |
| `patch_annotation` | `curl -X PATCH "$URL/api/annotations/{id}"` |
| `create_graphite_annotation` | `curl -X POST "$URL/api/annotations/graphite"` |
| `get_annotation_tags` | `curl "$URL/api/annotations/tags"` |
| `create_folder` | `curl -X POST "$URL/api/folders"` |
| `search_folders` | `curl "$URL/api/search?type=dash-folder"` |
| `list_sift_investigations` | `curl "$URL/api/plugins/grafana-sift-app/resources/investigations"` |
| `get_sift_investigation` | `curl "$URL/api/plugins/grafana-sift-app/resources/investigations/{id}"` |
| `get_sift_analysis` | `curl "$URL/api/plugins/grafana-sift-app/resources/investigations/{id}/analyses/{id}"` |
| `find_error_pattern_logs` | Via Sift plugin API |
| `find_slow_requests` | Via Sift plugin API |
| `get_assertions` | Via Asserts plugin API |
## Configuration
```bash
# Set environment variables
export GRAFANA_URL="https://your-grafana.com"
export GRAFANA_API_KEY="your-api-key"
# Service account tokens also use GRAFANA_API_KEY
# export GRAFANA_API_KEY="glsa_..."
# Auth header helper
AUTH="Authorization: Bearer $GRAFANA_API_KEY"
# Test connection
curl -H "$AUTH" "$GRAFANA_URL/api/health"
```
---
## Dashboard Operations
### Search Dashboards
```bash
# Search all dashboards
curl -H "$AUTH" "$GRAFANA_URL/api/search?type=dash-db"
# Search by query
curl -H "$AUTH" "$GRAFANA_URL/api/search?query=kubernetes"
# Search by tag
curl -H "$AUTH" "$GRAFANA_URL/api/search?tag=monitoring"
# Search in folder
curl -H "$AUTH" "$GRAFANA_URL/api/search?folderIds=1,2"
# Search starred dashboards
curl -H "$AUTH" "$GRAFANA_URL/api/search?starred=true"
# JSON output with jq
curl -H "$AUTH" "$GRAFANA_URL/api/search?query=api" | \
jq '.[] | {uid, title, folderTitle}'
```
### Get Dashboard by UID
```bash
# Get full dashboard
curl -H "$AUTH" "$GRAFANA_URL/api/dashboards/uid/{uid}"
# Extract just the dashboard JSON
curl -H "$AUTH" "$GRAFANA_URL/api/dashboards/uid/{uid}" | jq '.dashboard'
# Get dashboard metadata
curl -H "$AUTH" "$GRAFANA_URL/api/dashboards/uid/{uid}" | jq '.meta'
```
### Get Dashboard Summary
```bash
# Get summary info (title, panel count, etc.)
curl -H "$AUTH" "$GRAFANA_URL/api/dashboards/uid/{uid}" | \
jq '{
title: .dashboard.title,
uid: .dashboard.uid,
panelCount: (.dashboard.panels | length),
tags: .dashboard.tags,
folder: .meta.folderTitle,
url: .meta.url
}'
```
### Get Dashboard Property (JSONPath)
```bash
# Get title
curl -H "$AUTH" "$GRAFANA_URL/api/dashboards/uid/{uid}" | jq '.dashboard.title'
# Get all panel titles
curl -H "$AUTH" "$GRAFANA_URL/api/dashboards/uid/{uid}" | jq '.dashboard.panels[].title'
# Get first panel
curl -H "$AUTH" "$GRAFANA_URL/api/dashboards/uid/{uid}" | jq '.dashboard.panels[0]'
# Get templating variables
curl -H "$AUTH" "$GRAFANA_URL/api/dashboards/uid/{uid}" | jq '.dashboard.templating.list'
# Get all queries from panels
curl -H "$AUTH" "$GRAFANA_URL/api/dashboards/uid/{uid}" | \
jq '.dashboard.panels[].targets[]?.expr // empty'
```
### Get Dashboard Panel Queries
```bash
# Extract panel queries with datasource info
curl -H "$AUTH" "$GRAFANA_URL/api/dashboards/uid/{uid}" | \
jq '.dashboard.panels[] | {
title: .title,
type: .type,
datasource: .datasource,
queries: [.targets[]? | {expr: .expr, refId: .refId}]
}'
```
### Update/Create Dashboard
```bash
# Create/update dashboard
curl -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$GRAFANA_URL/api/dashboards/db" \
-d '{
"dashboarRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.