Vant skill audit ops
Skill dhaupin/vant/models/public/skills/vant-skill-audit-ops
Vant: Durable AI memory + cold storage + runtime for agents, with generational evolution, stored passively via GitHub. Built for long-running autonomous sessions, using file based persistence.
npx -y skills add dhaupin/vant --skill vant-skill-audit-opsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Is it running?
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.6 KB, as published. Nobody here has run it
Ops Audit
Is it running?
The Question
Is it up? Is it working?
What To Check
1. Health
# 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 |
2. Metrics
# Common endpoints
/readyz
/healthz
/metrics
| Metric | What It Shows |
|---|---|
| Memory | Under OOM? |
| CPU | Under load? |
| Requests | Traffic |
| Errors | Failures |
3. Logs
# Check errors
tail -100 logs/app.log | grep -i error
| Check | Look For |
|---|---|
| Errors | ERROR, FATAL |
| Warnings | WARN |
| Slow | > 1s |
4. Resources
# Is there capacity?
df -h # disk
free -h # memory
uptime # load
| Check | Limit |
|---|---|
| Disk | < 80% |
| Memory | < 80% |
| CPU | < 80% |
Output
## 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
| 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.