#!/usr/bin/env python3
"""Run agentwire from this checkout without installing it.

Installed copies use the console script `agentwire` (see [project.scripts] in
pyproject.toml). This file exists so a developer's hooks and shells can point
at the source tree: install.sh links it to ~/.local/bin when uv is absent.
"""
import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).resolve().parent.parent))

from agentwire.cli import run  # noqa: E402

if __name__ == "__main__":
    run()
