Merge branch 'main' into musa/codex-cli

This commit is contained in:
Musa 2026-03-09 10:13:36 -07:00
commit 6b37c5a133
No known key found for this signature in database
2 changed files with 51 additions and 1 deletions

View file

@ -509,9 +509,21 @@ def generate_prompt_targets(file):
is_flag=True,
)
@click.option("--follow", help="Follow the logs", is_flag=True)
def logs(debug, follow):
@click.option(
"--docker",
default=False,
help="Stream logs from a Docker-based Plano instance.",
is_flag=True,
)
def logs(debug, follow, docker):
"""Stream logs from access logs services."""
if not docker:
from planoai.native_runner import native_logs
native_logs(debug=debug, follow=follow)
return
plano_process = None
try:
if debug: