skills$openclaw/prometheus
mrgoodb3.0k

by mrgoodb

prometheus – OpenClaw Skill

prometheus is an OpenClaw Skills integration for coding workflows. Query metrics via Prometheus API. Run PromQL queries and manage alerts.

3.0k stars3.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameprometheus
descriptionQuery metrics via Prometheus API. Run PromQL queries and manage alerts. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/prometheus
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/prometheus
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains prometheus in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
273 B
SKILL.md
823 B
SKILL.md

name: prometheus description: Query metrics via Prometheus API. Run PromQL queries and manage alerts. metadata: {"clawdbot":{"emoji":"🔥","requires":{"env":["PROMETHEUS_URL"]}}}

Prometheus

Metrics and monitoring.

Environment

export PROMETHEUS_URL="http://prometheus.example.com:9090"

Query Metrics

curl "$PROMETHEUS_URL/api/v1/query?query=up"

Range Query

curl "$PROMETHEUS_URL/api/v1/query_range?query=rate(http_requests_total[5m])&start=2024-01-30T00:00:00Z&end=2024-01-30T12:00:00Z&step=60"

List Targets

curl "$PROMETHEUS_URL/api/v1/targets"

List Alert Rules

curl "$PROMETHEUS_URL/api/v1/rules"
curl "$PROMETHEUS_URL/api/v1/alerts"
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install prometheus?

Run openclaw add @mrgoodb/prometheus in your terminal. This installs prometheus into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/prometheus. Review commits and README documentation before installing.