Files
bot-bottle/cli.py
T
didericis 656dc88d76
test / run tests/run_tests.py (pull_request) Successful in 14s
refactor(env): make env resolution backend-agnostic
resolve_env_into(...) becomes resolve_env(manifest, agent) -> ResolvedEnv
(forwarded names + literals). The docker backend now owns env-file /
argv serialization and the --env-file newline check. Also drops stray
Docker references from manifest.py, pipelock.py, util.py, and trims
the duplicated command list from cli.py's docstring (usage() in
claude_bottle/cli/__init__.py is now the only listing).
2026-05-11 14:39:44 -04:00

13 lines
263 B
Python
Executable File

#!/usr/bin/env python3
"""cli.py — entry point for the claude-bottle CLI. Run with --help (or
no args) for the command list."""
from __future__ import annotations
import sys
from claude_bottle.cli import main
if __name__ == "__main__":
sys.exit(main())