""" The Housekeeper - Home Automation Agent. Provides home automation capabilities through the core-api service, which wraps the Home Assistant REST API into LLM-friendly endpoints. """ from src.agents.housekeeper.agent import run_housekeeper, run_housekeeper_stream from src.agents.housekeeper.capability import ( HOUSEKEEPER_CAPABILITY, register_housekeeper, ) from src.agents.housekeeper.client import CoreAPIClient, get_core_api_client __all__ = [ # Agent entry points "run_housekeeper", "run_housekeeper_stream", # Capability "HOUSEKEEPER_CAPABILITY", "register_housekeeper", # Client "CoreAPIClient", "get_core_api_client", ]