# Send SLA Monitor 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": "sla-monitor",
    "name": "SLA Monitor",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/1kalin/sla-monitor",
    "canonicalUrl": "https://clawhub.ai/1kalin/sla-monitor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/sla-monitor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sla-monitor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.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/sla-monitor"
    },
    "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/sla-monitor",
    "downloadUrl": "https://openagent3.xyz/downloads/sla-monitor",
    "agentUrl": "https://openagent3.xyz/skills/sla-monitor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sla-monitor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sla-monitor/agent.md"
  }
}
```
## Documentation

### Purpose

Help teams set up production-grade monitoring for AI agents and automated services. Covers uptime tracking, response time SLAs, error budgets, and incident escalation.

### When to Use

Deploying AI agents to production
Setting up monitoring for client-facing automation
Creating SLA documentation for service agreements
Building incident response procedures

### Option 1: UptimeRobot (Free tier available)

50 monitors free, 5-minute intervals
HTTP, keyword, ping, port monitors
Email + Slack + webhook alerts

### Option 2: Better Stack (Formerly Uptime.com)

Status pages included
Incident management built-in
Free tier: 10 monitors

### Option 3: Self-Hosted (Uptime Kuma)

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

### Tier 1: Standard ($1,500/mo)

99.5% uptime guarantee (43.8h downtime/year)
Response within 4 hours (business hours)
Monthly performance report

### Tier 2: Professional ($3,000/mo)

99.9% uptime guarantee (8.76h downtime/year)
Response within 1 hour (business hours)
Weekly performance reports
Quarterly optimization reviews

### Tier 3: Enterprise ($5,000+/mo)

99.95% uptime (4.38h downtime/year)
Response within 15 minutes (24/7)
Real-time dashboard access
Dedicated support channel

### Alert Configuration Template

monitors:
  - name: "Agent Health Check"
    type: http
    url: "https://your-agent-endpoint/health"
    interval: 300  # 5 minutes
    alerts:
      - type: email
        threshold: 1  # alert after 1 failure
      - type: slack
        webhook: "${SLACK_WEBHOOK}"
        threshold: 2  # alert after 2 consecutive failures
      - type: sms
        threshold: 3  # escalate after 3 failures

  - name: "API Response Time"
    type: http
    url: "https://your-agent-endpoint/api"
    interval: 60
    expected_response_time: 2000  # ms
    alerts:
      - type: slack
        condition: "response_time > 5000"

error_budget:
  monthly_target: 99.9
  burn_rate_alert: 2.0  # Alert if burning 2x normal rate

### Severity 1 — Total Outage

Acknowledge within 5 minutes
Status page update within 10 minutes
Root cause identification within 30 minutes
Resolution or workaround within 2 hours
Post-mortem within 24 hours

### Severity 2 — Degraded Performance

Acknowledge within 15 minutes
Investigation within 30 minutes
Resolution within 4 hours
Summary report within 48 hours

### Severity 3 — Minor Issue

Acknowledge within 1 hour
Resolution within 24 hours
Logged for next review cycle

### Error Budget Calculator

Monthly minutes: 43,200 (30 days)
99.9% SLA = 43.2 minutes downtime allowed
99.5% SLA = 216 minutes downtime allowed
99.0% SLA = 432 minutes downtime allowed

Burn rate = (actual downtime / budget) × 100
If burn rate > 50% with 2+ weeks remaining → review needed
If burn rate > 80% → freeze deployments

### Status Page Template

Provide clients with a public status page showing:

Current system status (operational / degraded / outage)
Component-level status (Agent A, Agent B, API, Dashboard)
Uptime percentage (30-day rolling)
Incident history with resolution notes
Scheduled maintenance windows

### Next Steps

Need managed AI agents with built-in SLA monitoring?
→ AfrexAI handles deployment, monitoring, and maintenance for $1,500/mo
→ Book a call: https://calendly.com/cbeckford-afrexai/30min
→ Learn more: https://afrexai-cto.github.io/aaas/landing.html
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: 1kalin
- Version: 1.0.0
## 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-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/sla-monitor)
- [Send to Agent page](https://openagent3.xyz/skills/sla-monitor/agent)
- [JSON manifest](https://openagent3.xyz/skills/sla-monitor/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/sla-monitor/agent.md)
- [Download page](https://openagent3.xyz/downloads/sla-monitor)