4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
67 lines
1.8 KiB
Python
67 lines
1.8 KiB
Python
from __future__ import annotations
|
|
|
|
from surfaces.interactive_shell.ui.components.time_format import _fmt_timing
|
|
from surfaces.interactive_shell.ui.output.console_state import (
|
|
set_live_console,
|
|
stop_display,
|
|
unregister_live_console,
|
|
)
|
|
from surfaces.interactive_shell.ui.output.environment import (
|
|
_repl_progress_active,
|
|
_safe_print,
|
|
debug_print,
|
|
get_output_format,
|
|
)
|
|
from surfaces.interactive_shell.ui.output.events import ProgressEvent
|
|
from surfaces.interactive_shell.ui.output.renderers import (
|
|
render_completed_investigation_footer,
|
|
render_divider,
|
|
render_event,
|
|
render_footer,
|
|
render_investigation_header,
|
|
)
|
|
from surfaces.interactive_shell.ui.output.toggles import (
|
|
CtrlOToggleWatcher,
|
|
register_tool_detail_toggle,
|
|
suppress_stdin_watchers,
|
|
toggle_active_tool_details,
|
|
)
|
|
from surfaces.interactive_shell.ui.output.tracker import (
|
|
ProgressTracker,
|
|
get_tracker,
|
|
reset_tracker,
|
|
set_silent_tracker,
|
|
)
|
|
|
|
__all__ = [
|
|
# Tracker / progress
|
|
"ProgressEvent",
|
|
"ProgressTracker",
|
|
"get_tracker",
|
|
"reset_tracker",
|
|
"set_silent_tracker",
|
|
# Rendering
|
|
"render_completed_investigation_footer",
|
|
"render_divider",
|
|
"render_event",
|
|
"render_footer",
|
|
"render_investigation_header",
|
|
# Console lifecycle
|
|
"set_live_console",
|
|
"stop_display",
|
|
"unregister_live_console",
|
|
# Tool-detail toggle
|
|
"CtrlOToggleWatcher",
|
|
"register_tool_detail_toggle",
|
|
"suppress_stdin_watchers",
|
|
"toggle_active_tool_details",
|
|
# Output config
|
|
"debug_print",
|
|
"get_output_format",
|
|
# Semi-public helpers used by surfaces/cli/ui/renderer (underscore names are
|
|
# intentional — they signal "reach in carefully" rather than stable API)
|
|
"_fmt_timing",
|
|
"_repl_progress_active",
|
|
"_safe_print",
|
|
]
|