Install
openclaw skills install proactive-ops-monitorProactive operations monitoring for OpenClaw agents. Tracks token utilization, memory layer health, and generates alerts. Provides `/health` dashboard and auto-suggestions for open loops. Works with memory-stack-core to prevent context overflow.
openclaw skills install proactive-ops-monitorStop being reactive. This skill turns your agent into a proactive partner that warns you before problems hit and suggests next steps.
/health command or tool("proactive-ops-monitor", "health_dashboard")
Shows:
🛡️ OpenClaw Ops Dashboard
============================
Token Utilization: 62% (74k / 120k)
Memory Layers:
• WAL entries: 1,234 (12KB)
• Working buffer: 5.2KB (last 3 turns)
• Daily logs: 7
Status: ✅ Healthy
Alerts:
• None
Suggestions (1):
1. Session bridge file missing → run /init
Estimates current context tokens (via char count / 4). Monitors continuously.
Thresholds (configurable):
When threshold crossed:
memory/ops-alerts.jsonl/wrap_up or compactAlerts stored in memory/ops-alerts.jsonl:
{
"timestamp": "2026-04-01T16:30:00Z",
"level": "warning",
"metric": "token_utilization",
"value": 72,
"message": "Token usage at 72%. Consider /wrap_up soon."
}
tool("proactive-ops-monitor", "suggest_next", {"limit": 3})
Scans:
memory/wal.jsonl (category=draft, decision)notes/areas/open-loops.mdOutputs suggested next actions:
[
{
"type": "open_loop",
"content": "Build ollama binary on external machine",
"context": "mentioned 2 days ago",
"priority": "high"
},
{
"type": "context",
"content": "Finish integrating ToolRegistry into core agent"
}
]
When configured, agent will automatically prepend a suggestion to its response if:
Configurable via proactive-ops-config.json.
proactive-ops-config.json in workspace root:
{
"alerts": {
"token_warning": 70,
"token_critical": 85,
"buffer_warning_size_kb": 5000
},
"suggestions": {
"enabled": true,
"max_per_turn": 1,
"include_open_loops": true,
"include_context_gaps": true
},
"dashboard": {
"show_suggestions": true,
"show_alerts": true
}
}
Interactive slash commands:
/health — show dashboard/utilization — show token %/suggest — show proactive next steps/alerts — show recent alertsTool calls:
tool("proactive-ops-monitor", "health_dashboard", {"format": "text"})
tool("proactive-ops-monitor", "suggest_next", {"limit": 3})
$99/mo includes:
Inspired by auto-monitor and proactive-agent-lite from ClawHub.