From manako
This skill should be used when the user asks to "インシデントを確認済みにして", "acknowledge incident", "ack incident", "インシデントXXXをack", "インシデントに対応済みマーク", "障害を確認済みにする", "incident acknowledge", "インシデント対応", "インシデント解決", "resolve incident". Acknowledges or resolves a Manako incident.
How this skill is triggered — by the user, by Claude, or both
Slash command
/manako:acknowledge-incidentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manako のインシデントを確認済み (acknowledged) にマーク、または手動で解決 (resolved) にする。
Manako のインシデントを確認済み (acknowledged) にマーク、または手動で解決 (resolved) にする。
which manako を実行 → 成功なら CLI を使用mcp__manako__incidents が存在するか確認 → あれば MCP を使用curl で API を直接呼び出しCLI:
manako incidents ack <incident-id>
MCP:
mcp__manako__incidents(action: "acknowledge", id: "<incident-id>")
API:
curl -s -X PUT -H "Authorization: Bearer $MANAKO_API_KEY" \
https://api.manako.dev/api/v1/incidents/<incident-id>/acknowledge
インシデントを手動で解決する。
CLI:
manako incidents resolve <incident-id> --cause "Root cause identified and fixed"
MCP:
mcp__manako__incidents(action: "resolve", id: "<incident-id>", cause: "Root cause identified and fixed")
API:
curl -s -X PUT -H "Authorization: Bearer $MANAKO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"cause": "Root cause identified and fixed"}' \
https://api.manako.dev/api/v1/incidents/<incident-id>/resolve
典型的なインシデント対応フロー:
list-incidents スキルで進行中のインシデントを確認manako incidents ack <id> で確認済みマークmanako incidents resolve <id> で手動解決resolve で手動解決するmanako incidents list --status ongoing で確認--cause オプションで解決時のメモを残せる(任意)npx claudepluginhub elchika-inc/manako-dev --plugin manakoRuns incident response workflow: triage severity and roles, draft communications, track mitigation, generate blameless postmortem from alerts or status updates.
Lists, retrieves details for, acknowledges, and resolves Better Stack incidents triggered by uptime monitors or manual reports. For incident triage and management.
Manages Rootly incidents: create, search, triage, update, resolve using MCP tools. Covers lifecycle, severity/status, AI analysis (find_related_incidents, suggest_solutions), alerts, action items.