File contents Quality of Service
Does it work well?
The Question
Does it work reliably? Is it fast enough?
What To Check
1. Availability
# Uptime check
curl -s -o /dev/null -w "%{http_code}" /health
Uptime
Rating
99.9%
OK
99%
Warning
<99%
Bad
2. Latency
# Response time
time curl -s -o /dev/null URL
Latency
Rating
< 100ms
Great
< 500ms
OK
> 1s
Slow
3. Errors
# Error rate
errors / requests
Errors
Rating
< 0.1%
Great
< 1%
OK
> 1%
Bad
4. Capacity
Metric
Limit
Alert
Requests
< 80%
Warning
Connections
< 80%
Warning
Memory
< 80%
Ok
Output
## QoS - [service]
### Availability
- Uptime: 99.9%
- SLA: 99.9%
### Latency
- P50: [ms]ms
- P95: [ms]ms
- P99: [ms]ms
### Error Rate
- [x]% errors
- [x] errors in [y] requests
### Current Load
- Requests: [x]/s (of [y])
- Connections: [x] (of [y])
### SLA Met?
- [YES/NO]
SLA Guide
SLA
Downtime/Month
99%
7h 18m
99.9%
43m
99.99%
4m
Role : QoS AuditorInput : ServiceOutput : Does it meet SLA?
Keep it reliable.
1 --- 2 name: audit-qos 3 description: Does it work well? 4 license: MIT 5 --- 6 7 # Quality of Service 8 9 > Does it work well? 10 11 --- 12 13 ## The Question 14 15 **Does it work reliably? Is it fast enough?** 16 17 --- 18 19 ## What To Check 20 21 ### 1. Availability 22 23 ```bash 24 # Uptime check 25 curl -s -o /dev/null -w "%{http_code}" /health 26 ``` 27 28 | Uptime | Rating | 29 |--------|--------| 30 | 99.9% | OK | 31 | 99% | Warning | 32 | <99% | Bad | 33 34 ### 2. Latency 35 36 ```bash 37 # Response time 38 time curl -s -o /dev/null URL 39 ``` 40 41 | Latency | Rating | 42 |--------|--------| 43 | < 100ms | Great | 44 | < 500ms | OK | 45 | > 1s | Slow | 46 47 ### 3. Errors 48 49 ```bash 50 # Error rate 51 errors / requests 52 ``` 53 54 | Errors | Rating | 55 |--------|--------| 56 | < 0.1% | Great | 57 | < 1% | OK | 58 | > 1% | Bad | 59 60 ### 4. Capacity 61 62 | Metric | Limit | Alert | 63 |--------|-------|-------| 64 | Requests | < 80% | Warning | 65 | Connections | < 80% | Warning | 66 | Memory | < 80% | Ok | 67 68 --- 69 70 ## Output 71 72 ``` 73 ## QoS - [service] 74 75 ### Availability 76 - Uptime: 99.9% 77 - SLA: 99.9% 78 79 ### Latency 80 - P50: [ms]ms 81 - P95: [ms]ms 82 - P99: [ms]ms 83 84 ### Error Rate 85 - [x]% errors 86 - [x] errors in [y] requests 87 88 ### Current Load 89 - Requests: [x]/s (of [y]) 90 - Connections: [x] (of [y]) 91 92 ### SLA Met? 93 - [YES/NO] 94 ``` 95 96 --- 97 98 ## SLA Guide 99 100 | SLA | Downtime/Month | 101 |-----|----------------| 102 | 99% | 7h 18m | 103 | 99.9% | 43m | 104 | 99.99% | 4m | 105 106 --- 107 108 **Role**: QoS Auditor 109 **Input**: Service 110 **Output**: Does it meet SLA? 111 112 > Keep it reliable.
dhaupin/vant/tree/main/models/public/skills/vant-skill-audit-qos commit 29ffd93ea4
Frequently asked questions How do I install the Audit Qos skill? Run npx skillmds@latest add dhaupin/audit-qos in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Audit Qos skill do? Does it work well? It is listed under Security on SkillMD.
Is Audit Qos safe to use? This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Audit Qos? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Audit Qos free to use? Yes. Installing skills from SkillMD is free. This skill is licensed under MIT.
Who published Audit Qos? dhaupin (@dhaupin) published this skill. Their other Agent Skills are listed on their SkillMD profile.