audit-ops — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited audit-ops (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Is it running?
Is it up? Is it working?
# Is it up?
curl -s -o /dev/null -w "%{http_code}" /health
# or
curl localhost:3000/health| Check | Response |
|---|---|
| 200 | OK |
| 500 | BROKEN |
| Timeout | DOWN |
# Common endpoints
/readyz
/healthz
/metrics| Metric | What It Shows |
|---|---|
| Memory | Under OOM? |
| CPU | Under load? |
| Requests | Traffic |
| Errors | Failures |
# Check errors
tail -100 logs/app.log | grep -i error| Check | Look For |
|---|---|
| Errors | ERROR, FATAL |
| Warnings | WARN |
| Slow | > 1s |
# Is there capacity?
df -h # disk
free -h # memory
uptime # load| Check | Limit |
|---|---|
| Disk | < 80% |
| Memory | < 80% |
| CPU | < 80% |
## Ops Audit - [system]
### Health
- [UP/DOWN] Status: [code]
- [UP/DOWN] /readyz: [code]
### Metrics
- Requests: [count/hr]
- Errors: [count/hr]
- Latency: P[95]ms
### Resources
- CPU: [x]%
- Memory: [x]%
- Disk: [x]%
### Issues
- [list]| Severity | Meaning | Action |
|---|---|---|
| DOWN | Not working | Fix now |
| DEGRADED | Partially working | Fix soon |
| WARNING | Risk | Monitor |
Role: Ops Auditor Input: System Output: Is it running?
Keep it running.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.