LICENSE
README.md
pyproject.toml
setup.py
src/mancer/__init__.py
src/mancer.egg-info/PKG-INFO
src/mancer.egg-info/SOURCES.txt
src/mancer.egg-info/dependency_links.txt
src/mancer.egg-info/requires.txt
src/mancer.egg-info/top_level.txt
src/mancer/application/__init__.py
src/mancer/application/command_cache.py
src/mancer/application/command_library.py
src/mancer/application/command_manager.py
src/mancer/application/shell_runner.py
src/mancer/application/commands/__init__.py
src/mancer/application/commands/apt_command.py
src/mancer/application/commands/base_command.py
src/mancer/application/commands/systemctl_command.py
src/mancer/application/remote_config_manager/__init__.py
src/mancer/application/remote_config_manager/__main__.py
src/mancer/application/remote_config_manager/cli.py
src/mancer/application/remote_config_manager/config.py
src/mancer/application/remote_config_manager/file_operations.py
src/mancer/application/remote_config_manager/manager.py
src/mancer/application/service/__init__.py
src/mancer/application/service/remote_config_manager.py
src/mancer/application/service/systemd_inspector.py
src/mancer/application/systemd_inspector/__init__.py
src/mancer/application/systemd_inspector/__main__.py
src/mancer/application/systemd_inspector/cli.py
src/mancer/application/systemd_inspector/inspector.py
src/mancer/domain/__init__.py
src/mancer/domain/interface/__init__.py
src/mancer/domain/interface/backend_interface.py
src/mancer/domain/interface/command_interface.py
src/mancer/domain/model/__init__.py
src/mancer/domain/model/command_context.py
src/mancer/domain/model/command_result.py
src/mancer/domain/model/config_manager.py
src/mancer/domain/model/data_format.py
src/mancer/domain/model/data_structures.py
src/mancer/domain/model/execution_history.py
src/mancer/domain/model/execution_step.py
src/mancer/domain/model/tool_version.py
src/mancer/domain/model/version_info.py
src/mancer/domain/service/__init__.py
src/mancer/domain/service/command_chain_service.py
src/mancer/domain/service/command_logger_service.py
src/mancer/domain/service/data_converter_service.py
src/mancer/domain/service/log_backend_interface.py
src/mancer/domain/service/systemd_service.py
src/mancer/domain/service/tool_version_service.py
src/mancer/domain/shared/__init__.py
src/mancer/domain/shared/config_balancer.py
src/mancer/domain/shared/profile_producer.py
src/mancer/infrastructure/__init__.py
src/mancer/infrastructure/backend/__init__.py
src/mancer/infrastructure/backend/bash_backend.py
src/mancer/infrastructure/backend/powershell_backend.py
src/mancer/infrastructure/backend/ssh_backend.py
src/mancer/infrastructure/command/__init__.py
src/mancer/infrastructure/command/base_command.py
src/mancer/infrastructure/command/loggable_command_mixin.py
src/mancer/infrastructure/command/versioned_command_mixin.py
src/mancer/infrastructure/command/custom/__init__.py
src/mancer/infrastructure/command/custom/custom_command.py
src/mancer/infrastructure/command/custom/custom_command_base.py
src/mancer/infrastructure/command/file/__init__.py
src/mancer/infrastructure/command/file/base_file_command.py
src/mancer/infrastructure/command/file/cat_command.py
src/mancer/infrastructure/command/file/cd_command.py
src/mancer/infrastructure/command/file/cp_command.py
src/mancer/infrastructure/command/file/find_command.py
src/mancer/infrastructure/command/file/grep_command.py
src/mancer/infrastructure/command/file/head_command.py
src/mancer/infrastructure/command/file/ls_command.py
src/mancer/infrastructure/command/file/mkdir_command.py
src/mancer/infrastructure/command/file/mv_command.py
src/mancer/infrastructure/command/file/rm_command.py
src/mancer/infrastructure/command/file/tail_command.py
src/mancer/infrastructure/command/file/touch_command.py
src/mancer/infrastructure/command/network/__init__.py
src/mancer/infrastructure/command/network/base_network_command.py
src/mancer/infrastructure/command/network/curl_command.py
src/mancer/infrastructure/command/network/netstat_command.py
src/mancer/infrastructure/command/network/ping_command.py
src/mancer/infrastructure/command/network/ssh_command.py
src/mancer/infrastructure/command/network/wget_command.py
src/mancer/infrastructure/command/system/__init__.py
src/mancer/infrastructure/command/system/base_system_command.py
src/mancer/infrastructure/command/system/cat_command.py
src/mancer/infrastructure/command/system/cron_command.py
src/mancer/infrastructure/command/system/df_command.py
src/mancer/infrastructure/command/system/echo_command.py
src/mancer/infrastructure/command/system/find_command.py
src/mancer/infrastructure/command/system/grep_command.py
src/mancer/infrastructure/command/system/hostname_command.py
src/mancer/infrastructure/command/system/kill_command.py
src/mancer/infrastructure/command/system/ls_command.py
src/mancer/infrastructure/command/system/ps_command.py
src/mancer/infrastructure/command/system/service_command.py
src/mancer/infrastructure/command/system/systemctl_command.py
src/mancer/infrastructure/command/system/wc_command.py
src/mancer/infrastructure/factory/__init__.py
src/mancer/infrastructure/factory/backend_factory.py
src/mancer/infrastructure/factory/command_factory.py
src/mancer/infrastructure/logging/__init__.py
src/mancer/infrastructure/logging/icecream_backend.py
src/mancer/infrastructure/logging/mancer_logger.py
src/mancer/infrastructure/logging/standard_backend.py
src/mancer/infrastructure/shared/__init__.py
src/mancer/infrastructure/shared/command_enforcer.py
src/mancer/infrastructure/shared/file_tracer.py
src/mancer/infrastructure/shared/ssh_connecticer.py
src/mancer/infrastructure/web/__init__.py
src/mancer/infrastructure/web/flask_service.py
src/mancer/interface/__init__.py
src/mancer/interface/api_interface.py
src/mancer/interface/cli_interface.py
src/mancer/interface/command_builder.py