"""Morrowind engine-agnostic perception/command protocol. This package implements the Perception/Command protocol defined in ``docs/protocol/morrowind-perception-command-spec.md``. It provides: - Pydantic v2 schemas for runtime validation (``schemas``) - SQLite command logging and query interface (``command_log``) - Training-data export pipeline (``training_export``) - FastAPI HTTP harness for perception/command exchange (``api``) """ from .schemas import CommandInput, CommandType, EntityType, PerceptionOutput __all__ = [ "CommandInput", "CommandType", "EntityType", "PerceptionOutput", ]