mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-05-21 23:24:44 +02:00
- Notification pipeline: categories -> rules -> channels - Channels: mesh broadcast, mesh DM, email (SMTP), webhook (generic) - Per-rule severity threshold and category filtering - Quiet hours with emergency override - LLM summarization for mesh delivery over 200 chars only - !subscribe shows available categories, easy mesh subscription - Dashboard notification rules API endpoints - Extensible channel system for future transports (Winlink, JS8Call) - config.yaml notification section with examples Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
6 lines
252 B
Python
6 lines
252 B
Python
"""Notification system for MeshAI alerts."""
|
|
|
|
from .categories import ALERT_CATEGORIES, get_category, list_categories
|
|
from .router import NotificationRouter
|
|
|
|
__all__ = ["ALERT_CATEGORIES", "get_category", "list_categories", "NotificationRouter"]
|