#!/usr/bin/env python3
"""Backward-compatible repo-local wrapper for the simple Engram CLI."""

from engram.cli.simple import cli_entry


if __name__ == "__main__":
    cli_entry()
