import type { WrapperRateLimit } from '../WrapperCapacity'

export const LIMITED_CODEX: WrapperRateLimit = {
  wrapper: 'codex',
  active: true,
  account: 'personal',
  resumeAtMs: 1_700_000_060_000,
  wait: 1,
  max: 3,
  parkedTasks: ['t3', 't5'],
  affectedSeats: ['coder', 'fixer'],
}

export const CAPACITY_ACCOUNTS = [
  { slug: 'personal', health: 'limited' as const, note: 'current' },
  { slug: 'team', health: 'ready' as const, note: 'recommended' },
  { slug: 'backup', health: 'cooling' as const },
]
