import type { InboxItemProps } from '../InboxItem'

/** Matches docs/mockups/deck-overview-v2.html "Needs you now" rows. */
export const INBOX_FIXTURES: InboxItemProps[] = [
  {
    dot: 'red',
    title: 'Orphan agent burning 94% CPU for 3h12m',
    subtitle: 'cursor-agent 88231 · ignores SIGTERM · agent-guard',
    actions: [{ label: 'Kill', primary: true }, { label: 'Snooze' }],
  },
  {
    dot: 'red',
    title: 'multideal CI #4821 failed — e2e checkout spec',
    subtitle: 'laptop runner · 2nd failure today, same spec',
    actions: [{ label: 'Re-run', primary: true }, { label: 'Logs' }],
  },
  {
    dot: 'amber',
    title: 'Plan HALT: dep-provisioning needs a decision',
    subtitle: 'wave 3 · "pin drizzle 0.44 or bump?" · waiting 42m',
    actions: [{ label: 'Answer', primary: true }],
  },
  {
    dot: 'amber',
    title: 'Claude account A at 78% — caps in ~55m',
    subtitle: 'systray-ai forecast · account B at 23%',
    actions: [{ label: 'Rotate', primary: true }],
    isLast: true,
  },
]
