Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める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.