#!/usr/bin/env python3
"""WolfPanel Agent entrypoint.

Thin wrapper so the agent can be invoked as `python src/main.py <command>` in
development or via the installed `wolfpanel-agent` wrapper in production.
"""

from __future__ import annotations

import sys

from cli import main

if __name__ == "__main__":
    sys.exit(main())
