()
| 10 | // buzz instead of a single UTC-midnight spike, gentler on soul-gen load. |
| 11 | // Teaser window: April 1-7, 2026 only. Command stays live forever after. |
| 12 | export function isBuddyTeaserWindow(): boolean { |
| 13 | if ("external" === 'ant') return true; |
| 14 | const d = new Date(); |
| 15 | return d.getFullYear() === 2026 && d.getMonth() === 3 && d.getDate() <= 7; |
| 16 | } |
| 17 | export function isBuddyLive(): boolean { |
| 18 | if ("external" === 'ant') return true; |
| 19 | const d = new Date(); |
no outgoing calls
no test coverage detected