()
| 37 | // regardless of subscription tier — not all ants are max/pro, and per |
| 38 | // CLAUDE.md:281, USER_TYPE !== 'ant' branches get zero antfooding. |
| 39 | function hasRequiredSubscription(): boolean { |
| 40 | if (process.env.USER_TYPE === 'ant') return true |
| 41 | const tier = getSubscriptionType() |
| 42 | return tier === 'max' || tier === 'pro' |
| 43 | } |
| 44 | |
| 45 | export function getChicagoEnabled(): boolean { |
| 46 | // Disable for ants whose shell inherited monorepo dev config. |
no test coverage detected