CLI Public API
The CLI package provides the interactive codex-django entrypoint plus the blueprint-rendering machinery used by scaffold commands.
Main entrypoints
codex_django_cli.mainfor launching the interactive CLI.codex_django_cli.engine.CLIEnginefor lower-level template rendering and scaffold generation.- compatibility imports from
codex_django.cli.*remain available via shim modules incodex-django.
Example
from codex_django_cli.main import main
raise SystemExit(main())
For prompt helpers, command handlers, and the lower-level scaffold engine modules, open CLI internals.