在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用audit-ops
星标3
分支1
更新时间2026年5月30日 01:17
Is it running?
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Is it running?
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Application programming interface.
Does CI work?
Did it work?
Is everything okay?
Does this meet standards?
Does it work well?
| name | audit-ops |
| description | Is it running? |
| license | MIT |
| metadata | {"author":"vant","version":"1.0"} |
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.