/** * Forgen — Desktop / webhook notification helper (ADR-008 §"테마 A 알림"). * * 0.4.6 신설 — rate-limit auto-resume 이 sleep 끝나고 재기동될 때 사용자에게 * 알림을 보냄 (노트북 닫고 잘 때 끝났는지 알 수 있어야 함). * * 정책: * - macOS: osascript 'display notification' * - Linux: notify-send (있으면) * - Windows: 생략 (PowerShell BurntToast 의존성 회피) * - webhook: ~/.forgen/config.json 의 notifyWebhookUrl 설정 시 POST * - fail-open: 모든 실패는 silent log */ /** * 통합 알림 진입점. desktop + webhook 둘 다 시도. * 모든 실패는 silent — 호출 측 차단 안 함. */ export declare function sendNotification(title: string, body: string): void;