stackops 0.1.0__tar.gz → 8.93__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- stackops-8.93/MANIFEST.in +7 -0
- stackops-8.93/PKG-INFO +68 -0
- stackops-8.93/README.md +40 -0
- stackops-8.93/pyproject.toml +163 -0
- stackops-8.93/setup.cfg +4 -0
- stackops-8.93/src/stackops/__init__.py +0 -0
- stackops-8.93/src/stackops/cluster/__init__.py +0 -0
- stackops-8.93/src/stackops/cluster/remote/__init__.py +43 -0
- stackops-8.93/src/stackops/cluster/remote/cloud_manager.py +371 -0
- stackops-8.93/src/stackops/cluster/remote/data_transfer.py +45 -0
- stackops-8.93/src/stackops/cluster/remote/distribute.py +302 -0
- stackops-8.93/src/stackops/cluster/remote/execution_script.py +94 -0
- stackops-8.93/src/stackops/cluster/remote/file_manager.py +243 -0
- stackops-8.93/src/stackops/cluster/remote/job_params.py +132 -0
- stackops-8.93/src/stackops/cluster/remote/models.py +244 -0
- stackops-8.93/src/stackops/cluster/remote/notification.py +32 -0
- stackops-8.93/src/stackops/cluster/remote/remote_machine.py +320 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/__init__.py +0 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/helpers/enhanced_command_runner.py +136 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/helpers/load_balancer_helper.py +145 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/session_conflict.py +377 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/session_exit_mode.py +93 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/tmux/__init__.py +0 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/tmux/tmux_local.py +234 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/tmux/tmux_local_manager.py +181 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/tmux/tmux_utils/tmux_helpers.py +392 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/utils/__init__.py +1 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/utils/load_balancer.py +54 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/utils/maker.py +77 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/__init__.py +0 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_local.py +253 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_local_manager.py +371 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_remote.py +211 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_remote_manager.py +314 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/examples/__init__.py +0 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/examples/wt_local_manager_demo.py +78 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/layout_generator.py +175 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/local_monitoring.py +83 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/manager_persistence.py +52 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/monitoring_helpers.py +50 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/process_monitor.py +323 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/remote_executor.py +142 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/session_manager.py +270 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/status_reporter.py +204 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/status_reporting.py +76 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/windows_terminal/wt_utils/wt_helpers.py +210 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/__init__.py +0 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_local.py +238 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_local_manager.py +447 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_remote.py +194 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_remote_manager.py +196 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/example_usage.py +72 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/layout_generator.py +126 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/monitoring_types.py +104 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/process_monitor.py +286 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/remote_executor.py +64 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/session_manager.py +91 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/status_reporter.py +89 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/zellij_local_helper.py +344 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/zellij_local_helper_restart.py +77 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/zellij_local_helper_with_panes.py +228 -0
- stackops-8.93/src/stackops/cluster/sessions_managers/zellij/zellij_utils/zellij_local_manager_helper.py +165 -0
- stackops-8.93/src/stackops/jobs/__init__.py +0 -0
- stackops-8.93/src/stackops/jobs/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/agents/mcps/__init__.py +2 -0
- stackops-8.93/src/stackops/jobs/agents/mcps/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/agents/mcps/mcp.json +8 -0
- stackops-8.93/src/stackops/jobs/agents/mcps/mcp.schema.json +106 -0
- stackops-8.93/src/stackops/jobs/installer/__init__.py +2 -0
- stackops-8.93/src/stackops/jobs/installer/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/__pycache__/package_groups.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/checks/__init__.py +0 -0
- stackops-8.93/src/stackops/jobs/installer/checks/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/checks/__pycache__/check_installations.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/checks/__pycache__/install_utils.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/checks/__pycache__/report_utils.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/checks/__pycache__/security_cli.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/checks/__pycache__/security_helper.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/checks/__pycache__/vt_utils.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/checks/check_installations.py +242 -0
- stackops-8.93/src/stackops/jobs/installer/checks/install_utils.py +154 -0
- stackops-8.93/src/stackops/jobs/installer/checks/report_utils.py +389 -0
- stackops-8.93/src/stackops/jobs/installer/checks/security_cli.py +190 -0
- stackops-8.93/src/stackops/jobs/installer/checks/security_helper.py +326 -0
- stackops-8.93/src/stackops/jobs/installer/checks/vt_utils.py +181 -0
- stackops-8.93/src/stackops/jobs/installer/installer_data.json +4433 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/__init__.py +12 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/brave.sh +38 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/cloudflare_warp_cli.sh +60 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/edge.sh +36 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/nerdfont.sh +47 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/network.sh +30 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/ngrok.sh +6 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/q.sh +12 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/redis.sh +60 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/sysabc_macos.sh +9 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/sysabc_ubuntu.sh +31 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/vscode.sh +122 -0
- stackops-8.93/src/stackops/jobs/installer/linux_scripts/wezterm.sh +32 -0
- stackops-8.93/src/stackops/jobs/installer/package_groups.py +300 -0
- stackops-8.93/src/stackops/jobs/installer/powershell_scripts/__init__.py +3 -0
- stackops-8.93/src/stackops/jobs/installer/powershell_scripts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/powershell_scripts/install_fonts.ps1 +158 -0
- stackops-8.93/src/stackops/jobs/installer/powershell_scripts/sysabc.ps1 +36 -0
- stackops-8.93/src/stackops/jobs/installer/powershell_scripts/texlive.ps1 +22 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__init__.py +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/alacritty.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/boxes.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/brave.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/bypass_paywall.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/cloudflare_warp_cli.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/code.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/cursor.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/docker.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/dubdb_adbc.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/espanso.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/gh.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/goes.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/hx.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/lvim.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/main_protocol.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/nerdfont.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/nerfont_windows_helper.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/poppler.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/redis.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/sysabc.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/wezterm.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/winget.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/__pycache__/yazi.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/alacritty.py +92 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/boxes.py +67 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/brave.py +93 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/bypass_paywall.py +84 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/cloudflare_warp_cli.py +34 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/code.py +76 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/cursor.py +124 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/docker.py +190 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/dubdb_adbc.py +38 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/espanso.py +173 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/gh.py +128 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/goes.py +68 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/hx.py +233 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/lvim.py +95 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/main_protocol.py +67 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/nerdfont.py +122 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/nerfont_windows_helper.py +168 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/poppler.py +67 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/redis.py +99 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/sysabc.py +50 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/wezterm.py +103 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/winget.py +182 -0
- stackops-8.93/src/stackops/jobs/installer/python_scripts/yazi.py +113 -0
- stackops-8.93/src/stackops/jobs/installer/todo.md +34 -0
- stackops-8.93/src/stackops/jobs/scripts/bash_scripts/__init__.py +2 -0
- stackops-8.93/src/stackops/jobs/scripts/bash_scripts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/scripts/bash_scripts/hollywood.sh +1 -0
- stackops-8.93/src/stackops/jobs/scripts/bash_scripts/lid.sh +18 -0
- stackops-8.93/src/stackops/jobs/scripts/powershell_scripts/__init__.py +1 -0
- stackops-8.93/src/stackops/jobs/scripts/powershell_scripts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/scripts/powershell_scripts/cmatrix.ps1 +52 -0
- stackops-8.93/src/stackops/jobs/scripts_dynamic/__pycache__/a.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/jobs/scripts_dynamic/a.py +437 -0
- stackops-8.93/src/stackops/logger.py +48 -0
- stackops-8.93/src/stackops/profile/__init__.py +4 -0
- stackops-8.93/src/stackops/profile/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/profile/__pycache__/create_helper.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/profile/__pycache__/create_links.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/profile/__pycache__/create_links_export.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/profile/__pycache__/create_shell_profile.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/profile/__pycache__/dotfiles_mapper.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/profile/create_helper.py +75 -0
- stackops-8.93/src/stackops/profile/create_links.py +428 -0
- stackops-8.93/src/stackops/profile/create_links_export.py +120 -0
- stackops-8.93/src/stackops/profile/create_shell_profile.py +194 -0
- stackops-8.93/src/stackops/profile/dotfiles_mapper.py +145 -0
- stackops-8.93/src/stackops/scripts/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/linux/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/linux/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/linux/wrap_mcfg +46 -0
- stackops-8.93/src/stackops/scripts/nu/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/nu/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/nu/wrap_mcfg.nu +69 -0
- stackops-8.93/src/stackops/scripts/python/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/agents.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/agents_parallel.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/agents_parallel_commands.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/cloud.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/croshell.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/devops.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/enums.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/fire_jobs.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/ftpx.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/mcfg_entry.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/seek.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/terminal.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/__pycache__/utils.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/agents.py +512 -0
- stackops-8.93/src/stackops/scripts/python/agents_parallel.py +54 -0
- stackops-8.93/src/stackops/scripts/python/agents_parallel_commands.py +158 -0
- stackops-8.93/src/stackops/scripts/python/ai/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/__pycache__/initai.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/initai.py +185 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/__init__.py +5 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/__pycache__/dashboard.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/__pycache__/lint_and_type_check.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/__pycache__/models.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/__pycache__/models_config.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/__pycache__/models_diagnostics.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/__pycache__/models_json.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/__pycache__/models_reports.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/__pycache__/paths.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/command_runner.ps1 +33 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/command_runner.sh +9 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/dashboard.py +261 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/lint_and_type_check.py +380 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/models.py +186 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/models_config.py +319 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/models_diagnostics.py +219 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/models_json.py +91 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/models_reports.py +186 -0
- stackops-8.93/src/stackops/scripts/python/ai/scripts/paths.py +17 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/auggie/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/auggie/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/auggie/__pycache__/auggie.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/auggie/auggie.py +15 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/claude/__pycache__/claude.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/claude/claude.py +77 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/cline/__pycache__/cline.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/cline/cline.py +13 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/codex/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/codex/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/codex/__pycache__/codex.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/codex/codex.py +28 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/codex/config.toml +30 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/__pycache__/github_copilot.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/agents/Thinking-Beast-Mode.agent.md +336 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/agents/Ultimate-Transparent-Thinking-Beast-Mode.agent.md +643 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/agents/__init__.py +3 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/agents/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/agents/deepResearch.agent.md +81 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/github_copilot.py +61 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/instructions/python/__init__.py +2 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/instructions/python/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +91 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/instructions/python/watch_exec.prompt.md +20 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/privacy.md +18 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/prompts/__init__.py +2 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/prompts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md +16 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/copilot/prompts/research-report-skeleton.prompt.md +38 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/crush/__init__.py +2 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/crush/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/crush/__pycache__/crush.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/crush/crush.json +216 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/crush/crush.py +27 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/crush/privacy.md +2 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/cursor/__pycache__/cursors.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/cursor/cursors.py +13 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/droid/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/droid/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/droid/__pycache__/droid.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/droid/droid.py +12 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/forge/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/forge/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/forge/__pycache__/forge.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/forge/forge.py +36 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/gemini/__init__.py +2 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/gemini/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/gemini/__pycache__/gemini.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/gemini/gemini.py +30 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/gemini/instructions.md +42 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/gemini/settings.json +86 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/kilocode/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/kilocode/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/kilocode/__pycache__/kilocode.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/kilocode/kilocode.py +52 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/kilocode/privacy.md +7 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/opencode/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/opencode/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/opencode/__pycache__/opencode.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/opencode/opencode.jsonc +43 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/opencode/opencode.py +31 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/q/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/q/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/q/__pycache__/amazon_q.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/q/amazon_q.py +14 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/qwen_code/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/qwen_code/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/qwen_code/__pycache__/qwen_code.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/qwen_code/qwen_code.py +12 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/warp/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/warp/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/warp/__pycache__/warp.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/solutions/warp/warp.py +12 -0
- stackops-8.93/src/stackops/scripts/python/ai/utils/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/utils/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/utils/__pycache__/generate_files.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/utils/__pycache__/generic.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/utils/__pycache__/shared.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/utils/__pycache__/vscode_tasks.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/ai/utils/generate_files.py +348 -0
- stackops-8.93/src/stackops/scripts/python/ai/utils/generic.py +82 -0
- stackops-8.93/src/stackops/scripts/python/ai/utils/shared.py +18 -0
- stackops-8.93/src/stackops/scripts/python/ai/utils/vscode_tasks.py +46 -0
- stackops-8.93/src/stackops/scripts/python/cloud.py +100 -0
- stackops-8.93/src/stackops/scripts/python/croshell.py +35 -0
- stackops-8.93/src/stackops/scripts/python/devops.py +147 -0
- stackops-8.93/src/stackops/scripts/python/enums.py +19 -0
- stackops-8.93/src/stackops/scripts/python/fire_jobs.py +88 -0
- stackops-8.93/src/stackops/scripts/python/ftpx.py +39 -0
- stackops-8.93/src/stackops/scripts/python/graph/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/graph/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/__pycache__/generate_cli_graph.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/cli_graph.json +17611 -0
- stackops-8.93/src/stackops/scripts/python/graph/generate_cli_graph.py +1372 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/__pycache__/cli_graph_app.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/__pycache__/cli_graph_search.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/__pycache__/dot_export.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/__pycache__/graph_data.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/__pycache__/graph_paths.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/__pycache__/plotly_browser.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/__pycache__/plotly_views.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/__pycache__/rich_tree.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/cli_graph_app.py +208 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/cli_graph_search.py +211 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/dot_export.py +80 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/graph_data.py +141 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/graph_paths.py +8 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/__pycache__/cli_graph_loader.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/__pycache__/command_builder.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/__pycache__/command_detail.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/__pycache__/command_tree.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/__pycache__/data_models.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/__pycache__/devops_navigator.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/__pycache__/main_app.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/__pycache__/search_bar.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/cli_graph_loader.py +231 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/command_builder.py +179 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/command_detail.py +152 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/command_tree.py +49 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/data_models.py +34 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/devops_navigator.py +20 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/main_app.py +273 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/helpers_navigator/search_bar.py +15 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/plotly_browser.py +185 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/plotly_views.py +182 -0
- stackops-8.93/src/stackops/scripts/python/graph/visualize/rich_tree.py +72 -0
- stackops-8.93/src/stackops/scripts/python/helper_env/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helper_env/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helper_env/__pycache__/path_manager_tui.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helper_env/path_manager_tui.py +251 -0
- stackops-8.93/src/stackops/scripts/python/helpers/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helper_env/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helper_env/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helper_env/__pycache__/env_manager_tui.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helper_env/__pycache__/path_manager_backend.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helper_env/__pycache__/path_manager_tui.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helper_env/env_manager_tui.py +227 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helper_env/path_manager_backend.py +47 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helper_env/path_manager_tui.py +250 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/agents_create_artifacts.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/agents_create_inputs.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/agents_impl.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/agents_rich_output.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/agents_run_context.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/agents_run_impl.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/fire_agents_help_launch.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/fire_agents_help_search.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/fire_agents_helper_types.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/fire_agents_load_balancer.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/mcp_catalog.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/mcp_install.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/mcp_types.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/__pycache__/reasoning_capabilities.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agent_impl_interactive/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agent_impl_interactive/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agent_impl_interactive/__pycache__/common.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agent_impl_interactive/__pycache__/create_options.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agent_impl_interactive/__pycache__/main.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agent_impl_interactive/common.py +197 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agent_impl_interactive/create_options.py +400 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agent_impl_interactive/main.py +218 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/__pycache__/fire_codex.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/__pycache__/fire_copilot.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/__pycache__/fire_crush.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/__pycache__/fire_cursor_agents.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/__pycache__/fire_gemini.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/__pycache__/fire_qwen.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_codex.py +40 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_copilot.py +24 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_crush.json +14 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_crush.py +41 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_cursor_agents.py +18 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_gemini.py +48 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_qwen.py +27 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agents_create_artifacts.py +293 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agents_create_inputs.py +218 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agents_impl.py +328 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agents_rich_output.py +205 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agents_run_context.py +314 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/agents_run_impl.py +161 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/fire_agents_help_launch.py +238 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/fire_agents_help_search.py +81 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/fire_agents_helper_types.py +62 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/fire_agents_load_balancer.py +36 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/mcp_catalog.py +324 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/mcp_install.py +497 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/mcp_types.py +46 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/__pycache__/privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/aichat/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/aichat/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/aichat/config.yaml +5 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/aider/.aider.conf.yml +2 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/auggie/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/auggie/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/auggie/__pycache__/auggie_privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/auggie/auggie_privacy.py +38 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/chatgpt/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/chatgpt/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/chatgpt/__pycache__/chatgpt_privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/chatgpt/chatgpt_privacy.py +44 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/cline/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/cline/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/cline/__pycache__/cline_privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/cline/cline_privacy.py +44 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/codex/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/codex/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/codex/__pycache__/codex_privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/codex/codex_privacy.py +33 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/common/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/common/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/common/__pycache__/privacy_orchestrator.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/common/privacy_orchestrator.py +138 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/copilot/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/copilot/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/copilot/config.yml +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/crush/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/crush/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/crush/crush.json +10 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/cursor/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/cursor/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/cursor/__pycache__/cursor_privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/cursor/cursor_privacy.py +51 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/droid/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/droid/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/droid/__pycache__/droid_privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/droid/droid_privacy.py +27 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/gemini/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/gemini/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/gemini/settings.json +19 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/kilocode/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/kilocode/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/kilocode/__pycache__/kilocode_privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/kilocode/kilocode_privacy.py +33 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/mods/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/mods/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/mods/__pycache__/mods_privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/mods/mods_privacy.py +35 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/opencode/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/opencode/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/q/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/q/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/q/__pycache__/q_privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/q/q_privacy.py +54 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/qwen/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/qwen/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/qwen/__pycache__/qwen_privacy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/configs/qwen/qwen_privacy.py +23 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/privacy/privacy.py +28 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/reasoning_capabilities.py +75 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/templates/__init__.py +3 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/templates/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/templates/prompt.txt +10 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/templates/template.ps1 +14 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_agents/templates/template.sh +32 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/__pycache__/cloud_copy.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/__pycache__/cloud_helpers.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/__pycache__/cloud_mont_tmux.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/__pycache__/cloud_mount.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/__pycache__/cloud_mount_zellij.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/__pycache__/cloud_sync.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/__pycache__/helpers2.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/__pycache__/helpers5.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/cloud_copy.py +341 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/cloud_helpers.py +100 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/cloud_mont_tmux.py +39 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/cloud_mount.py +192 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/cloud_mount_zellij.py +89 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/cloud_sync.py +82 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/helpers2.py +171 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_cloud/helpers5.py +50 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/__pycache__/crosh.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/__pycache__/croshell_impl.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/__pycache__/pomodoro.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/__pycache__/scheduler.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/__pycache__/start_slidev.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/__pycache__/viewer.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/__pycache__/viewer_template.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/crosh.py +39 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/croshell_impl.py +252 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/pomodoro.py +55 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/scheduler.py +69 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/start_slidev.py +125 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/viewer.py +54 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_croshell/viewer_template.py +137 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/backup_config.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_backup_retrieve.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_config.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_config_dotfile.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_config_mount.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_config_terminal.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_data.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_device.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_nw.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_nw_vscode_share.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_repos.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_self.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_self_assets.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_self_docs.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_share_file.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_share_server.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_share_temp.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_share_terminal.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/cli_ssh.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/devops_status.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/devops_status_checks.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/devops_status_display.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/devops_update_repos.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/interactive.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/__pycache__/run_script.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/backup_config.py +271 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_backup_retrieve.py +230 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_config.py +105 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_config_dotfile.py +391 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_config_mount.py +112 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_config_terminal.py +135 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_data.py +126 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_device.py +193 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_nw.py +152 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_nw_vscode_share.py +159 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_repos.py +360 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self.py +334 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/__pycache__/app.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/__pycache__/update_docs.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/__pycache__/update_installer.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/__pycache__/update_test.cpython-314-pytest-9.0.2.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/__pycache__/update_test.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/app.py +28 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/update_docs.py +155 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/update_installer.py +145 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_ai/update_test.py +168 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_assets.py +58 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_self_docs.py +137 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_share_file.py +155 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_share_server.py +128 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_share_temp.py +64 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_share_terminal.py +168 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/cli_ssh.py +163 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/devops_status.py +127 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/devops_status_checks.py +258 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/devops_status_display.py +265 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/devops_update_repos.py +269 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/interactive.py +245 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/__pycache__/commands.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/__pycache__/device_entry.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/__pycache__/devices.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/__pycache__/linux.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/__pycache__/macos.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/__pycache__/selection.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/__pycache__/utils.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/__pycache__/windows.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/commands.py +25 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/device_entry.py +17 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/devices.py +17 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/linux.py +187 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/macos.py +100 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/selection.py +49 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/utils.py +28 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/mount_helpers/windows.py +86 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/run_script.py +235 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/themes/__init__.py +4 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/themes/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/themes/__pycache__/choose_wezterm_theme.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/themes/choose_pwsh_theme.ps1 +81 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.ps1 +41 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.sh +48 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/themes/choose_wezterm_theme.py +112 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_devops/themes/choose_windows_terminal_theme.ps1 +161 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/__pycache__/cloud_manager.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/__pycache__/f.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/__pycache__/file_wrangler.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/__pycache__/fire_jobs_args_helper.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/__pycache__/fire_jobs_impl.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/__pycache__/fire_jobs_route_helper.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/__pycache__/fire_jobs_streamlit_helper.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/cloud_manager.py +75 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/f.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/file_wrangler.py +151 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/fire_jobs_args_helper.py +148 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/fire_jobs_impl.py +324 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/fire_jobs_route_helper.py +124 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_fire_command/fire_jobs_streamlit_helper.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/__pycache__/address.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/__pycache__/address_switch.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/__pycache__/ftpx_impl.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/__pycache__/onetimeshare.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/__pycache__/wifi_conn.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/address.py +172 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/address_switch.py +87 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ftpx_impl.py +277 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/onetimeshare.py +65 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__init__.py +21 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/ssh_add_key_windows.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/ssh_add_ssh_key.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/ssh_cloud_init.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/ssh_debug_darwin.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/ssh_debug_darwin_utils.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/ssh_debug_linux.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/ssh_debug_linux_utils.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/ssh_debug_windows.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/ssh_debug_windows_utils.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/__pycache__/ssh_deploy_key_remote.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/ssh_add_key_windows.py +23 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/ssh_add_ssh_key.py +229 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/ssh_cloud_init.py +33 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/ssh_debug_darwin.py +296 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/ssh_debug_darwin_utils.py +21 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/ssh_debug_linux.py +342 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/ssh_debug_linux_utils.py +35 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/ssh_debug_windows.py +245 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/ssh_debug_windows_utils.py +34 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/ssh/ssh_deploy_key_remote.py +311 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_network/wifi_conn.py +372 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/__pycache__/action.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/__pycache__/action_helper.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/__pycache__/clone.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/__pycache__/cloud_repo_sync.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/__pycache__/grource.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/__pycache__/record.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/__pycache__/repo_analyzer_1.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/__pycache__/repo_analyzer_2.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/__pycache__/sync.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/__pycache__/update.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/action.py +217 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/action_helper.py +150 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/clone.py +120 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/cloud_repo_sync.py +420 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/grource.py +341 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/record.py +276 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/repo_analyzer_1.py +157 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/repo_analyzer_2.py +312 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/sync.py +93 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_repos/update.py +260 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_search/__pycache__/ast_search.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_search/__pycache__/qr_code.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_search/__pycache__/repo_rag.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_search/__pycache__/script_help.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_search/__pycache__/symantic_search.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_search/ast_search.py +138 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_search/qr_code.py +168 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_search/repo_rag.py +325 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_search/script_help.py +84 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_search/symantic_search.py +25 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/__init__.py +3 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/__pycache__/seek_impl.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/scripts_linux/__init__.py +2 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/scripts_linux/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/scripts_linux/fzfg +24 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/scripts_linux/search_with_context.sh +48 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/scripts_macos/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/scripts_macos/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/scripts_macos/fzfg +36 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/scripts_windows/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/scripts_windows/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/scripts_windows/fzfg.ps1 +54 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_seek/seek_impl.py +456 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__init__.py +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/_tmux_backend.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/_tmux_backend_options.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/_tmux_backend_preview.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/_tmux_backend_processes.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/_zellij_backend.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/_zellij_backend_focus.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/_zellij_backend_layout.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/_zellij_backend_metadata.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/_zellij_backend_options.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/_zellij_backend_preview.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/attach_impl.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/kill_impl.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/session_trace_tmux.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/session_trace_zellij.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_aoe_impl.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_cli_common.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_cli_run.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_cli_run_all.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_cli_run_aoe.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_dynamic.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_impl.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_layout_source.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_multiprocess.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_test_layouts.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/sessions_trace.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/__pycache__/utils.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/_tmux_backend.py +196 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/_tmux_backend_options.py +136 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/_tmux_backend_preview.py +204 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/_tmux_backend_processes.py +135 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/_zellij_backend.py +270 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/_zellij_backend_focus.py +145 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/_zellij_backend_layout.py +117 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/_zellij_backend_metadata.py +160 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/_zellij_backend_options.py +256 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/_zellij_backend_preview.py +81 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/attach_impl.py +117 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/kill_impl.py +19 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/session_trace_tmux.py +218 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/session_trace_zellij.py +15 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_aoe_impl.py +278 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_cli_common.py +199 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_cli_run.py +83 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_cli_run_all.py +64 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_cli_run_aoe.py +174 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_dynamic.py +238 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_impl.py +225 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_layout_source.py +227 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_multiprocess.py +66 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_test_layouts.py +163 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/sessions_trace.py +329 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_sessions/utils.py +79 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/__pycache__/download.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/__pycache__/file_utils_app.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/__pycache__/machine_utils_app.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/__pycache__/path_reference_validation.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/__pycache__/pdf.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/__pycache__/pyproject_utils_app.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/__pycache__/python.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/__pycache__/read_db_cli_tui.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/__pycache__/specs.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/__pycache__/type_fix.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/download.py +150 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/file_utils_app.py +88 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/machine_utils_app.py +127 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/path_reference_validation.py +309 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/pdf.py +95 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/pyproject_utils_app.py +264 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/python.py +334 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/read_db_cli_tui.py +224 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/specs.py +244 -0
- stackops-8.93/src/stackops/scripts/python/helpers/helpers_utils/type_fix.py +71 -0
- stackops-8.93/src/stackops/scripts/python/mcfg_entry.py +129 -0
- stackops-8.93/src/stackops/scripts/python/seek.py +43 -0
- stackops-8.93/src/stackops/scripts/python/terminal.py +402 -0
- stackops-8.93/src/stackops/scripts/python/utils.py +58 -0
- stackops-8.93/src/stackops/scripts/windows/__init__.py +1 -0
- stackops-8.93/src/stackops/scripts/windows/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/scripts/windows/wrap_mcfg.ps1 +64 -0
- stackops-8.93/src/stackops/settings/__init__.py +0 -0
- stackops-8.93/src/stackops/settings/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/atuin/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/atuin/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/atuin/config.toml +294 -0
- stackops-8.93/src/stackops/settings/atuin/themes/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/atuin/themes/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/atuin/themes/catppuccin-mocha-mauve.toml +12 -0
- stackops-8.93/src/stackops/settings/broot/__init__.py +3 -0
- stackops-8.93/src/stackops/settings/broot/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/broot/br.sh +47 -0
- stackops-8.93/src/stackops/settings/broot/brootcd.ps1 +32 -0
- stackops-8.93/src/stackops/settings/broot/conf.toml +5 -0
- stackops-8.93/src/stackops/settings/glow/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/glow/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/glow/glow.yml +12 -0
- stackops-8.93/src/stackops/settings/gromit-mpx/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/gromit-mpx/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/gromit-mpx/gromit-mpx.cfg +34 -0
- stackops-8.93/src/stackops/settings/helix/__init__.py +3 -0
- stackops-8.93/src/stackops/settings/helix/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/helix/config.toml +43 -0
- stackops-8.93/src/stackops/settings/helix/languages.toml +31 -0
- stackops-8.93/src/stackops/settings/helix/yazi-picker.sh +12 -0
- stackops-8.93/src/stackops/settings/keras/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/keras/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/keras/keras.json +6 -0
- stackops-8.93/src/stackops/settings/keyboard/espanso/config/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/keyboard/espanso/config/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/keyboard/espanso/config/default.yml +45 -0
- stackops-8.93/src/stackops/settings/keyboard/espanso/match/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/keyboard/espanso/match/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/keyboard/espanso/match/base.yml +57 -0
- stackops-8.93/src/stackops/settings/keyboard/kanata/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/keyboard/kanata/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/keyboard/kanata/kanata.kbd +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/__init__.py +3 -0
- stackops-8.93/src/stackops/settings/lf/linux/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/autocall/__init__.py +7 -0
- stackops-8.93/src/stackops/settings/lf/linux/autocall/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/autocall/delete.sh +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/autocall/on-cd.sh +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/autocall/on-quit.sh +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/autocall/open.sh +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/autocall/paste.sh +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/autocall/pre-cd.sh +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/autocall/rename.sh +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/colors +196 -0
- stackops-8.93/src/stackops/settings/lf/linux/exe/__init__.py +5 -0
- stackops-8.93/src/stackops/settings/lf/linux/exe/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/lf/linux/exe/cleaner.sh +7 -0
- stackops-8.93/src/stackops/settings/lf/linux/exe/leftpane_previewer.sh +5 -0
- stackops-8.93/src/stackops/settings/lf/linux/exe/lfcd.sh +33 -0
- stackops-8.93/src/stackops/settings/lf/linux/exe/previewer.sh +43 -0
- stackops-8.93/src/stackops/settings/lf/linux/exe/previewer_archive.sh +155 -0
- stackops-8.93/src/stackops/settings/lf/linux/icons +357 -0
- stackops-8.93/src/stackops/settings/lf/linux/lfrc +225 -0
- stackops-8.93/src/stackops/settings/lf/windows/__init__.py +11 -0
- stackops-8.93/src/stackops/settings/lf/windows/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/lf/windows/autocall/__init__.py +7 -0
- stackops-8.93/src/stackops/settings/lf/windows/autocall/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/lf/windows/autocall/delete.ps1 +0 -0
- stackops-8.93/src/stackops/settings/lf/windows/autocall/on-cd.ps1 +0 -0
- stackops-8.93/src/stackops/settings/lf/windows/autocall/on-quit.ps1 +0 -0
- stackops-8.93/src/stackops/settings/lf/windows/autocall/open.ps1 +0 -0
- stackops-8.93/src/stackops/settings/lf/windows/autocall/paste.ps1 +0 -0
- stackops-8.93/src/stackops/settings/lf/windows/autocall/pre-cd.ps1 +0 -0
- stackops-8.93/src/stackops/settings/lf/windows/autocall/rename.ps1 +0 -0
- stackops-8.93/src/stackops/settings/lf/windows/cd_tere.ps1 +4 -0
- stackops-8.93/src/stackops/settings/lf/windows/cd_zoxide.ps1 +4 -0
- stackops-8.93/src/stackops/settings/lf/windows/cd_zoxide2.ps1 +4 -0
- stackops-8.93/src/stackops/settings/lf/windows/colors +159 -0
- stackops-8.93/src/stackops/settings/lf/windows/icons +357 -0
- stackops-8.93/src/stackops/settings/lf/windows/leftpane_previewer.ps1 +3 -0
- stackops-8.93/src/stackops/settings/lf/windows/lfcd.ps1 +35 -0
- stackops-8.93/src/stackops/settings/lf/windows/lfrc +113 -0
- stackops-8.93/src/stackops/settings/lf/windows/mkdir.ps1 +3 -0
- stackops-8.93/src/stackops/settings/lf/windows/mkfile.ps1 +3 -0
- stackops-8.93/src/stackops/settings/lf/windows/previewer.ps1 +7 -0
- stackops-8.93/src/stackops/settings/linters/.flake8 +24 -0
- stackops-8.93/src/stackops/settings/linters/.mypy.ini +31 -0
- stackops-8.93/src/stackops/settings/linters/.pylintrc +93 -0
- stackops-8.93/src/stackops/settings/linters/.ruff.toml +78 -0
- stackops-8.93/src/stackops/settings/linters/.ruff_cache/.gitignore +2 -0
- stackops-8.93/src/stackops/settings/linters/.ruff_cache/CACHEDIR.TAG +1 -0
- stackops-8.93/src/stackops/settings/linters/__init__.py +2 -0
- stackops-8.93/src/stackops/settings/linters/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/linters/pyrefly.toml +10 -0
- stackops-8.93/src/stackops/settings/linters/ty.toml +12 -0
- stackops-8.93/src/stackops/settings/lvim/linux/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/lvim/linux/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/lvim/linux/config.lua +0 -0
- stackops-8.93/src/stackops/settings/lvim/windows/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/lvim/windows/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/lvim/windows/archive/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/lvim/windows/archive/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/lvim/windows/archive/config_additional.lua +33 -0
- stackops-8.93/src/stackops/settings/lvim/windows/config.lua +0 -0
- stackops-8.93/src/stackops/settings/lvim/windows/lua/user/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/lvim/windows/lua/user/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/lvim/windows/lua/user/custom_config.lua +13 -0
- stackops-8.93/src/stackops/settings/marimo/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/marimo/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/marimo/marimo.toml +80 -0
- stackops-8.93/src/stackops/settings/marimo/snippets/__pycache__/globalize.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/marimo/snippets/globalize.py +34 -0
- stackops-8.93/src/stackops/settings/mprocs/windows/__init__.py +2 -0
- stackops-8.93/src/stackops/settings/mprocs/windows/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/mprocs/windows/mprocs.yaml +55 -0
- stackops-8.93/src/stackops/settings/mprocs/windows/other +12 -0
- stackops-8.93/src/stackops/settings/pistol/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/pistol/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/pistol/pistol.conf +8 -0
- stackops-8.93/src/stackops/settings/presenterm/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/presenterm/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/presenterm/config.yaml +76 -0
- stackops-8.93/src/stackops/settings/procs/.procs.toml +142 -0
- stackops-8.93/src/stackops/settings/pudb/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/pudb/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/pudb/pudb.cfg +8 -0
- stackops-8.93/src/stackops/settings/rofi/__init__.py +2 -0
- stackops-8.93/src/stackops/settings/rofi/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/rofi/config.rasi +4 -0
- stackops-8.93/src/stackops/settings/rofi/config_default.rasi +147 -0
- stackops-8.93/src/stackops/settings/shells/alacritty/__init__.py +2 -0
- stackops-8.93/src/stackops/settings/shells/alacritty/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/alacritty/alacritty.toml +40 -0
- stackops-8.93/src/stackops/settings/shells/alacritty/alacritty.yml +0 -0
- stackops-8.93/src/stackops/settings/shells/bash/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/shells/bash/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/bash/init.sh +107 -0
- stackops-8.93/src/stackops/settings/shells/ghostty/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/shells/ghostty/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/ghostty/config +61 -0
- stackops-8.93/src/stackops/settings/shells/hyper/.hyper.js +201 -0
- stackops-8.93/src/stackops/settings/shells/ipy/profiles/default/__init__.py +0 -0
- stackops-8.93/src/stackops/settings/shells/ipy/profiles/default/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/ipy/profiles/default/startup/__init__.py +0 -0
- stackops-8.93/src/stackops/settings/shells/ipy/profiles/default/startup/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/ipy/profiles/default/startup/__pycache__/playext.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/ipy/profiles/default/startup/playext.py +84 -0
- stackops-8.93/src/stackops/settings/shells/kitty/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/shells/kitty/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/kitty/kitty.conf +1476 -0
- stackops-8.93/src/stackops/settings/shells/nushell/__init__.py +3 -0
- stackops-8.93/src/stackops/settings/shells/nushell/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/nushell/config.nu +174 -0
- stackops-8.93/src/stackops/settings/shells/nushell/env.nu +45 -0
- stackops-8.93/src/stackops/settings/shells/nushell/init.nu +126 -0
- stackops-8.93/src/stackops/settings/shells/pwsh/__init__.py +2 -0
- stackops-8.93/src/stackops/settings/shells/pwsh/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/pwsh/init.ps1 +155 -0
- stackops-8.93/src/stackops/settings/shells/pwsh/search_pwsh_history.ps1 +99 -0
- stackops-8.93/src/stackops/settings/shells/starship/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/shells/starship/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/starship/starship.toml +74 -0
- stackops-8.93/src/stackops/settings/shells/vtm/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/shells/vtm/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/vtm/settings.xml +297 -0
- stackops-8.93/src/stackops/settings/shells/wezterm/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/shells/wezterm/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/wezterm/wezterm.lua +199 -0
- stackops-8.93/src/stackops/settings/shells/wt/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/shells/wt/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/wt/settings.json +320 -0
- stackops-8.93/src/stackops/settings/shells/zsh/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/shells/zsh/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/shells/zsh/init.sh +94 -0
- stackops-8.93/src/stackops/settings/streamlit/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/streamlit/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/streamlit/config.toml +22 -0
- stackops-8.93/src/stackops/settings/svim/linux/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/svim/linux/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/svim/linux/init.toml +44 -0
- stackops-8.93/src/stackops/settings/svim/windows/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/svim/windows/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/svim/windows/init.toml +45 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/__init__.py +28 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/alias.toml +14 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/aws-buckets.toml +20 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/aws-instances.toml +29 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/bash-history.toml +9 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/channels.toml +18 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/dirs.toml +23 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/distrobox-list.toml +42 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/docker-images.toml +34 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/dotfiles.toml +18 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/env.toml +22 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/files.toml +27 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/fish-history.toml +9 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/git-branch.toml +37 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/git-diff.toml +33 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/git-log.toml +34 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/git-reflog.toml +28 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/git-repos.toml +30 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/guix.toml +20 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/just-recipes.toml +18 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/k8s-deployments.toml +37 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/k8s-pods.toml +51 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/k8s-services.toml +37 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/man-pages.toml +25 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/nu-history.toml +9 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/procs.toml +38 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/text.toml +28 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/tldr.toml +21 -0
- stackops-8.93/src/stackops/settings/television/cable_unix/zsh-history.toml +16 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/__init__.py +14 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/alias.toml +7 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/dirs.toml +13 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/docker-images.toml +13 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/dotfiles.toml +11 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/env.toml +17 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/files.toml +14 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/git-branch.toml +11 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/git-diff.toml +10 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/git-log.toml +13 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/git-reflog.toml +13 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/git-repos.toml +15 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/nu-history.toml +9 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/pwsh-history.toml +8 -0
- stackops-8.93/src/stackops/settings/television/cable_windows/text.toml +17 -0
- stackops-8.93/src/stackops/settings/tere/__init__.py +2 -0
- stackops-8.93/src/stackops/settings/tere/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/tere/terecd.ps1 +8 -0
- stackops-8.93/src/stackops/settings/tere/terecd.sh +8 -0
- stackops-8.93/src/stackops/settings/tmux/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/tmux/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/tmux/tmux.conf.local +516 -0
- stackops-8.93/src/stackops/settings/tv/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/tv/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/tv/config.toml +242 -0
- stackops-8.93/src/stackops/settings/tv/themes/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/tv/themes/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/tv/themes/catppuccin-mocha-sky.toml +22 -0
- stackops-8.93/src/stackops/settings/wsl/.wslconfig +10 -0
- stackops-8.93/src/stackops/settings/wt/__init__.py +0 -0
- stackops-8.93/src/stackops/settings/wt/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/wt/__pycache__/set_wt_settings.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/wt/set_wt_settings.py +141 -0
- stackops-8.93/src/stackops/settings/yazi/__init__.py +8 -0
- stackops-8.93/src/stackops/settings/yazi/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/yazi/init.lua +69 -0
- stackops-8.93/src/stackops/settings/yazi/keymap_darwin.toml +179 -0
- stackops-8.93/src/stackops/settings/yazi/keymap_linux.toml +173 -0
- stackops-8.93/src/stackops/settings/yazi/keymap_windows.toml +172 -0
- stackops-8.93/src/stackops/settings/yazi/scripts/__pycache__/compress_selected.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/yazi/scripts/__pycache__/fullscreen_preview.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/yazi/scripts/__pycache__/interactive_view.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/yazi/scripts/__pycache__/open_db_readonly.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/yazi/scripts/compress_selected.py +69 -0
- stackops-8.93/src/stackops/settings/yazi/scripts/fullscreen_preview.py +327 -0
- stackops-8.93/src/stackops/settings/yazi/scripts/interactive_view.py +86 -0
- stackops-8.93/src/stackops/settings/yazi/scripts/open_db_readonly.py +76 -0
- stackops-8.93/src/stackops/settings/yazi/shell/__init__.py +2 -0
- stackops-8.93/src/stackops/settings/yazi/shell/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/yazi/shell/yazi_cd.ps1 +33 -0
- stackops-8.93/src/stackops/settings/yazi/shell/yazi_cd.sh +8 -0
- stackops-8.93/src/stackops/settings/yazi/theme.toml +4 -0
- stackops-8.93/src/stackops/settings/yazi/yazi_darwin.toml +90 -0
- stackops-8.93/src/stackops/settings/yazi/yazi_linux.toml +90 -0
- stackops-8.93/src/stackops/settings/yazi/yazi_windows.toml +95 -0
- stackops-8.93/src/stackops/settings/zed/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/zed/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/zed/settings.json +35 -0
- stackops-8.93/src/stackops/settings/zellij/__init__.py +1 -0
- stackops-8.93/src/stackops/settings/zellij/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/zellij/commands/__init__.py +2 -0
- stackops-8.93/src/stackops/settings/zellij/commands/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/zellij/commands/monitor +9 -0
- stackops-8.93/src/stackops/settings/zellij/commands/standard_panes +33 -0
- stackops-8.93/src/stackops/settings/zellij/config.kdl +0 -0
- stackops-8.93/src/stackops/settings/zellij/layouts/__init__.py +5 -0
- stackops-8.93/src/stackops/settings/zellij/layouts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/settings/zellij/layouts/hist +13 -0
- stackops-8.93/src/stackops/settings/zellij/layouts/panes.kdl +20 -0
- stackops-8.93/src/stackops/settings/zellij/layouts/st.kdl +51 -0
- stackops-8.93/src/stackops/settings/zellij/layouts/st2.kdl +63 -0
- stackops-8.93/src/stackops/settings/zellij/layouts/stacked_panes.kdl +11 -0
- stackops-8.93/src/stackops/setup_linux/__init__.py +2 -0
- stackops-8.93/src/stackops/setup_linux/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/setup_linux/apps_desktop.sh +94 -0
- stackops-8.93/src/stackops/setup_linux/uv.sh +15 -0
- stackops-8.93/src/stackops/setup_linux/web_shortcuts/__init__.py +2 -0
- stackops-8.93/src/stackops/setup_linux/web_shortcuts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/setup_linux/web_shortcuts/interactive.sh +25 -0
- stackops-8.93/src/stackops/setup_linux/web_shortcuts/live_from_github.sh +31 -0
- stackops-8.93/src/stackops/setup_mac/__init__.py +1 -0
- stackops-8.93/src/stackops/setup_mac/uv.sh +36 -0
- stackops-8.93/src/stackops/setup_windows/__init__.py +1 -0
- stackops-8.93/src/stackops/setup_windows/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/setup_windows/uv.ps1 +17 -0
- stackops-8.93/src/stackops/setup_windows/web_shortcuts/__init__.py +3 -0
- stackops-8.93/src/stackops/setup_windows/web_shortcuts/__pycache__/__init__.cpython-314.pyc +0 -0
- stackops-8.93/src/stackops/setup_windows/web_shortcuts/interactive.ps1 +29 -0
- stackops-8.93/src/stackops/setup_windows/web_shortcuts/live_from_github.ps1 +29 -0
- stackops-8.93/src/stackops/setup_windows/web_shortcuts/quick_init.ps1 +17 -0
- stackops-8.93/src/stackops/utils/__init__.py +0 -0
- stackops-8.93/src/stackops/utils/accessories.py +136 -0
- stackops-8.93/src/stackops/utils/ai/__init__.py +0 -0
- stackops-8.93/src/stackops/utils/cloud/onedrive/README.md +139 -0
- stackops-8.93/src/stackops/utils/cloud/onedrive/__init__.py +1 -0
- stackops-8.93/src/stackops/utils/cloud/onedrive/auth.py +289 -0
- stackops-8.93/src/stackops/utils/cloud/onedrive/file_ops.py +166 -0
- stackops-8.93/src/stackops/utils/cloud/onedrive/setup_oauth.py +60 -0
- stackops-8.93/src/stackops/utils/code.py +231 -0
- stackops-8.93/src/stackops/utils/files/art/__init__.py +4 -0
- stackops-8.93/src/stackops/utils/files/art/fat_croco.txt +10 -0
- stackops-8.93/src/stackops/utils/files/art/halfwit_croco.txt +9 -0
- stackops-8.93/src/stackops/utils/files/art/happy_croco.txt +22 -0
- stackops-8.93/src/stackops/utils/files/art/water_croco.txt +11 -0
- stackops-8.93/src/stackops/utils/files/ascii_art.py +117 -0
- stackops-8.93/src/stackops/utils/files/dbms.py +299 -0
- stackops-8.93/src/stackops/utils/files/f.py +25 -0
- stackops-8.93/src/stackops/utils/files/headers.py +69 -0
- stackops-8.93/src/stackops/utils/files/ouch/__init__.py +0 -0
- stackops-8.93/src/stackops/utils/files/ouch/decompress.py +45 -0
- stackops-8.93/src/stackops/utils/files/read.py +158 -0
- stackops-8.93/src/stackops/utils/installer_utils/__init__.py +1 -0
- stackops-8.93/src/stackops/utils/installer_utils/github_release_bulk.py +143 -0
- stackops-8.93/src/stackops/utils/installer_utils/github_release_scraper.py +99 -0
- stackops-8.93/src/stackops/utils/installer_utils/install_from_url.py +194 -0
- stackops-8.93/src/stackops/utils/installer_utils/install_request_logic.py +86 -0
- stackops-8.93/src/stackops/utils/installer_utils/installer_class.py +375 -0
- stackops-8.93/src/stackops/utils/installer_utils/installer_cli.py +231 -0
- stackops-8.93/src/stackops/utils/installer_utils/installer_helper.py +147 -0
- stackops-8.93/src/stackops/utils/installer_utils/installer_locator_utils.py +212 -0
- stackops-8.93/src/stackops/utils/installer_utils/installer_offline.py +332 -0
- stackops-8.93/src/stackops/utils/installer_utils/installer_runner.py +198 -0
- stackops-8.93/src/stackops/utils/installer_utils/installer_summary.py +123 -0
- stackops-8.93/src/stackops/utils/io.py +280 -0
- stackops-8.93/src/stackops/utils/links.py +364 -0
- stackops-8.93/src/stackops/utils/meta.py +258 -0
- stackops-8.93/src/stackops/utils/notifications.py +216 -0
- stackops-8.93/src/stackops/utils/options.py +325 -0
- stackops-8.93/src/stackops/utils/options_utils/__init__.py +0 -0
- stackops-8.93/src/stackops/utils/options_utils/options_tv_linux.py +214 -0
- stackops-8.93/src/stackops/utils/options_utils/options_tv_windows.py +88 -0
- stackops-8.93/src/stackops/utils/options_utils/textual_options_form.py +338 -0
- stackops-8.93/src/stackops/utils/options_utils/textual_options_form_types.py +107 -0
- stackops-8.93/src/stackops/utils/options_utils/tv_options.py +43 -0
- stackops-8.93/src/stackops/utils/path_compression.py +348 -0
- stackops-8.93/src/stackops/utils/path_core.py +392 -0
- stackops-8.93/src/stackops/utils/path_helper.py +192 -0
- stackops-8.93/src/stackops/utils/path_reference.py +19 -0
- stackops-8.93/src/stackops/utils/procs.py +267 -0
- stackops-8.93/src/stackops/utils/rclone.py +177 -0
- stackops-8.93/src/stackops/utils/rclone_wrapper.py +134 -0
- stackops-8.93/src/stackops/utils/scheduler.py +267 -0
- stackops-8.93/src/stackops/utils/schemas/__init__.py +1 -0
- stackops-8.93/src/stackops/utils/schemas/fire_agents/fire_agents_input.py +63 -0
- stackops-8.93/src/stackops/utils/schemas/installer/__init__.py +1 -0
- stackops-8.93/src/stackops/utils/schemas/installer/installer_types.py +99 -0
- stackops-8.93/src/stackops/utils/schemas/layouts/__init__.py +2 -0
- stackops-8.93/src/stackops/utils/schemas/layouts/layout_types.py +70 -0
- stackops-8.93/src/stackops/utils/schemas/repos/__init__.py +1 -0
- stackops-8.93/src/stackops/utils/schemas/repos/repos_types.py +25 -0
- stackops-8.93/src/stackops/utils/source_of_truth.py +35 -0
- stackops-8.93/src/stackops/utils/ssh.py +468 -0
- stackops-8.93/src/stackops/utils/ssh_utils/abc.py +5 -0
- stackops-8.93/src/stackops/utils/ssh_utils/copy_from_here.py +158 -0
- stackops-8.93/src/stackops/utils/ssh_utils/copy_to_here.py +300 -0
- stackops-8.93/src/stackops/utils/ssh_utils/utils.py +133 -0
- stackops-8.93/src/stackops/utils/ssh_utils/wsl.py +147 -0
- stackops-8.93/src/stackops/utils/ssh_utils/wsl_helper.py +217 -0
- stackops-8.93/src/stackops/utils/terminal.py +101 -0
- stackops-8.93/src/stackops/utils/upgrade_packages.py +249 -0
- stackops-8.93/src/stackops/utils/ve.py +94 -0
- stackops-8.93/src/stackops.egg-info/PKG-INFO +68 -0
- stackops-8.93/src/stackops.egg-info/SOURCES.txt +1167 -0
- stackops-8.93/src/stackops.egg-info/dependency_links.txt +1 -0
- stackops-8.93/src/stackops.egg-info/entry_points.txt +10 -0
- stackops-8.93/src/stackops.egg-info/requires.txt +16 -0
- stackops-8.93/src/stackops.egg-info/top_level.txt +1 -0
- stackops-8.93/tests/test_cli_self_ai_app.py +26 -0
- stackops-8.93/tests/test_path_reference_usage.py +448 -0
- stackops-0.1.0/.gitignore +0 -10
- stackops-0.1.0/PKG-INFO +0 -41
- stackops-0.1.0/README.md +0 -30
- stackops-0.1.0/pyproject.toml +0 -30
- stackops-0.1.0/src/stackops/__init__.py +0 -8
- stackops-0.1.0/src/stackops/__main__.py +0 -3
- stackops-0.1.0/src/stackops/cli.py +0 -22
stackops-8.93/PKG-INFO
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stackops
|
|
3
|
+
Version: 8.93
|
|
4
|
+
Summary: Developer Stack Manager
|
|
5
|
+
Author-email: Alex Al-Saffar <programmer@usa.com>
|
|
6
|
+
License: Apache 2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/thisismygitrepo/stackops
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/thisismygitrepo/stackops/issues
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.13
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: fire>=0.7.1
|
|
15
|
+
Requires-Dist: gitpython>=3.1.46
|
|
16
|
+
Requires-Dist: joblib>=1.5.3
|
|
17
|
+
Requires-Dist: paramiko>=4.0.0
|
|
18
|
+
Requires-Dist: psutil>=7.2.2
|
|
19
|
+
Requires-Dist: pyyaml>=6.0.3
|
|
20
|
+
Requires-Dist: questionary>=2.1.1
|
|
21
|
+
Requires-Dist: randomname>=0.2.1
|
|
22
|
+
Requires-Dist: requests>=2.32.5
|
|
23
|
+
Requires-Dist: rich>=14.3.3
|
|
24
|
+
Requires-Dist: tenacity>=9.1.4
|
|
25
|
+
Requires-Dist: typer>=0.24.1
|
|
26
|
+
Provides-Extra: windows
|
|
27
|
+
Provides-Extra: plot
|
|
28
|
+
|
|
29
|
+
# 🗜 StackOps
|
|
30
|
+
|
|
31
|
+
StackOps is a cross-platform CLI for bootstrapping and maintaining a development machine. It groups package installation, config syncing, data syncing, session automation, and helper utilities into one install.
|
|
32
|
+
|
|
33
|
+
See the [online docs](https://thisismygitrepo.github.io/stackops/) for full usage and reference material.
|
|
34
|
+
|
|
35
|
+
## Install with `uv`
|
|
36
|
+
|
|
37
|
+
### Linux / macOS
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
41
|
+
uv tool install --upgrade --python 3.14 stackops
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Windows
|
|
45
|
+
|
|
46
|
+
```powershell
|
|
47
|
+
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
48
|
+
uv tool install --upgrade --python 3.14 stackops
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
## Quick init
|
|
53
|
+
|
|
54
|
+
```shell
|
|
55
|
+
devops install --group sysabc # Install (if missing) package manager (apt, brew, winget)
|
|
56
|
+
devops config copy-assets all # copy config files to machine
|
|
57
|
+
devops config sync down --sensitivity public --method copy --on-conflict overwrite-default-path --which all # link config files
|
|
58
|
+
devops config terminal config-shell --which default # add alias to shell
|
|
59
|
+
devops install --group termabc # install the basic terminal cli's
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Author
|
|
63
|
+
|
|
64
|
+
Alex Al-Saffar. [email](mailto:programmer@usa.com)
|
|
65
|
+
|
|
66
|
+
## Contributor
|
|
67
|
+
|
|
68
|
+
Ruby Chan. [email](mailto:ruby.chan@sa.gov.au)
|
stackops-8.93/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# 🗜 StackOps
|
|
2
|
+
|
|
3
|
+
StackOps is a cross-platform CLI for bootstrapping and maintaining a development machine. It groups package installation, config syncing, data syncing, session automation, and helper utilities into one install.
|
|
4
|
+
|
|
5
|
+
See the [online docs](https://thisismygitrepo.github.io/stackops/) for full usage and reference material.
|
|
6
|
+
|
|
7
|
+
## Install with `uv`
|
|
8
|
+
|
|
9
|
+
### Linux / macOS
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
13
|
+
uv tool install --upgrade --python 3.14 stackops
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
### Windows
|
|
17
|
+
|
|
18
|
+
```powershell
|
|
19
|
+
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
20
|
+
uv tool install --upgrade --python 3.14 stackops
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## Quick init
|
|
25
|
+
|
|
26
|
+
```shell
|
|
27
|
+
devops install --group sysabc # Install (if missing) package manager (apt, brew, winget)
|
|
28
|
+
devops config copy-assets all # copy config files to machine
|
|
29
|
+
devops config sync down --sensitivity public --method copy --on-conflict overwrite-default-path --which all # link config files
|
|
30
|
+
devops config terminal config-shell --which default # add alias to shell
|
|
31
|
+
devops install --group termabc # install the basic terminal cli's
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Author
|
|
35
|
+
|
|
36
|
+
Alex Al-Saffar. [email](mailto:programmer@usa.com)
|
|
37
|
+
|
|
38
|
+
## Contributor
|
|
39
|
+
|
|
40
|
+
Ruby Chan. [email](mailto:ruby.chan@sa.gov.au)
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=80", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
# requires = ["hatchling"]
|
|
5
|
+
# build-backend = "hatchling.build"
|
|
6
|
+
|
|
7
|
+
[project]
|
|
8
|
+
name = "stackops"
|
|
9
|
+
version = "8.93"
|
|
10
|
+
description = "Developer Stack Manager"
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
license = {text = "Apache 2.0"}
|
|
13
|
+
authors = [
|
|
14
|
+
{name = "Alex Al-Saffar", email = "programmer@usa.com"},
|
|
15
|
+
]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"License :: OSI Approved :: Apache Software License",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
]
|
|
21
|
+
requires-python = ">=3.13"
|
|
22
|
+
dependencies = [
|
|
23
|
+
"fire>=0.7.1",
|
|
24
|
+
"gitpython>=3.1.46",
|
|
25
|
+
"joblib>=1.5.3",
|
|
26
|
+
"paramiko>=4.0.0",
|
|
27
|
+
"psutil>=7.2.2",
|
|
28
|
+
"pyyaml>=6.0.3",
|
|
29
|
+
"questionary>=2.1.1",
|
|
30
|
+
"randomname>=0.2.1",
|
|
31
|
+
"requests>=2.32.5",
|
|
32
|
+
"rich>=14.3.3",
|
|
33
|
+
"tenacity>=9.1.4",
|
|
34
|
+
"typer>=0.24.1",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[project.optional-dependencies]
|
|
38
|
+
windows = []
|
|
39
|
+
plot = [
|
|
40
|
+
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
[project.urls]
|
|
45
|
+
"Homepage" = "https://github.com/thisismygitrepo/stackops"
|
|
46
|
+
"Bug Tracker" = "https://github.com/thisismygitrepo/stackops/issues"
|
|
47
|
+
|
|
48
|
+
[project.scripts]
|
|
49
|
+
devops = "stackops.scripts.python.devops:main"
|
|
50
|
+
cloud = "stackops.scripts.python.cloud:main"
|
|
51
|
+
fire = "stackops.scripts.python.fire_jobs:main"
|
|
52
|
+
agents = "stackops.scripts.python.agents:main"
|
|
53
|
+
terminal = "stackops.scripts.python.terminal:main"
|
|
54
|
+
croshell = "stackops.scripts.python.croshell:main"
|
|
55
|
+
utils = "stackops.scripts.python.utils:main"
|
|
56
|
+
# mcfg = "stackops.scripts.python.mcfg_entry:main"
|
|
57
|
+
stackops = "stackops.scripts.python.mcfg_entry:main"
|
|
58
|
+
seek = "stackops.scripts.python.seek:main"
|
|
59
|
+
|
|
60
|
+
[tool.setuptools]
|
|
61
|
+
package-dir = {"" = "src"}
|
|
62
|
+
include-package-data = true
|
|
63
|
+
license-files = []
|
|
64
|
+
|
|
65
|
+
[tool.setuptools.packages.find]
|
|
66
|
+
where = ["src"]
|
|
67
|
+
|
|
68
|
+
[tool.setuptools.package-data]
|
|
69
|
+
stackops = ["**/*.toml", "**/*.md", "**/*.sh", "**/*.ps1", "**/*.txt"]
|
|
70
|
+
|
|
71
|
+
[dependency-groups]
|
|
72
|
+
dev = [
|
|
73
|
+
"aider>=0.2.6",
|
|
74
|
+
"build>=1.4.1",
|
|
75
|
+
"cleanpy>=0.5.1",
|
|
76
|
+
"cowsay>=6.1",
|
|
77
|
+
"duckdb>=1.5.1",
|
|
78
|
+
"gdown>=5.2.1",
|
|
79
|
+
"ipdb>=0.13.13",
|
|
80
|
+
"ipykernel>=7.2.0",
|
|
81
|
+
"ipython>=9.11.0",
|
|
82
|
+
"kaleido>=1.2.0",
|
|
83
|
+
"marimo>=0.21.1",
|
|
84
|
+
"matplotlib>=3.10.8",
|
|
85
|
+
"mkdocstrings>=1.0.3",
|
|
86
|
+
"mkdocstrings-python>=2.0.3",
|
|
87
|
+
"mypy>=1.19.1",
|
|
88
|
+
"numpy>=2.4.3",
|
|
89
|
+
"pandas>=3.0.1",
|
|
90
|
+
"plotly>=6.6.0",
|
|
91
|
+
"polars>=1.39.3",
|
|
92
|
+
"pre-commit>=4.5.1",
|
|
93
|
+
"pudb>=2025.1.5",
|
|
94
|
+
"py7zr>=1.1.0",
|
|
95
|
+
"pydantic>=2.12.5",
|
|
96
|
+
"pydeps>=3.0.2",
|
|
97
|
+
"pyinstaller>=6.19.0",
|
|
98
|
+
"pylint>=4.0.5",
|
|
99
|
+
"pylsp-mypy>=0.7.1",
|
|
100
|
+
"pymupdf>=1.27.2.2",
|
|
101
|
+
"pypdf>=6.9.2",
|
|
102
|
+
"pyrefly>=0.58.0",
|
|
103
|
+
"pyright>=1.1.408",
|
|
104
|
+
"pytest>=9.0.2",
|
|
105
|
+
"python-lsp-server[mypy]>=1.14.0",
|
|
106
|
+
"qrcode>=8.2",
|
|
107
|
+
"ruff>=0.15.7",
|
|
108
|
+
"ruff-lsp>=0.0.62",
|
|
109
|
+
"sqlalchemy>=2.0.48",
|
|
110
|
+
"textual>=8.1.1",
|
|
111
|
+
"trogon>=0.6.0",
|
|
112
|
+
"ty>=0.0.25",
|
|
113
|
+
"types-mysqlclient>=2.2.0.20250915",
|
|
114
|
+
"types-paramiko>=4.0.0.20260322",
|
|
115
|
+
"types-pytz>=2026.1.1.20260304",
|
|
116
|
+
"types-pyyaml>=6.0.12.20250915",
|
|
117
|
+
"types-requests>=2.32.4.20260324",
|
|
118
|
+
"types-sqlalchemy>=1.4.53.38",
|
|
119
|
+
"types-toml>=0.10.8.20240310",
|
|
120
|
+
"types-urllib3>=1.26.25.14",
|
|
121
|
+
"vt-py>=0.22.0",
|
|
122
|
+
"yapf>=0.43.0",
|
|
123
|
+
"zensical>=0.0.29",
|
|
124
|
+
]
|
|
125
|
+
other = [
|
|
126
|
+
"duckdb-engine>=0.17.0",
|
|
127
|
+
"pycrucible>=0.4.6",
|
|
128
|
+
"vt-py>=0.22.0",
|
|
129
|
+
]
|
|
130
|
+
plot = [
|
|
131
|
+
"duckdb>=1.5.1",
|
|
132
|
+
"ipykernel>=7.2.0",
|
|
133
|
+
"ipython>=9.11.0",
|
|
134
|
+
"jupyterlab>=4.5.6",
|
|
135
|
+
"kaleido>=1.2.0",
|
|
136
|
+
"matplotlib>=3.10.8",
|
|
137
|
+
"nbformat>=5.10.4",
|
|
138
|
+
"numpy>=2.4.3",
|
|
139
|
+
"plotly>=6.6.0",
|
|
140
|
+
"polars>=1.39.3",
|
|
141
|
+
"python-magic>=0.4.27",
|
|
142
|
+
"sqlalchemy>=2.0.48",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
[tool.pycrucible]
|
|
147
|
+
entry = "src/stackops/scripts/python/devops.py"
|
|
148
|
+
[tool.pycrucible.options]
|
|
149
|
+
debug = false
|
|
150
|
+
extract_to_temp = false
|
|
151
|
+
delete_after_run = false
|
|
152
|
+
offline_mode = false
|
|
153
|
+
|
|
154
|
+
[tool.pycrucible.patterns]
|
|
155
|
+
include = [
|
|
156
|
+
"**/*.py",
|
|
157
|
+
"**/*.ps1",
|
|
158
|
+
"**/*.sh",
|
|
159
|
+
"**/*.md",
|
|
160
|
+
]
|
|
161
|
+
exclude = [
|
|
162
|
+
"**/__pycache__/**",
|
|
163
|
+
]
|
stackops-8.93/setup.cfg
ADDED
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
from stackops.cluster.remote.models import (
|
|
2
|
+
JOB_STATUS,
|
|
3
|
+
TRANSFER_METHOD,
|
|
4
|
+
LAUNCH_METHOD,
|
|
5
|
+
MACHINE_TYPE,
|
|
6
|
+
WorkloadParams,
|
|
7
|
+
JobStatus,
|
|
8
|
+
EmailParams,
|
|
9
|
+
LogEntry,
|
|
10
|
+
RemoteStackOpsConfig,
|
|
11
|
+
ExecutionTimings,
|
|
12
|
+
)
|
|
13
|
+
from stackops.cluster.remote.job_params import JobParams
|
|
14
|
+
from stackops.cluster.remote.file_manager import FileManager
|
|
15
|
+
from stackops.cluster.remote.remote_machine import RemoteMachine
|
|
16
|
+
from stackops.cluster.remote.cloud_manager import CloudManager
|
|
17
|
+
from stackops.cluster.remote.distribute import LoadCriterion, MachineSpecs, ThreadLoadCalculator, MachineLoadCalculator, Cluster
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
FLOWCHART_PATH_REFERENCE = "flowchart.mmd"
|
|
21
|
+
|
|
22
|
+
__all__ = [
|
|
23
|
+
"JOB_STATUS",
|
|
24
|
+
"TRANSFER_METHOD",
|
|
25
|
+
"LAUNCH_METHOD",
|
|
26
|
+
"MACHINE_TYPE",
|
|
27
|
+
"WorkloadParams",
|
|
28
|
+
"JobStatus",
|
|
29
|
+
"EmailParams",
|
|
30
|
+
"LogEntry",
|
|
31
|
+
"RemoteStackOpsConfig",
|
|
32
|
+
"ExecutionTimings",
|
|
33
|
+
"JobParams",
|
|
34
|
+
"FileManager",
|
|
35
|
+
"RemoteMachine",
|
|
36
|
+
"CloudManager",
|
|
37
|
+
"LoadCriterion",
|
|
38
|
+
"MachineSpecs",
|
|
39
|
+
"ThreadLoadCalculator",
|
|
40
|
+
"MachineLoadCalculator",
|
|
41
|
+
"Cluster",
|
|
42
|
+
"FLOWCHART_PATH_REFERENCE",
|
|
43
|
+
]
|