- audio_container: CONTAINER_TO_EXT built from one tuple; fixed-prefix sniffs table-driven. - apply_layout_tool: dead _TIMEOUT_NOTE indirection inlined. - Module/function docstrings compacted by hand; regexes, byte patterns, schemas and registry.register kwargs byte-identical (SCHEMA_SAME verified).
13 lines
457 B
Python
13 lines
457 B
Python
"""Tools package namespace. Kept side-effect free: importing ``tools`` must not
|
|
load the tool stack (some subsystems import it while ``hermes_cli.config`` is
|
|
still initializing). Import concrete submodules directly."""
|
|
|
|
|
|
def check_file_requirements():
|
|
"""File tools only require terminal backend availability."""
|
|
from .terminal_tool import check_terminal_requirements
|
|
return check_terminal_requirements()
|
|
|
|
|
|
__all__ = ["check_file_requirements"]
|