一键导入
resolve-incident
Quickly resolve an open DatoCMS incident or complete a maintenance
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Quickly resolve an open DatoCMS incident or complete a maintenance
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | resolve-incident |
| description | Quickly resolve an open DatoCMS incident or complete a maintenance |
| disable-model-invocation | true |
You are helping the user quickly resolve an incident or complete a maintenance.
Read the most recent 10 files from both data/incidents/ and data/maintenances/ (sorted by filename descending). Identify which ones are unresolved:
resolvedcompletedIf there are no unresolved items, tell the user "No open incidents or maintenances found." and stop.
If there's exactly one, pre-select it but still confirm.
Present the unresolved ones to the user using AskUserQuestion, showing their name and current status.
Ask the user using AskUserQuestion:
Append a new entry to the updates array:
{
"date": "<current UTC timestamp in ISO 8601>",
"status": "resolved",
"content": "<resolution message>"
}
{
"date": "<current UTC timestamp in ISO 8601>",
"status": "completed",
"content": "<resolution message>"
}
Use the Edit tool to modify the file. Show the user the updated file contents.
Remind them to commit and deploy.