SLA Monitor

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If you run this command, it will start a long-running monitoring service on the host using a third-party container image.

Why it was flagged

This optional self-hosted monitoring command would pull and run a Docker container, expose port 3001, create a volume, and keep the service restarting; this is aligned with the monitoring purpose but is executable and persistent if used.

Skill content
docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1
Recommendation

Run it only on an intended host, verify the container image and version, review the exposed port and volume, and know how to stop or remove the container.

What this means

If a real Slack webhook is exposed or committed into a shared config, others may be able to send messages to that Slack channel.

Why it was flagged

The alert configuration template expects a Slack webhook secret for notifications; this is expected for Slack alerting, but a real webhook grants posting ability to the configured Slack destination.

Skill content
webhook: "${SLACK_WEBHOOK}"
Recommendation

Store the webhook securely, use a channel-specific or least-privilege integration, and avoid committing real webhook values into generated files.