"""Hook the Meridian domain into the global DomainRegistry. The concrete action and task definitions are exposed by this package's ``actions.py`` and ``tasks.py``. This file only glues them to the registry. """ from __future__ import annotations from ...core import register_domain from .actions import ACTIONS from .tasks import task_templates register_domain( name="meridian", description=( "Meridian — social-drama reversibility track. A mid-sized company " "where irreversible actions (firing, public statements, legal " "commitments) cascade through trust and options. The original " "alternate domain demonstrating domain-agnostic pipeline." ), actions=ACTIONS, task_templates=task_templates(), )