import type { AttentionItem } from '../AttentionPanel'

export const ATTENTION_ITEMS: AttentionItem[] = [
  {
    id: 'decision-t4',
    severity: 'action',
    title: 'Decision · t4 Backfill integrity',
    sub: 'waiting · blocks t5 land',
    detail: <>Irreversible write needs a human decision. → Review the blast radius.</>,
    actions: [{ label: 'Decide…', kind: 'primary', onClick() {} }],
  },
  {
    id: 'gate-t2',
    severity: 'critical',
    title: 'Gate failed twice · t2 Write-path validation',
    detail: <>Same test failed twice. → Read the repeated failure.</>,
    actions: [{ label: 'Open failure', onClick() {} }],
  },
  {
    id: 'capacity-codex',
    severity: 'info',
    title: 'Capacity limited · codex',
    detail: <>Parked work resumes automatically. → Waiting is safe.</>,
    actions: [{ label: 'Resolve…', kind: 'ghost', onClick() {} }],
  },
]
