Skip to main content
Version: 2.0

Incidents

Track production incidents against the task they relate to. See the incident flow and the /task-incident agent.

🤖 Agent-driven

/task-incident calls these for you. You usually don't run them by hand.

CommandPurpose
incident-createOpen an incident on a task. Flags: --id, --title, --severity critical|high|medium|low.
incident-statusUpdate an incident's status. Flags: --id, --incident, --status investigating|production-fix|verified|closed.
incident-resolveResolve an incident with root cause + fix. Flags: --id, --incident, --rootCause, --fix.
incident-listList incidents on a task. Flag: --id.

Example​

insight-flow incident-create --id N42 --title "Login 500s" --severity high
insight-flow incident-status --id N42 --incident 1 --status investigating
insight-flow incident-resolve --id N42 --incident 1 \
--rootCause "Null session on cold start" --fix "Guard + warm cache"
insight-flow incident-list --id N42