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"
}
}
}
}
}
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install inariwatch - 安装完成后,直接呼叫该 Skill 的名称或使用
/inariwatch触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Openclaw Skill 是什么?
AI monitoring that fixes your code — query alerts, trigger remediations, rollback deploys, chat with your infrastructure. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 72 次。
如何安装 Openclaw Skill?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install inariwatch」即可一键安装,无需额外配置。
Openclaw Skill 是免费的吗?
是的,Openclaw Skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Openclaw Skill 支持哪些平台?
Openclaw Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Openclaw Skill?
由 Jesus Bernal(@orbita-pos)开发并维护,当前版本 v1.0.0。