Openclaw Skill
/install inariwatch
InariWatch — AI Monitoring That Fixes Your Code
You are connected to InariWatch via MCP. You have access to 25 tools for monitoring, diagnosing, and fixing production issues autonomously.
InariWatch monitors GitHub, Vercel, Netlify, Cloudflare Pages, Render, Sentry, Datadog, Expo, and custom apps via the Capture SDK. When something breaks, it diagnoses the root cause with AI, generates a fix, opens a PR, waits for CI, and auto-merges through 11 safety gates.
Available tools
Check status
- "What's breaking in production?" -> use
query_alertsto list critical alerts - "Show me error trends this week" -> use
get_error_trendswithdays: 7 - "Is my site up?" -> use
get_uptimeto check all monitors - "Show project status" -> use
get_statusfor projects, integrations, and alert counts
Diagnose issues
- "What caused this error?" -> use
get_root_causewith the alert ID - "Assess risk for this PR" -> use
assess_riskwith owner, repo, and PR number - "Has anyone else fixed this?" -> use
search_community_fixeswith the error message - "Generate a post-mortem" -> use
get_postmortemwith the alert ID - "Get build logs" -> use
get_build_logsfor the latest failed deploy
Fix issues
- "Fix the latest critical alert" -> use
trigger_fixwith the alert ID to start AI remediation - "Roll back production" -> use
rollback_deploywith the project ID (works on Vercel, Netlify, Cloudflare Pages, Render) - "Silence this alert" -> use
silence_alertwith the alert ID - "Acknowledge this alert" -> use
acknowledge_alertto mark as read - "Reopen this alert" -> use
reopen_alertto reopen a resolved alert
Monitor and explore
- "Add uptime monitoring for api.example.com" -> use
create_uptime_monitorwith the URL - "Run a health check" -> use
run_health_checkfor all monitors - "Check if this can be reproduced" -> use
reproduce_bugwith the alert ID - "Simulate this fix" -> use
simulate_fixwith the alert ID and proposed changes - "Verify the remediation worked" -> use
verify_remediationwith the session ID - "Search my codebase for auth logic" -> use
search_codebasewith the query - "Reindex my codebase" -> use
reindex_codebasewith the project ID - "Ask about my infrastructure" -> use
ask_inariwith a natural language question
Important rules
- Always confirm before destructive actions.
trigger_fixandrollback_deploymodify production code and deployments. Ask the user for explicit confirmation before executing these. - rollback_deploy is irreversible in the sense that it changes the live deployment. The previous deployment is still available but the rollback happens immediately.
- Rate limits apply. Query tools: 200/min. Analysis tools: 30/min. Execution tools (fix, rollback): 5/min. If you hit a limit, wait and retry.
- All actions are scoped to the user's projects via their InariWatch token. You cannot access other users' data.
- trigger_fix starts an async pipeline. It returns a session ID immediately. The AI remediation runs in the background: diagnose -> read code -> generate fix -> security scan -> self-review -> push -> CI -> PR -> auto-merge gates. You can check progress with
verify_remediation. - Sampling tools (
get_root_cause,assess_risk,ask_inari,simulate_fix) return context for YOU to analyze. Process the returned data and provide your own analysis to the user.
Setup
The user needs an InariWatch account at https://app.inariwatch.com and a token from Settings -> API Tokens.
Option 1 — Auto-detect (recommended):
npx @inariwatch/mcp init
This detects OpenClaw and configures automatically.
Option 2 — Manual CLI:
openclaw mcp set inariwatch '{"url":"https://mcp.inariwatch.com","transport":"streamable-http","headers":{"Authorization":"Bearer YOUR_TOKEN"}}'
Option 3 — Edit config directly:
Add to ~/.openclaw/openclaw.json:
{
"mcp": {
"servers": {
"inariwatch": {
"url": "https://mcp.inariwatch.com",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
}
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install inariwatch - After installation, invoke the skill by name or use
/inariwatch - Provide required inputs per the skill's parameter spec and get structured output
What is Openclaw Skill?
AI monitoring that fixes your code — query alerts, trigger remediations, rollback deploys, chat with your infrastructure. It is an AI Agent Skill for Claude Code / OpenClaw, with 72 downloads so far.
How do I install Openclaw Skill?
Run "/install inariwatch" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Openclaw Skill free?
Yes, Openclaw Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Openclaw Skill support?
Openclaw Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Openclaw Skill?
It is built and maintained by Jesus Bernal (@orbita-pos); the current version is v1.0.0.