Pipeline Incident Commander
When a pipeline fails, the Commander spawns parallel sub-agents to read logs, profile the warehouse, and notify owners — then posts a structured incident report with a proposed fix to Slack.
import { agent } from "@paradime/dino-sdk"; export default agent({ name: "incident-commander", on: "airflow.dag.failed", spawn: ["log_analyzer", "warehouse_profiler", "owner_notifier"], post: "#data-incidents" });
