Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

grafanagrafana 搜索

Agent Skill

grafana 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

235

周安装

10

GitHub Stars

公开资料未说明

下载量

82
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:grafana(grafana 搜索)
来源仓库:https://github.com/davidcastagnetoa/skills
仓库路径:skills/grafana
安装命令:
npx skills add https://github.com/davidcastagnetoa/skills --skill grafana
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/davidcastagnetoa/skills --skill grafana

简介

grafana 配置统一可视化平台,聚合 Prometheus、Loki、Jaeger 等多源监控数据。

  • 专为 KYC 管道设计实时仪表盘,展示验证流程状态、延迟与错误分布。
  • 独立于后端数据整理层,仅聚焦 Grafana 面板创建与维护。
  • 安装命令为 npx skills add https://github.com/davidcastagnetoa/skills --skill grafana。
  • 需提前部署好数据源(如 Prometheus),并提供访问权限与 dashboard 编辑能力。

SKILL.md

grafana

Configura Grafana como plataforma central de visualización y dashboarding para el sistema de verificación de identidad. Integra múltiples fuentes de datos (Prometheus, Loki, Jaeger, Elasticsearch) en dashboards unificados que muestran el estado del pipeline KYC en tiempo real. Este skill se centra exclusivamente en Grafana como capa de visualización, separada de los backends de datos.

When to use

Usar este skill cuando el observability_agent necesite crear, configurar o mantener dashboards de Grafana para visualizar métricas, logs y trazas del pipeline de verificación KYC, o cuando se necesite configurar datasources y alertas visuales.

Instructions

  1. Desplegar Grafana con Docker y provisioning automático de datasources: # docker-compose.yml grafana: image: grafana/grafana:10.2.0 ports: - "3000:3000" environment: - GF_SECURITY_ADMIN_PASSWORD=${GRAFANA_ADMIN_PASSWORD} - GF_USERS_ALLOW_SIGN_UP=false volumes: - grafana_data:/var/lib/grafana -./grafana/provisioning:/etc/grafana/provisioning -./grafana/dashboards:/var/lib/grafana/dashboards
  2. Configurar provisioning automático de datasources para el pipeline KYC: # grafana/provisioning/datasources/datasources.yml apiVersion: 1 datasources: - name: Prometheus type: prometheus access: proxy url: http://prometheus:9090 isDefault: true - name: Loki type: loki access: proxy url: http://loki:3100 - name: Jaeger type: jaeger access: proxy url: http://jaeger:16686 - name: Elasticsearch type: elasticsearch access: proxy url: http://elasticsearch:9200 database: "kyc-*" jsonData: timeField: "timestamp" esVersion: "8.0.0"
  3. Crear un dashboard principal de overview del pipeline KYC con paneles clave: {"dashboard": {"title": "KYC Pipeline - Overview", "panels": [{"title": "Verificaciones por Minuto", "type": "timeseries", "targets": [{"expr": "rate(kyc_verification_requests_total[5m])"}]}, {"title": "Tasa de Aprobación", "type": "gauge", "targets": [{"expr": "kyc:verification_success_rate:5m"}], "fieldConfig": {"defaults": {"thresholds": {"steps": [{"value": 0, "color": "red"}, {"value": 0.7, "color": "yellow"}, {"value": 0.9, "color": "green"}]}}}}, {"title": "Latencia p99 por Módulo", "type": "timeseries", "targets": [{"expr": "histogram_quantile(0.99, rate(kyc_verification_duration_seconds_bucket[5m]))"}]}, {"title": "Intentos de Spoofing Detectados", "type": "stat", "targets": [{"expr": "increase(kyc_verification_requests_total{status='rejected_spoofing'}[1h])"}]}]}}
  4. Crear un dashboard específico para análisis de fraude y liveness: {"dashboard": {"title": "KYC - Anti-Fraud & Liveness", "panels": [{"title": "Distribución de Confidence Scores", "type": "histogram", "targets": [{"expr": "kyc_confidence_score_bucket{module='face_match'}"}]}, {"title": "Tipos de Ataque Detectados", "type": "piechart", "targets": [{"expr": "sum by (attack_type) (increase(kyc_spoofing_detected_total[24h]))"}]}, {"title": "Logs de Verificaciones Rechazadas", "type": "logs", "datasource": "Loki", "targets": [{"expr": "{pipeline=\"kyc\"} | json | decision=\"REJECTED\""}]}]}}
  5. Configurar provisioning automático de dashboards desde archivos JSON: # grafana/provisioning/dashboards/dashboards.yml apiVersion: 1 providers: - name: 'KYC Dashboards' orgId: 1 folder: 'KYC Pipeline' type: file disableDeletion: false editable: true options: path: /var/lib/grafana/dashboards foldersFromFilesStructure: true
  6. Configurar alertas visuales en Grafana para notificaciones del pipeline KYC: # grafana/provisioning/alerting/contact-points.yml apiVersion: 1 contactPoints: - orgId: 1 name: kyc-ops-team receivers: - uid: slack-kyc type: slack settings: url: ${SLACK_WEBHOOK_URL} channel: "#kyc-alerts" - uid: email-kyc type: email settings: addresses: "kyc-ops@company.com"
  7. Configurar variables de template para filtrado dinámico en los dashboards: {"templating": {"list": [{"name": "module", "type": "query", "query": "label_values(kyc_verification_requests_total, module)", "datasource": "Prometheus"}, {"name": "environment", "type": "custom", "options": [{"text": "production", "value": "production"}, {"text": "staging", "value": "staging"}]}]}}

Notes

  • Organizar los dashboards en folders por dominio (Overview, Liveness, OCR, Face Match, Anti-Fraud) para mantener la navegabilidad a medida que el sistema crece.
  • Los dashboards deben incluir links de correlación entre paneles de métricas (Prometheus), logs (Loki) y trazas (Jaeger) para facilitar el drill-down durante incidentes.
  • Restringir el acceso a dashboards con datos sensibles de verificación mediante roles y permisos de Grafana; el equipo de operaciones no necesita ver los mismos datos que el equipo de compliance.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.99%
按下载量换算27

Claude

29.97%
按下载量换算25

Cursor

18.41%
按下载量换算15

Gemini CLI

9.36%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills