machineconfig 8.14__py3-none-any.whl → 8.45__py3-none-any.whl

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.

Potentially problematic release.


This version of machineconfig might be problematic. Click here for more details.

Files changed (269) hide show
  1. machineconfig/cluster/remote/run_cluster.py +1 -1
  2. machineconfig/cluster/remote/run_remote.py +1 -1
  3. machineconfig/cluster/sessions_managers/utils/maker.py +10 -8
  4. machineconfig/cluster/sessions_managers/wt_local.py +1 -1
  5. machineconfig/cluster/sessions_managers/wt_local_manager.py +1 -1
  6. machineconfig/cluster/sessions_managers/zellij_local.py +1 -1
  7. machineconfig/cluster/sessions_managers/zellij_local_manager.py +1 -1
  8. machineconfig/jobs/installer/checks/check_installations.py +133 -0
  9. machineconfig/jobs/installer/checks/install_utils.py +132 -0
  10. machineconfig/jobs/installer/checks/report_utils.py +39 -0
  11. machineconfig/jobs/installer/checks/vt_utils.py +89 -0
  12. machineconfig/jobs/installer/installer_data.json +225 -140
  13. machineconfig/jobs/installer/linux_scripts/docker.sh +6 -9
  14. machineconfig/jobs/installer/package_groups.py +10 -9
  15. machineconfig/jobs/installer/python_scripts/boxes.py +1 -2
  16. machineconfig/jobs/installer/python_scripts/code.py +10 -8
  17. machineconfig/jobs/installer/python_scripts/hx.py +30 -13
  18. machineconfig/jobs/installer/python_scripts/nerfont_windows_helper.py +6 -5
  19. machineconfig/jobs/installer/python_scripts/sysabc.py +25 -19
  20. machineconfig/jobs/installer/python_scripts/yazi.py +33 -17
  21. machineconfig/jobs/scripts/powershell_scripts/cmatrix.ps1 +52 -0
  22. machineconfig/jobs/scripts/powershell_scripts/mount_ssh.ps1 +1 -1
  23. machineconfig/jobs/scripts_dynamic/a.py +413 -10
  24. machineconfig/profile/create_links.py +77 -20
  25. machineconfig/profile/create_links_export.py +40 -51
  26. machineconfig/profile/mapper_data.toml +30 -0
  27. machineconfig/profile/mapper_dotfiles.toml +253 -0
  28. machineconfig/scripts/python/agents.py +70 -172
  29. machineconfig/scripts/python/ai/initai.py +3 -1
  30. machineconfig/scripts/python/ai/scripts/__init__.py +1 -0
  31. machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1 +2 -0
  32. machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh +7 -5
  33. machineconfig/scripts/python/ai/solutions/claude/claude.py +1 -1
  34. machineconfig/scripts/python/ai/solutions/cline/cline.py +1 -1
  35. machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py +1 -1
  36. machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +29 -0
  37. machineconfig/scripts/python/ai/solutions/crush/crush.py +1 -1
  38. machineconfig/scripts/python/ai/solutions/cursor/cursors.py +1 -1
  39. machineconfig/scripts/python/ai/solutions/gemini/gemini.py +1 -1
  40. machineconfig/scripts/python/ai/solutions/gemini/settings.json +3 -0
  41. machineconfig/scripts/python/ai/{solutions → utils}/generic.py +2 -15
  42. machineconfig/scripts/python/ai/utils/vscode_tasks.py +6 -3
  43. machineconfig/scripts/python/cloud.py +58 -11
  44. machineconfig/scripts/python/croshell.py +4 -156
  45. machineconfig/scripts/python/devops.py +57 -40
  46. machineconfig/scripts/python/devops_navigator.py +17 -3
  47. machineconfig/scripts/python/fire_jobs.py +8 -207
  48. machineconfig/scripts/python/ftpx.py +5 -225
  49. machineconfig/scripts/python/graph/cli_graph.json +8743 -0
  50. machineconfig/scripts/python/{env_manager → helper_env}/path_manager_tui.py +2 -2
  51. machineconfig/scripts/python/{env_manager → helpers/helper_env}/env_manager_tui.py +1 -1
  52. machineconfig/scripts/python/helpers/helper_env/path_manager_tui.py +228 -0
  53. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_crush.py +1 -1
  54. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_cursor_agents.py +1 -1
  55. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_gemini.py +1 -1
  56. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_qwen.py +1 -1
  57. machineconfig/scripts/python/helpers/helpers_agents/agents_impl.py +168 -0
  58. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_help_launch.py +5 -5
  59. machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/cloud_copy.py +6 -6
  60. machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/cloud_mount.py +10 -5
  61. machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/cloud_sync.py +3 -3
  62. machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/helpers2.py +1 -1
  63. machineconfig/scripts/python/helpers/helpers_croshell/croshell_impl.py +225 -0
  64. machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/scheduler.py +4 -4
  65. machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/start_slidev.py +7 -6
  66. machineconfig/scripts/python/helpers/helpers_devops/backup_config.py +149 -0
  67. machineconfig/scripts/python/helpers/helpers_devops/cli_backup_retrieve.py +267 -0
  68. machineconfig/scripts/python/helpers/helpers_devops/cli_config.py +98 -0
  69. machineconfig/scripts/python/helpers/helpers_devops/cli_config_dotfile.py +274 -0
  70. machineconfig/scripts/python/helpers/helpers_devops/cli_data.py +76 -0
  71. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/cli_nw.py +52 -72
  72. machineconfig/scripts/python/helpers/helpers_devops/cli_repos.py +265 -0
  73. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/cli_self.py +39 -23
  74. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/cli_share_file.py +44 -30
  75. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/cli_share_server.py +26 -43
  76. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/cli_share_terminal.py +12 -6
  77. machineconfig/scripts/python/helpers/helpers_devops/cli_ssh.py +167 -0
  78. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/devops_status.py +12 -6
  79. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/devops_update_repos.py +1 -1
  80. machineconfig/scripts/python/{interactive.py → helpers/helpers_devops/interactive.py} +68 -52
  81. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/run_script.py +75 -58
  82. machineconfig/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.ps1 +41 -0
  83. machineconfig/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.sh +48 -0
  84. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/themes/choose_wezterm_theme.py +3 -3
  85. machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_impl.py +233 -0
  86. machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/fire_jobs_route_helper.py +3 -3
  87. machineconfig/scripts/python/helpers/helpers_msearch/msearch_impl.py +248 -0
  88. machineconfig/scripts/python/{helpers_msearch → helpers/helpers_msearch}/scripts_linux/fzfg +4 -3
  89. machineconfig/scripts/python/helpers/helpers_msearch/scripts_linux/search_with_context.sh +48 -0
  90. machineconfig/scripts/python/{helpers_msearch → helpers/helpers_msearch}/scripts_windows/fzfg.ps1 +1 -1
  91. machineconfig/scripts/python/helpers/helpers_navigator/__init__.py +20 -0
  92. machineconfig/scripts/python/helpers/helpers_navigator/cli_graph_loader.py +234 -0
  93. machineconfig/scripts/python/{helpers_navigator → helpers/helpers_navigator}/command_builder.py +61 -13
  94. machineconfig/scripts/python/helpers/helpers_navigator/command_detail.py +153 -0
  95. machineconfig/scripts/python/helpers/helpers_navigator/command_tree.py +45 -0
  96. machineconfig/scripts/python/{helpers_navigator → helpers/helpers_navigator}/data_models.py +18 -11
  97. machineconfig/scripts/python/{helpers_navigator → helpers/helpers_navigator}/main_app.py +5 -5
  98. machineconfig/scripts/python/helpers/helpers_network/__init__.py +0 -0
  99. machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/address.py +15 -17
  100. machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/address_switch.py +1 -1
  101. machineconfig/scripts/python/helpers/helpers_network/ftpx_impl.py +276 -0
  102. machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/mount_ssh.py +2 -2
  103. machineconfig/scripts/python/helpers/helpers_network/ssh_add_identity.py +73 -0
  104. machineconfig/scripts/python/helpers/helpers_network/ssh_add_ssh_key.py +175 -0
  105. machineconfig/scripts/python/helpers/helpers_network/ssh_debug_linux.py +319 -0
  106. machineconfig/scripts/python/helpers/helpers_network/ssh_debug_windows.py +275 -0
  107. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/action.py +3 -3
  108. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/action_helper.py +3 -3
  109. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/cloud_repo_sync.py +116 -33
  110. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/grource.py +3 -2
  111. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/record.py +33 -13
  112. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/repo_analyzer_2.py +63 -19
  113. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/update.py +0 -6
  114. machineconfig/scripts/python/helpers/helpers_search/script_help.py +81 -0
  115. machineconfig/scripts/python/helpers/helpers_sessions/__init__.py +0 -0
  116. machineconfig/scripts/python/helpers/helpers_sessions/sessions_impl.py +177 -0
  117. machineconfig/scripts/python/{helpers_sessions → helpers/helpers_sessions}/sessions_multiprocess.py +1 -1
  118. machineconfig/scripts/python/helpers/helpers_terminal/__init__.py +0 -0
  119. machineconfig/scripts/python/helpers/helpers_terminal/terminal_impl.py +96 -0
  120. machineconfig/scripts/python/{helpers_utils → helpers/helpers_utils}/download.py +1 -1
  121. machineconfig/scripts/python/{helpers_utils → helpers/helpers_utils}/python.py +46 -26
  122. machineconfig/scripts/python/helpers/helpers_utils/specs.py +246 -0
  123. machineconfig/scripts/python/mcfg_entry.py +133 -48
  124. machineconfig/scripts/python/msearch.py +15 -61
  125. machineconfig/scripts/python/sessions.py +59 -194
  126. machineconfig/scripts/python/terminal.py +18 -96
  127. machineconfig/scripts/python/utils.py +101 -20
  128. machineconfig/settings/atuin/config.toml +294 -0
  129. machineconfig/settings/atuin/themes/catppuccin-mocha-mauve.toml +12 -0
  130. machineconfig/settings/linters/.ruff.toml +1 -0
  131. machineconfig/settings/mprocs/windows/mprocs.yaml +2 -2
  132. machineconfig/settings/shells/bash/init.sh +6 -3
  133. machineconfig/settings/shells/pwsh/init.ps1 +69 -1
  134. machineconfig/settings/shells/pwsh/search_pwsh_history.ps1 +99 -0
  135. machineconfig/settings/shells/wezterm/wezterm.lua +4 -1
  136. machineconfig/settings/shells/wt/settings.json +20 -7
  137. machineconfig/settings/shells/zsh/init.sh +34 -4
  138. machineconfig/settings/television/cable_unix/bash-history.toml +1 -1
  139. machineconfig/settings/television/cable_windows/pwsh-history.toml +1 -1
  140. machineconfig/settings/tv/config.toml +234 -0
  141. machineconfig/settings/tv/themes/catppuccin-mocha-sky.toml +22 -0
  142. machineconfig/settings/wsl/.wslconfig +5 -30
  143. machineconfig/settings/yazi/yazi_linux.toml +18 -8
  144. machineconfig/settings/zellij/layouts/st.kdl +2 -2
  145. machineconfig/settings/zellij/layouts/st2.kdl +1 -1
  146. machineconfig/setup_linux/web_shortcuts/interactive.sh +10 -10
  147. machineconfig/setup_linux/web_shortcuts/live_from_github.sh +3 -0
  148. machineconfig/setup_mac/__init__.py +0 -2
  149. machineconfig/setup_windows/__init__.py +0 -1
  150. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +14 -13
  151. machineconfig/setup_windows/web_shortcuts/live_from_github.ps1 +4 -3
  152. machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +3 -3
  153. machineconfig/type_hinting/sql/__init__.py +1 -0
  154. machineconfig/type_hinting/sql/base.py +216 -0
  155. machineconfig/type_hinting/sql/core_schema.py +64 -0
  156. machineconfig/type_hinting/sql/core_schema_typeddict.py +41 -0
  157. machineconfig/type_hinting/sql/typeddict_codegen.py +222 -0
  158. machineconfig/type_hinting/typedict/__init__.py +1 -0
  159. machineconfig/type_hinting/typedict/ast_utils.py +130 -0
  160. machineconfig/type_hinting/typedict/generator_helpers.py +319 -0
  161. machineconfig/type_hinting/typedict/generators.py +231 -0
  162. machineconfig/type_hinting/typedict/polars_schema.py +24 -0
  163. machineconfig/type_hinting/typedict/polars_schema_typeddict.py +63 -0
  164. machineconfig/utils/accessories.py +24 -0
  165. machineconfig/utils/code.py +41 -13
  166. machineconfig/utils/files/ascii_art.py +10 -14
  167. machineconfig/utils/files/headers.py +3 -5
  168. machineconfig/utils/files/read.py +8 -1
  169. machineconfig/utils/installer_utils/github_release_bulk.py +1 -0
  170. machineconfig/utils/installer_utils/install_from_url.py +1 -1
  171. machineconfig/utils/installer_utils/installer_class.py +12 -4
  172. machineconfig/utils/installer_utils/installer_cli.py +1 -15
  173. machineconfig/utils/installer_utils/installer_helper.py +2 -2
  174. machineconfig/utils/installer_utils/installer_locator_utils.py +13 -13
  175. machineconfig/utils/installer_utils/installer_runner.py +4 -4
  176. machineconfig/utils/meta.py +6 -4
  177. machineconfig/utils/options.py +49 -19
  178. machineconfig/utils/options_utils/__init__.py +0 -0
  179. machineconfig/utils/options_utils/options_tv_linux.py +211 -0
  180. machineconfig/utils/options_utils/options_tv_windows.py +88 -0
  181. machineconfig/utils/options_utils/tv_options.py +37 -0
  182. machineconfig/utils/path_extended.py +6 -6
  183. machineconfig/utils/scheduler.py +8 -2
  184. machineconfig/utils/schemas/fire_agents/fire_agents_input.py +1 -1
  185. machineconfig/utils/source_of_truth.py +6 -1
  186. machineconfig/utils/ssh.py +69 -18
  187. machineconfig/utils/ssh_utils/abc.py +1 -1
  188. machineconfig/utils/ssh_utils/wsl.py +107 -170
  189. machineconfig/utils/ssh_utils/wsl_helper.py +217 -0
  190. machineconfig/utils/upgrade_packages.py +4 -8
  191. {machineconfig-8.14.dist-info → machineconfig-8.45.dist-info}/METADATA +29 -22
  192. {machineconfig-8.14.dist-info → machineconfig-8.45.dist-info}/RECORD +247 -208
  193. machineconfig/jobs/installer/check_installations.py +0 -248
  194. machineconfig/profile/backup.toml +0 -49
  195. machineconfig/profile/mapper.toml +0 -263
  196. machineconfig/scripts/python/helpers_devops/cli_config.py +0 -105
  197. machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +0 -89
  198. machineconfig/scripts/python/helpers_devops/cli_data.py +0 -25
  199. machineconfig/scripts/python/helpers_devops/cli_repos.py +0 -208
  200. machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py +0 -80
  201. machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.bash +0 -3
  202. machineconfig/scripts/python/helpers_navigator/__init__.py +0 -20
  203. machineconfig/scripts/python/helpers_navigator/command_detail.py +0 -44
  204. machineconfig/scripts/python/helpers_navigator/command_tree.py +0 -620
  205. machineconfig/scripts/python/helpers_network/ssh_add_identity.py +0 -116
  206. machineconfig/scripts/python/helpers_network/ssh_add_ssh_key.py +0 -153
  207. machineconfig/scripts/python/helpers_network/ssh_debug_linux.py +0 -391
  208. machineconfig/scripts/python/helpers_network/ssh_debug_windows.py +0 -338
  209. machineconfig/scripts/python/helpers_repos/entrypoint.py +0 -77
  210. machineconfig/setup_mac/ssh/openssh_setup.sh +0 -114
  211. machineconfig/setup_windows/ssh/add-sshkey.ps1 +0 -29
  212. machineconfig/setup_windows/ssh/openssh-server.ps1 +0 -37
  213. machineconfig/utils/options_tv.py +0 -119
  214. machineconfig/utils/tst.py +0 -20
  215. /machineconfig/{scripts/python/helpers_agents → jobs/installer/checks}/__init__.py +0 -0
  216. /machineconfig/scripts/python/ai/{solutions/_shared.py → utils/shared.py} +0 -0
  217. /machineconfig/scripts/python/{helpers_agents/agentic_frameworks → graph}/__init__.py +0 -0
  218. /machineconfig/scripts/python/{helpers_cloud → helpers}/__init__.py +0 -0
  219. /machineconfig/scripts/python/{env_manager → helpers/helper_env}/__init__.py +0 -0
  220. /machineconfig/scripts/python/{env_manager → helpers/helper_env}/path_manager_backend.py +0 -0
  221. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_agents}/__init__.py +0 -0
  222. /machineconfig/scripts/python/{helpers_devops → helpers/helpers_agents/agentic_frameworks}/__init__.py +0 -0
  223. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_crush.json +0 -0
  224. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_help_search.py +0 -0
  225. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_helper_types.py +0 -0
  226. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_load_balancer.py +0 -0
  227. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/configs/aichat/config.yaml +0 -0
  228. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/configs/aider/.aider.conf.yml +0 -0
  229. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/configs/copilot/config.yml +0 -0
  230. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/configs/crush/crush.json +0 -0
  231. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/configs/gemini/settings.json +0 -0
  232. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/privacy.py +0 -0
  233. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/templates/prompt.txt +0 -0
  234. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/templates/template.ps1 +0 -0
  235. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/templates/template.sh +0 -0
  236. /machineconfig/scripts/python/{helpers_devops/themes → helpers/helpers_cloud}/__init__.py +0 -0
  237. /machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/cloud_helpers.py +0 -0
  238. /machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/helpers5.py +0 -0
  239. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_croshell}/__init__.py +0 -0
  240. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/crosh.py +0 -0
  241. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/pomodoro.py +0 -0
  242. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/viewer.py +0 -0
  243. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/viewer_template.py +0 -0
  244. /machineconfig/scripts/python/{helpers_network → helpers/helpers_devops}/__init__.py +0 -0
  245. /machineconfig/scripts/python/{helpers_sessions → helpers/helpers_devops/themes}/__init__.py +0 -0
  246. /machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/themes/choose_pwsh_theme.ps1 +0 -0
  247. /machineconfig/scripts/python/{helpers_devops/themes/choose_starship_theme.ps1 → helpers/helpers_fire_command/__init__.py} +0 -0
  248. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/cloud_manager.py +0 -0
  249. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/f.py +0 -0
  250. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/file_wrangler.py +0 -0
  251. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/fire_jobs_args_helper.py +0 -0
  252. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/fire_jobs_streamlit_helper.py +0 -0
  253. /machineconfig/scripts/python/{helpers_msearch → helpers/helpers_msearch}/__init__.py +0 -0
  254. /machineconfig/scripts/python/{helpers_navigator → helpers/helpers_navigator}/search_bar.py +0 -0
  255. /machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/mount_nfs.py +0 -0
  256. /machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/mount_nw_drive.py +0 -0
  257. /machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/onetimeshare.py +0 -0
  258. /machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/wifi_conn.py +0 -0
  259. /machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/clone.py +0 -0
  260. /machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/repo_analyzer_1.py +0 -0
  261. /machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/sync.py +0 -0
  262. /machineconfig/scripts/python/helpers/{ast_search.py → helpers_search/ast_search.py} +0 -0
  263. /machineconfig/scripts/python/helpers/{qr_code.py → helpers_search/qr_code.py} +0 -0
  264. /machineconfig/scripts/python/helpers/{repo_rag.py → helpers_search/repo_rag.py} +0 -0
  265. /machineconfig/scripts/python/helpers/{symantic_search.py → helpers_search/symantic_search.py} +0 -0
  266. /machineconfig/scripts/python/{helpers_utils → helpers/helpers_utils}/pdf.py +0 -0
  267. {machineconfig-8.14.dist-info → machineconfig-8.45.dist-info}/WHEEL +0 -0
  268. {machineconfig-8.14.dist-info → machineconfig-8.45.dist-info}/entry_points.txt +0 -0
  269. {machineconfig-8.14.dist-info → machineconfig-8.45.dist-info}/top_level.txt +0 -0
@@ -9,23 +9,23 @@ machineconfig/cluster/remote/job_params.py,sha256=_t5QKqRHReShaBlJfSgVS5E3_oHYcR
9
9
  machineconfig/cluster/remote/loader_runner.py,sha256=Ia62ALepM3TP7kHaymfp0jEMuHJ0HjF31VbNJOCYYtM,7061
10
10
  machineconfig/cluster/remote/remote_machine.py,sha256=xRuoHKNsIT0-FTFSvF1q7scnGKz8Qp6bxuzYdQLUOVA,19670
11
11
  machineconfig/cluster/remote/run_cloud.py,sha256=0o4-v5yFEqvlHzoKDXljRCR5ikx_r5w4oYE5OCtVIK8,2378
12
- machineconfig/cluster/remote/run_cluster.py,sha256=ZFNl4EDybicedWKX5qBwSSeKKfdV2lQFD_1kcAyjHYM,4691
13
- machineconfig/cluster/remote/run_remote.py,sha256=vCc56t8BUAUJp7tyb0PFfwy5hlmIdRdzcjlpP9gcLdc,3247
12
+ machineconfig/cluster/remote/run_cluster.py,sha256=GIgqTlOxFIbHKv4m5g7ZG20RXmKKplROL_9hT4tWDMw,4683
13
+ machineconfig/cluster/remote/run_remote.py,sha256=aVyfp9T2La9Yk6rs4k3oGh9j6Qr6E09v-nKPYxqzaAg,3239
14
14
  machineconfig/cluster/remote/script_execution.py,sha256=d1NZdIHlB0H69cyLgOv81vS9ui81d9ClM4WA4ICHKLY,9857
15
15
  machineconfig/cluster/remote/script_notify_upon_completion.py,sha256=GRxnnbnOl1-hTovTN-zI_M9wdV7x293yA77_mou9I1o,2032
16
16
  machineconfig/cluster/sessions_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- machineconfig/cluster/sessions_managers/wt_local.py,sha256=AwiSXXOX4XLfrAkgZoy1sSYkNo-7Nq_n4hxPYFAoYqo,9781
18
- machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=ssdAkKDCvoFQqCKTDbFqCn6B5DzDlbUToBvj7riUiBU,20092
17
+ machineconfig/cluster/sessions_managers/wt_local.py,sha256=ULBlsFymtxeAzV7E56ijlQ32-MpwTv5urnkmWx0Fpm4,9784
18
+ machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=PQrdVphYpCnQzRQCSYLNS3WwEQ7sQtX0ukJ1f6XHp4o,20092
19
19
  machineconfig/cluster/sessions_managers/wt_remote.py,sha256=yofv3Zlj2aClDUKYhUJVyvO-Wh76Wka71n-DY1ODj0Q,9072
20
20
  machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=IRkgyA3poswUoRsA_8nWqeA8Pr7DTJavg2MTRZctmbY,14609
21
- machineconfig/cluster/sessions_managers/zellij_local.py,sha256=eI3nLzlg1lrKDBu-RscTUEAvsJVRd06TrcdVABNgVu4,10076
22
- machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=W_l-Z_Luq6rADF5pPSKkgzZSL0XtHwu2GIJFJThoiI0,17820
21
+ machineconfig/cluster/sessions_managers/zellij_local.py,sha256=Y2dfDFAlPSIq-LhfXZdilksS2mNnRBqEHuQJxpQdPRI,10078
22
+ machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=4onklHLrUTKtNyLCX9T1lUfVQxC_vLYSq_hQeYT33BY,17820
23
23
  machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=TFx-Xjmoue8KjbzBFtvFSOSx3zgoTdS_N1WWPPdMBm8,8513
24
24
  machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=3eka4YVypqDZa4UKTpHPGdeGYkE--fiJrVtLtQ9nELI,8535
25
25
  machineconfig/cluster/sessions_managers/helpers/enhanced_command_runner.py,sha256=YULt8r3zotkotjdmWRrUq3yGySZW-5e_rQSIZ-IMvjk,5410
26
26
  machineconfig/cluster/sessions_managers/helpers/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
27
27
  machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=Y4RQmhROY6o7JXSJXRrBTkoAuEmu1gvmvN_7JKPw5sc,3178
28
- machineconfig/cluster/sessions_managers/utils/maker.py,sha256=ZcxDalj2IAC_HHtuy104GSp5JaecfdGedHlcuXl939Y,3462
28
+ machineconfig/cluster/sessions_managers/utils/maker.py,sha256=wLzhDWa0JhOWuYoS3mDwgyoSjLac47FtmfJM9OhxrQw,3604
29
29
  machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=OA50j16uUS9ZTjL38TLuR3jufIOln_EszMZpbWyejTo,6972
30
30
  machineconfig/cluster/sessions_managers/wt_utils/manager_persistence.py,sha256=LWgK-886QMERLRJwQ4rH2Nr2RGlyKu6P7JYoBMVWMGc,1604
31
31
  machineconfig/cluster/sessions_managers/wt_utils/monitoring_helpers.py,sha256=e75rdp0G8cDfF9SfkJ7LX3TAJ8R3JWR5v-C_SDkDa14,1627
@@ -50,12 +50,16 @@ machineconfig/cluster/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
50
50
  machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQwzAHH_04stPuV5bY,647
51
51
  machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
52
  machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- machineconfig/jobs/installer/check_installations.py,sha256=hkHmmT7Bx3_QWRn2v8dCKOzAapFzqHRzbe-Q08GLnKE,10743
54
- machineconfig/jobs/installer/installer_data.json,sha256=9qDaFy95XeGJiYTvIbQfKS_cWtiVXIRIeKnl68Xvz4I,124238
55
- machineconfig/jobs/installer/package_groups.py,sha256=j96Ac2aULKCt0mfEmI0LOpPa7aGksfZDfeHG465Q3uk,4982
53
+ machineconfig/jobs/installer/installer_data.json,sha256=ER7jwsurkqnkc9qmel44k-wcO9JiCIzEyvt0tpBjC00,128126
54
+ machineconfig/jobs/installer/package_groups.py,sha256=bcrw6-xJAijbWcGucGljWlyRNYRn_c2g5hoTDIisJaU,4996
55
+ machineconfig/jobs/installer/checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
+ machineconfig/jobs/installer/checks/check_installations.py,sha256=fTUl3Qvlxs7uoYDJxj7mYSOKO4qNblFNoBH7cjKkheI,5482
57
+ machineconfig/jobs/installer/checks/install_utils.py,sha256=aMXpG7XCkoXR0O5JxVPMqFGTx3FBqTfnhGRJwkyPxLI,5248
58
+ machineconfig/jobs/installer/checks/report_utils.py,sha256=Eawrdpj9B4yHNEwUzfIk-1y3HVMTGZOT-MVR8yov0Oc,1173
59
+ machineconfig/jobs/installer/checks/vt_utils.py,sha256=AnLvW6BqdX9-Pzd-P1RwLbiM6leA5VtIh1SMFsyPwxQ,3213
56
60
  machineconfig/jobs/installer/linux_scripts/brave.sh,sha256=_al_D5iZSwtlDRTeqjjK37nEWai8mrHFk-cZeVws9MY,1389
57
61
  machineconfig/jobs/installer/linux_scripts/cloudflare_warp_cli.sh,sha256=dnMHZjyyYARwKFa1XZbIonLntIHTRGROyr2v4Eodd6s,2157
58
- machineconfig/jobs/installer/linux_scripts/docker.sh,sha256=4NYWXCdvh6qlggVVH7FGe6jWkYuWoaJoDwLJvI4oRNQ,4471
62
+ machineconfig/jobs/installer/linux_scripts/docker.sh,sha256=IzC3H1eHm21jqrNzQN1gEIKOfjWn7rZUpjLoKBmNL_0,4133
59
63
  machineconfig/jobs/installer/linux_scripts/docker_start.sh,sha256=8L2fLex6PU8nCpBii7yT8w4CvULZ9_JcDvxdCGJQ6cU,894
60
64
  machineconfig/jobs/installer/linux_scripts/edge.sh,sha256=f1UI2Z2s0ToZ-QGlzkS1ThcRsTz5tMHOjxSFqfHK9SQ,1319
61
65
  machineconfig/jobs/installer/linux_scripts/nerdfont.sh,sha256=ute9wl4BcqHUqavVHWJlnMcmugdb50LbnUVlU0cUVso,1475
@@ -68,25 +72,25 @@ machineconfig/jobs/installer/linux_scripts/wezterm.sh,sha256=hZBS0CopWr-VrGhFSVj
68
72
  machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1,sha256=Y7uof8naGBNv79heNXJ4KyH5sXDjDm0KwCKnshpprR4,6494
69
73
  machineconfig/jobs/installer/python_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
74
  machineconfig/jobs/installer/python_scripts/alacritty.py,sha256=STXertp5pE6VVhcjAfZSKBxAC94S2HAzas646jwd4ow,2754
71
- machineconfig/jobs/installer/python_scripts/boxes.py,sha256=C6R5T1INjBUKwaYPOnpx13N1VrNxHsbJ-j-llujuujY,1991
75
+ machineconfig/jobs/installer/python_scripts/boxes.py,sha256=DtiG-qblJvpMAXWsQNDgt31MJzittaXVloeLd5qp0Hk,1950
72
76
  machineconfig/jobs/installer/python_scripts/brave.py,sha256=bUoIk_8J8PJTxIaKbr-ScQIKrkSPpt-sXz_svvZ_NgQ,2995
73
77
  machineconfig/jobs/installer/python_scripts/bypass_paywall.py,sha256=ZF8yF2srljLChe1tOw_fEsalOkts4RpNwlzX9GtWh2g,1888
74
78
  machineconfig/jobs/installer/python_scripts/cloudflare_warp_cli.py,sha256=tcKmph3J_JQApjIMfGswLiHCbt7uQ6v9S9aixN_rnqg,914
75
- machineconfig/jobs/installer/python_scripts/code.py,sha256=YSmLCh4nxK9CHqeE5mOBAVkNRDRZVT8FAWggraHsiPA,2483
79
+ machineconfig/jobs/installer/python_scripts/code.py,sha256=mSP8XI3iLKs9cPTrDrx1Jl3EFXrCsgVH69mK3Dlg0pk,2599
76
80
  machineconfig/jobs/installer/python_scripts/cursor.py,sha256=3xoFAYFdZqurSHXeEG-vbG0KU1TNQpBMaMgL1eW6X4k,4326
77
81
  machineconfig/jobs/installer/python_scripts/dubdb_adbc.py,sha256=FsE0q9Vx1M2BFtLNiKgnlhzS7PCoo39BSiux-3_DtBM,852
78
82
  machineconfig/jobs/installer/python_scripts/espanso.py,sha256=H1rZb4xnjs72lL0_mB0M4d7NrDyVv1sAG3NOkOrCB64,4137
79
83
  machineconfig/jobs/installer/python_scripts/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
80
84
  machineconfig/jobs/installer/python_scripts/goes.py,sha256=SIRkpzkCeWMof0BnPuoEJy3KHNkVZs8J5DnoZJXb9TY,2130
81
- machineconfig/jobs/installer/python_scripts/hx.py,sha256=nI8g49zsmksx5ZZOcvcaM_gqWesOjobcG8wTzhrIA64,9021
85
+ machineconfig/jobs/installer/python_scripts/hx.py,sha256=xfKB5BarqSj61nRewKjTMnQgZN4ktHX8lz7b8sfroIk,9913
82
86
  machineconfig/jobs/installer/python_scripts/lvim.py,sha256=2-wbh_IClTFcFkSYk9EsRiv88-isSNIVX6dNZ1L5m8Q,2985
83
87
  machineconfig/jobs/installer/python_scripts/nerdfont.py,sha256=8Lz8NE0CYREDVVnSqRnaFsLqGAPUcQ-bt320KdTbrDw,4178
84
- machineconfig/jobs/installer/python_scripts/nerfont_windows_helper.py,sha256=EQrooSjtqw3YvOfD9z8JaVrQShZbzGh3QPLiHPrKSEs,6017
88
+ machineconfig/jobs/installer/python_scripts/nerfont_windows_helper.py,sha256=A8LDhdo8UfW__Lg9uZiqCA2FMI_KW9eVZNqJ8RDgaBI,6159
85
89
  machineconfig/jobs/installer/python_scripts/redis.py,sha256=bReDLsgy37eJyTU4TXE7FQpKFi-_usQC7bwhfXvZuBU,3259
86
- machineconfig/jobs/installer/python_scripts/sysabc.py,sha256=HrqL_fDtqO0J_Oyyr-or3EZ5UqJqa6wOL0pnfZeklKM,6420
90
+ machineconfig/jobs/installer/python_scripts/sysabc.py,sha256=S_CdEQo5fyLnIg7YXx_oeUc3ZmmSP3A9hhCrt9boPp8,6550
87
91
  machineconfig/jobs/installer/python_scripts/wezterm.py,sha256=MXJc0-8ixCm-5dN47R72FGkfzhIJD9-w4EM9bCdCGaM,3027
88
92
  machineconfig/jobs/installer/python_scripts/winget.py,sha256=hxid9fWGLiTsqVqAFxM6jydmDeYdPQjsMh2XEBG-ROY,5631
89
- machineconfig/jobs/installer/python_scripts/yazi.py,sha256=HyFIqQ5i5oeHzruQ3Ymrt6NB670n-2AQGwFiZkLbOjs,4331
93
+ machineconfig/jobs/installer/python_scripts/yazi.py,sha256=XYyx_GYGwciC1jp1rmd8prcfq_RgxFLnBYKVH4yH5VU,4725
90
94
  machineconfig/jobs/scripts/bash_scripts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
91
95
  machineconfig/jobs/scripts/bash_scripts/lid.sh,sha256=nUw870lc5p8GA8KT3JI29ob2wKSVKzCvOHIxEjoSTOA,864
92
96
  machineconfig/jobs/scripts/bash_scripts/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
@@ -97,25 +101,26 @@ machineconfig/jobs/scripts/bash_scripts/share_cloud.sh,sha256=lIZrXiaOT11kzu4NFN
97
101
  machineconfig/jobs/scripts/bash_scripts/share_nfs,sha256=LDQZQ9TV7z2y7RtNHiO4Wb513MztyGjaAV-GzTGwUdc,1374
98
102
  machineconfig/jobs/scripts/bash_scripts/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4IfeeaGy1a2OL3IJlDU,525
99
103
  machineconfig/jobs/scripts/powershell_scripts/Restore-ThunderbirdProfile.ps1,sha256=HYIT48vW_E86QJq7RqfWAV06ZAMqjiZS8EDSET11Y04,3605
104
+ machineconfig/jobs/scripts/powershell_scripts/cmatrix.ps1,sha256=T3K9vcALeY2UiR6hMCaiW_DdIWGAMqdESwvv1kE3kCQ,1781
100
105
  machineconfig/jobs/scripts/powershell_scripts/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
101
106
  machineconfig/jobs/scripts/powershell_scripts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
102
107
  machineconfig/jobs/scripts/powershell_scripts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
103
108
  machineconfig/jobs/scripts/powershell_scripts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
104
- machineconfig/jobs/scripts/powershell_scripts/mount_ssh.ps1,sha256=10lTsDiCY6uGrBiZ1844NTJ_jKtqtezOZTlMBG6A6mU,490
109
+ machineconfig/jobs/scripts/powershell_scripts/mount_ssh.ps1,sha256=TRcrhY9nntOIqKO1lHyFl48I9atra_WHJLGFfEJPDuk,490
105
110
  machineconfig/jobs/scripts/powershell_scripts/obs.ps1,sha256=3SNCjvkaaWMaN6JJAHDMvbvOIHw_zaXF74KalRimnE4,114
106
111
  machineconfig/jobs/scripts/powershell_scripts/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhmNpuM0hgXTQgVJmIRR_7sdcY,182
107
112
  machineconfig/jobs/scripts/powershell_scripts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
108
113
  machineconfig/jobs/scripts/powershell_scripts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
109
114
  machineconfig/jobs/scripts/powershell_scripts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
110
- machineconfig/jobs/scripts_dynamic/a.py,sha256=NRh6nDmfOoc8UcKGk1rHo3R2aD2OKujXAbKcFkALEP8,361
115
+ machineconfig/jobs/scripts_dynamic/a.py,sha256=bJWHVlrgs0khj_w6cxeOyyvhWSnLeWNh0xuIkzq2cI0,16576
111
116
  machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
- machineconfig/profile/backup.toml,sha256=Hb25sIdKVvLqOF62NgiOpGZxd45I6IhsNHu623RtfQQ,766
113
117
  machineconfig/profile/bash_shell_profiles.md,sha256=mio0xkMTwO-F3fikWIfgcdQaPCmQrmkxJMNtZsTe9TI,514
114
118
  machineconfig/profile/create_helper.py,sha256=YmXKtFrSGcvKso9czDu3YPObheqNF-fe3N6t490JzDE,2912
115
- machineconfig/profile/create_links.py,sha256=42U5dEu7fMnGBAqyhQ1VspFaZg3VssMMQSdpGEmpHnE,14199
116
- machineconfig/profile/create_links_export.py,sha256=kLORw7eUiQjoJWDiwzjNiiQPHkGaU8d6XuZj38esI_Y,5249
119
+ machineconfig/profile/create_links.py,sha256=NRo0jRwLgCH1VEPdGB-zeo45oH6yBwoHqSfuc6U2LRY,15831
120
+ machineconfig/profile/create_links_export.py,sha256=_K6SO4n4eJnqp2OFdzgoJPDtz2SiQVpbyHJU5zwWVEo,4183
117
121
  machineconfig/profile/create_shell_profile.py,sha256=KjJwCum9F8_9stgc9_awSzxcX68WY8bhMufiLgTWWFE,7709
118
- machineconfig/profile/mapper.toml,sha256=Qj6POCITKTmyezHfM-SgNGBpzUkLPamdNAm3ovDBQq4,13010
122
+ machineconfig/profile/mapper_data.toml,sha256=Qv18foeM7yN00Lt1mdqH59pGTZGUSFr57kMbZGSB-o8,1577
123
+ machineconfig/profile/mapper_dotfiles.toml,sha256=1mCMw-lH69MsQQZQGl29pBvuXbRvA_Sm4egtdxk3HnA,16291
119
124
  machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
120
125
  machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
121
126
  machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
@@ -125,159 +130,179 @@ machineconfig/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
125
130
  machineconfig/scripts/linux/wrap_mcfg,sha256=JLrUn5pPhPlcnhOIhCENiclKk3oX-qbMuMBzcKC47eY,1461
126
131
  machineconfig/scripts/nu/wrap_mcfg.nu,sha256=9heiUHVkHjI_AMXT5QJJixk7ZK_hJNV_A8l7Gs51u-E,1799
127
132
  machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
- machineconfig/scripts/python/agents.py,sha256=n8Z40QeRFjuYnmF_4ayL3pVOP5vpAYKMG0ZLy0XflhI,12070
129
- machineconfig/scripts/python/cloud.py,sha256=BddtWa8Rg5AF2U22ha4pQ4IvcrKvfeDrmnI3hb0D4Pk,1415
130
- machineconfig/scripts/python/croshell.py,sha256=ToGdGc5766SV9F_FknvqodFY5L9iTAi3GJk9Z9QMmro,8471
131
- machineconfig/scripts/python/devops.py,sha256=vngpKJnRS9Gj3FLeHn4ShTEhZWnUXkiUiTmBdNsK54A,3100
132
- machineconfig/scripts/python/devops_navigator.py,sha256=UeqkY9_c22Ce9b1ksFGq-lNwaGCMMHL1LikPhP-QDt8,154
133
- machineconfig/scripts/python/fire_jobs.py,sha256=CLGoLBLJXOc1EPK_-w0BPYC2WZsvEvR1on__a8ZxkJ0,14215
134
- machineconfig/scripts/python/ftpx.py,sha256=WPRq1HSDcYPCbF9T-pgdepIDj_5Q4fhz4h0Vf_GeXG8,11181
135
- machineconfig/scripts/python/interactive.py,sha256=fmr3gp-KsjUU7Uh0xnKfs0FccGjqEyL_LnznhZvsENg,11814
136
- machineconfig/scripts/python/mcfg_entry.py,sha256=PE23iE4NdSOTjFqHzRA6yu48XeZTZM9vgxhk8BAON-g,2797
137
- machineconfig/scripts/python/msearch.py,sha256=EXM2U5WgngwJhLx0RPKYnoZ7hxeQZ12pcI3lsHUVR9E,3646
138
- machineconfig/scripts/python/sessions.py,sha256=kDopndSXi-wk3nGipNtf9S655FP9JvAEnz8uRk7kuaM,12797
139
- machineconfig/scripts/python/terminal.py,sha256=VaAMrCG3VGWmDVtpQFwelg8KHjJaqDkNU9uDRPbzuak,6436
140
- machineconfig/scripts/python/utils.py,sha256=NVYE0ALCyZWhcWetiXn5Gcix-BlvqLyynlRhHcOeue0,3555
133
+ machineconfig/scripts/python/agents.py,sha256=eYxZsXZC1uiLzNZuRUcTjtcvCEhKAxFWfpglU3_XevQ,8259
134
+ machineconfig/scripts/python/cloud.py,sha256=Wu1BOIQds5Qcyg0Eo2vYatLqVdue8EHJiIlO8Uxaw4k,4700
135
+ machineconfig/scripts/python/croshell.py,sha256=qV3SbzTnc9MICX9kwTDGHWLbTZrWZYGqteAMn1VPUPs,1585
136
+ machineconfig/scripts/python/devops.py,sha256=wxXsIuko0mPg91dYYRwGldRkgd678ti10YHfN5WpKHY,4754
137
+ machineconfig/scripts/python/devops_navigator.py,sha256=9wLL_IHBFhw8C98S0otvqDEbhxA8MV3xUUs5JTfsipY,415
138
+ machineconfig/scripts/python/fire_jobs.py,sha256=UYQuhdVWZL6kVk_5TMZn87t-BwQPP6gwh9qyLDrk_rw,4062
139
+ machineconfig/scripts/python/ftpx.py,sha256=x1GTztr9D1-Go7rZhdGNL_lixx_RJnCJKBKngxT2ki4,1305
140
+ machineconfig/scripts/python/mcfg_entry.py,sha256=KYeN0ogjlb2I45sX-a_bL2JuV-CLwBxpBieuzb_-iFY,9084
141
+ machineconfig/scripts/python/msearch.py,sha256=sWwFmbAuUqNY45BPJ5LVCIuOkGLq-aBOhK3pVIK3pgE,1787
142
+ machineconfig/scripts/python/sessions.py,sha256=B5-if58fkCnognpoSJVu4Ofu9zEOjcPt8XwBSzNQKVQ,5790
143
+ machineconfig/scripts/python/terminal.py,sha256=4AjP8pFHA_F-hfiUlflaj19DMCFq249gK22Kc2DZBZM,3010
144
+ machineconfig/scripts/python/utils.py,sha256=SmqjnWLHKBF0cPUsrQsIpWF07PC4rWQcYNDi9n1RbD0,8836
141
145
  machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
- machineconfig/scripts/python/ai/initai.py,sha256=z98wjXCXvMwpibmNaz7pZhUnpSbjEHkMXKe9Ns50l0s,1579
146
+ machineconfig/scripts/python/ai/initai.py,sha256=s43xJ2GsyniiMfqt-lOdtILSf1KRsiYbqzqzm52e70s,1678
147
+ machineconfig/scripts/python/ai/scripts/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
143
148
  machineconfig/scripts/python/ai/scripts/command_runner.ps1,sha256=LB_4iflhPJ2FXB9RzoltTfnQeYYi2giANW16-dkYQ7U,1599
144
149
  machineconfig/scripts/python/ai/scripts/command_runner.sh,sha256=XWm1mGd_HNVC45StUo9ZgKU8Ez0I_aD0q55rk1hTskw,767
145
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1,sha256=m_z4vzLrvi6bgTZumN8twcbIWb9i8ZHfVJPE8jPdxyc,5074
146
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=niFWWPziF0niNX-nY5JayXJxIzsAPPar-y8mKY0z2Cw,4624
150
+ machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1,sha256=jfJzNcPmce0wRuPppBXpflrHw1otAOHE4GAaV-z90fY,5152
151
+ machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=wOIuPv2e6yNrQkn6rzD0QOi2KL564e_WXxWv7U49O2E,4717
147
152
  machineconfig/scripts/python/ai/solutions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
- machineconfig/scripts/python/ai/solutions/_shared.py,sha256=rBniovmKZuY48T50cCyG_oeFZgSap365EXEadv9UtM4,603
149
- machineconfig/scripts/python/ai/solutions/generic.py,sha256=ck-YXL6Xwu3NNUzJZWz3rY1N2cqEf5bjXqzA0q_N-DQ,2361
150
- machineconfig/scripts/python/ai/solutions/claude/claude.py,sha256=tVMdaOL_9jC1nvfPsJs9WRkPPNa2tQVyq4vxdpOPK6k,343
151
- machineconfig/scripts/python/ai/solutions/cline/cline.py,sha256=3nYdEmdk76sYerEvImEDi3Qi-n94ExFkg20HttI7iCc,446
152
- machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py,sha256=XAMeSKWtJFOSoO5dqyKdq4z8As1W2C20y8ujRRK4WoY,1869
153
+ machineconfig/scripts/python/ai/solutions/claude/claude.py,sha256=a2fatzyS8FgVOA8KrkuIRcKbkfT47q3x1VPVXPVOno0,338
154
+ machineconfig/scripts/python/ai/solutions/cline/cline.py,sha256=H6c4WJ3aiyyhA-z74dRxr-ttAKJtyZ8EBjVtfZzvYkE,441
155
+ machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py,sha256=Vgm8K1vkp3BdNflwdwhrMfDFx33lDOdkfLDR62OLyJQ,1864
153
156
  machineconfig/scripts/python/ai/solutions/copilot/privacy.md,sha256=QeEU3P1tVBeGB9apH2o4jdV-Co85CXmVmHJTMgrIqdY,156
154
157
  machineconfig/scripts/python/ai/solutions/copilot/agents/Thinking-Beast-Mode.agent.md,sha256=pCCwoc7q3xQXYDJItJIPdvBi56WT_o8ekPsIrYwCiHA,17918
155
158
  machineconfig/scripts/python/ai/solutions/copilot/agents/Ultimate-Transparent-Thinking-Beast-Mode.agent.md,sha256=y_NclkcqNaYsH5RWVWIYTCFlr7Kr5-WraDgeGFulDuk,28969
156
159
  machineconfig/scripts/python/ai/solutions/copilot/agents/deepResearch.agent.md,sha256=7P5dn1OkLQaQOtd7AdjFuBW6fDH9tETpAMoAKd3ef9E,5162
157
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=Evz3iDmrJQxl5CBO6CLdmO-Xc6HpzCsVBcZAMI95TnY,4635
160
+ machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=PqhRKiuxos2kbcTVqkCBGPoFh-qDu5H1GQlbE_sgifc,5958
158
161
  machineconfig/scripts/python/ai/solutions/copilot/instructions/python/watch_exec.prompt.md,sha256=xQrx2hrGlNBZk1L4Tm6UqvTquStqMSpX7_rCtlq0yQ4,1209
159
162
  machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md,sha256=a3tMb-t0jmC02OAQZSRBEuiccB-osBvgAIOSBXqC5JQ,544
160
163
  machineconfig/scripts/python/ai/solutions/copilot/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
161
164
  machineconfig/scripts/python/ai/solutions/crush/crush.json,sha256=2hhWLBtAroKO0dboksWIIV6s5XISDgzSMkPg8L9hSK4,5652
162
- machineconfig/scripts/python/ai/solutions/crush/crush.py,sha256=-Oxny7iaAPrR_vjRSzPXf1rPfx5lmKETaLrrqFApoGE,829
165
+ machineconfig/scripts/python/ai/solutions/crush/crush.py,sha256=e0NW67tRIHsmQxHMhMfOemMKoOSb1SA2zsp-HqpxjFY,824
163
166
  machineconfig/scripts/python/ai/solutions/crush/privacy.md,sha256=X0YXyzP5UWete_yAiSIpD7KAyCSTUBDGpNDF-RFH-o8,108
164
- machineconfig/scripts/python/ai/solutions/cursor/cursors.py,sha256=cc9pmB_yEeiyei8p5PvKowyit3dfUy7YhTwaaYkLyQg,468
165
- machineconfig/scripts/python/ai/solutions/gemini/gemini.py,sha256=xqnLBOIB4Nb-3pqDICp83VkWuQfUBFHoDTEEn-3_jHw,712
166
- machineconfig/scripts/python/ai/solutions/gemini/settings.json,sha256=tFdtqZkytiozdWUSJylfJ1YjA-vSfIP31-Fg_VA6i1E,2298
167
+ machineconfig/scripts/python/ai/solutions/cursor/cursors.py,sha256=wtzvvz48v8V-u-fSJ5R_D8PWRUSKZbWqeAUoSUY7p8E,463
168
+ machineconfig/scripts/python/ai/solutions/gemini/gemini.py,sha256=QkgoE4AS7KOOmnQhToyBG-yQ9vIdm2-fYcRhPjBi5K4,707
169
+ machineconfig/scripts/python/ai/solutions/gemini/settings.json,sha256=BMqBOmXeBuIqcakFu4lO6JLknQEpWVXnXjqRDzU5-Us,2346
167
170
  machineconfig/scripts/python/ai/solutions/kilocode/privacy.md,sha256=oKOXnfFOdUuMlKwVf5MqeqCc24hZcjKE_e1MEXpijJI,117
168
171
  machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1dNzkUCS_vCX_fy2TisRtfg8DXH-D4N1iUVU,99
169
172
  machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
170
173
  machineconfig/scripts/python/ai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
171
174
  machineconfig/scripts/python/ai/utils/generate_files.py,sha256=gx39nVkmZZskR4FZRUtgUiHR2Pzej_yfvF_CjCHK1fI,14520
172
- machineconfig/scripts/python/ai/utils/vscode_tasks.py,sha256=OF8q4oKu53lJy8u36h3alHx3XmMhqHaaXZ-T5nr7b18,1481
173
- machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
174
- machineconfig/scripts/python/env_manager/env_manager_tui.py,sha256=eqgRiFMAS8KmpkRudSIP72pRXbi0zPS7XkQvg6aTIXI,7055
175
- machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
176
- machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=pi3eoez_wkeqbmaRQKU4dviZqKs93aDDtTkOwrPeLy0,6932
177
- machineconfig/scripts/python/helpers/ast_search.py,sha256=-BFLZfJpYyj2CjUVrRigWf6xdfdorBfScJ33S2j9O2I,2515
178
- machineconfig/scripts/python/helpers/qr_code.py,sha256=DLZwRI9j8g6qV6XngHEoiStqVYKmXhPjuA_sSTgvf88,5150
179
- machineconfig/scripts/python/helpers/repo_rag.py,sha256=WxSLC99SBpnbUyIQjKiuraGgFk0qGzQ1dC9zSUc88hc,13702
180
- machineconfig/scripts/python/helpers/symantic_search.py,sha256=X5yrk5u59kMlXPEShRyowUo3nUQGyQ39do3D342dzoo,672
181
- machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
- machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=d65fb95jWgn4-b9llfxXKklbjghkodGNjU3Tfhnip3I,7089
183
- machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
184
- machineconfig/scripts/python/helpers_agents/fire_agents_helper_types.py,sha256=PA4EaLHm7lfExML8GA1bwxQDQipCTPLr70pGxMyDLDg,917
185
- machineconfig/scripts/python/helpers_agents/fire_agents_load_balancer.py,sha256=mpqx3uaQdBXYieuvhdK-qsvLepf9oIMo3pwPj9mSEDI,1079
186
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.json,sha256=1e87k_7ytyvOqmE8XPuU3qOHzlqCXzcoTNS3q4OwiKQ,252
188
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.py,sha256=GJ6RmnEahu5iA4GqI4Hy1uK5L61dPV62fX5Zv8RACKU,1844
189
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_cursor_agents.py,sha256=4LD841Qk9PRP6I97oNlV_twixoERg4IVdZjvy49mGVk,529
190
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_gemini.py,sha256=YWpFr5JiKTBLVnWnrgicc8R_dg40nP2GccLJNRYTSFI,2234
191
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py,sha256=ZOicLX5WbIiXLu6rEvGjAwtRgFg5ejZ6QilCdFwBIus,1125
192
- machineconfig/scripts/python/helpers_agents/privacy/privacy.py,sha256=Q82sqb3PWngbT1U74HAXQfmeDlivpElB_REU3dmUdRM,5618
193
- machineconfig/scripts/python/helpers_agents/privacy/configs/aichat/config.yaml,sha256=9DbYNGq6oA8kJuFQXT-Osu04j-xMk6fWBOjpdlr4nvA,104
194
- machineconfig/scripts/python/helpers_agents/privacy/configs/aider/.aider.conf.yml,sha256=hQOeSu1xCejGNUczyWpJQ0HDAjRKs6QjUQARDJvbt14,37
195
- machineconfig/scripts/python/helpers_agents/privacy/configs/copilot/config.yml,sha256=NgAq9QSYMDJtDzCdsm8FK1mfq4Q7RpCFDBZlFe4_Kqc,32
196
- machineconfig/scripts/python/helpers_agents/privacy/configs/crush/crush.json,sha256=S5mnVFLqKxgjzCJGAYQl2grTpL9ilwAxJGN_JDHKV84,182
197
- machineconfig/scripts/python/helpers_agents/privacy/configs/gemini/settings.json,sha256=WSWzXLLNL1FIck0boRpQY-LJN9e-gRrIs6dlMsLNqvE,186
198
- machineconfig/scripts/python/helpers_agents/templates/prompt.txt,sha256=4n7GShpw5Y5rnc9JEyBPuB8TBb2f2OhhxPnNpvk-RlI,313
199
- machineconfig/scripts/python/helpers_agents/templates/template.ps1,sha256=9F7h9NMIJisunMIii2wETpgonQmiGLHLHfWg9k_QWKo,859
200
- machineconfig/scripts/python/helpers_agents/templates/template.sh,sha256=pSr1sdz6cizyXS3lFy5iRJQtmbFL2S2yA2lZ87qGOmQ,917
201
- machineconfig/scripts/python/helpers_cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
- machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=rBP1Eoh-ohhlNSv1PSytjbyeYHg-_8c0bglnzYtaPEk,8748
203
- machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=Hs79GTnTokI92dprztSyGF_KQL9ju-XST6haR1W91eA,4914
204
- machineconfig/scripts/python/helpers_cloud/cloud_mount.py,sha256=0CF6VN26a0j7E7PcIGEX_vFBKPXOx7U7sRDkfrE_A1I,6618
205
- machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=tCZpQaIh7IDJXSDAZ8sSNz14bcoTUZwzGBUUubHey1w,3506
206
- machineconfig/scripts/python/helpers_cloud/helpers2.py,sha256=3fXDiDlz5EDk_04YtPd-bjZcjUjmGTpgiQ1YMaGbD8g,7310
207
- machineconfig/scripts/python/helpers_cloud/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
208
- machineconfig/scripts/python/helpers_croshell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
209
- machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=J0Wle1nyxcaOV2TArsHx8DUkVbKH1fartTXr_Nztcys,1601
210
- machineconfig/scripts/python/helpers_croshell/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
211
- machineconfig/scripts/python/helpers_croshell/scheduler.py,sha256=rKhssuxkD697EY6qaV6CSdNhxpAQLDWO4fE8GMCQ9FA,3061
212
- machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=PUDG2MAuQXXF5s0tikJlZBccboA9IGk3mHABMnpdUss,4887
213
- machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
214
- machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
215
- machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
- machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=zli4KuUqFFkVjEXV9U8eXyaiXgILSJ3m6jXzwDP-6W8,5504
217
- machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=KFIBpAaBtRn-nP1ILXZmyGlgCi4olKRohoF-HdHORaQ,4034
218
- machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
219
- machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=1R7xxP4wO7wZUvIzjrbzwx4Fe8_UsVCY68xAxnXaYbI,11510
220
- machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=5Sy-lc8gzdik1rgM2RQpeMRKTu46DfoCaE1RrlM-Htg,13925
221
- machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=gznbz6DPDMUQQWh2E4NERav5NVqVtc3p185RlbpOFBU,9431
222
- machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=dYZPSI39iDUH69dRYszLIun7Wfn5lCG7stc70YX5Ni8,6417
223
- machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=FzMEUvZXGLMkndcvox_RiVkUKAPj9ElHKORa8iJcNCE,6506
224
- machineconfig/scripts/python/helpers_devops/cli_share_terminal.py,sha256=5G0-qtqcnbVEpKPvHl1mzp-3uEx9fww3CRrpGv1T-f8,6169
225
- machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Tyfz5S1QfY_nOhg-ROTp9eILNqYx_i1ootth34frbv0,5540
226
- machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=4CXWhuD0h_0VGQLKCNUxVl7pZBboq9jrgZazit1LbWs,20314
227
- machineconfig/scripts/python/helpers_devops/devops_update_repos.py,sha256=kSln8_-Wn7Qu0NaKdt-QTN_bBVyTIAWHH8xVYKK-vCM,10133
228
- machineconfig/scripts/python/helpers_devops/run_script.py,sha256=6PJSMdUFm1p7egPD2I3A9nVrjkgqk3tgBg5EMSLaeSM,8590
229
- machineconfig/scripts/python/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
230
- machineconfig/scripts/python/helpers_devops/themes/choose_pwsh_theme.ps1,sha256=58gFOeynADHLTdk8zqEnndBtyNGrln0jvpo76O0UWTw,3136
231
- machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.bash,sha256=ajz1GSNU9xYVrFEDSz6Xwg7amWQ_yvW75tQa1ZvRIWc,3
232
- machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
- machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py,sha256=JcfrFhWExnWsE8ekNHPMvWWZDR_l1c48ya8lWCjtKzs,3424
234
- machineconfig/scripts/python/helpers_fire_command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
- machineconfig/scripts/python/helpers_fire_command/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
236
- machineconfig/scripts/python/helpers_fire_command/f.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
- machineconfig/scripts/python/helpers_fire_command/file_wrangler.py,sha256=eSo8XQsYTplsiySKXPmF34UcTX54d0DfCDiQ6bQXkms,6263
238
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py,sha256=E5mdydDsyIVWdVdELvVq33ys9-jMOF3dUe5mrDFkNjY,4384
239
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=JF6n7MAqemyueeda5DibpNPTxQgxqudyjS-7bTRU0cQ,5937
240
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
- machineconfig/scripts/python/helpers_msearch/__init__.py,sha256=eZSLmDDBtML_JRn1BjU8IyzXEqjZ9-u3TYY6_hYsEKA,183
242
- machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfg,sha256=1WPQn8nudfOLdpyya4THQgAzTH7LOSnk-YH0e9e8KRE,1201
243
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1,sha256=CJbrvZVAAUxDxMFhgPKjq07mtn6V29tBrpodCvCDGT4,1918
244
- machineconfig/scripts/python/helpers_navigator/__init__.py,sha256=5qPsu5ztoj0gkrioY0Yg0GTZ9JAn6SG2gAk-6DpuQ00,764
245
- machineconfig/scripts/python/helpers_navigator/command_builder.py,sha256=59ipLYdkWvj_l1xqrC6rz2E2GNCP91BVBsX8vqTRnjQ,4618
246
- machineconfig/scripts/python/helpers_navigator/command_detail.py,sha256=9cL2wVqa_vzgsSIYg-eVjeuac9f3aQJvrTl0T-SRAOU,1693
247
- machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=yPt47Bk7w2fQPit8nyAm1Rt8VYUe7-n5CsYETRQfAzo,25672
248
- machineconfig/scripts/python/helpers_navigator/data_models.py,sha256=62CIZ01rfCD2mKX_ihEVuhNzZ8FDnRSEIIQuyKOtmOg,533
249
- machineconfig/scripts/python/helpers_navigator/main_app.py,sha256=R1vOBMUKaiFHOg0D4SzTcu48Wsc8lO0LKAzrZxCsCtg,8849
250
- machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wdm7YpDBtfhwcPnSqDPFrV2LqbcSBWMT4,414
251
- machineconfig/scripts/python/helpers_network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
- machineconfig/scripts/python/helpers_network/address.py,sha256=2VKQ9smY429t86qQN7x7DLGO_ri5cQzUKphqViXLJjo,5634
253
- machineconfig/scripts/python/helpers_network/address_switch.py,sha256=l7D317DMEyY4q9n_yfknx-TfRbo0l2pIw1LbWCPM65c,2735
254
- machineconfig/scripts/python/helpers_network/mount_nfs.py,sha256=00YsimP7MWdRqpzr-bxnE828MsWjBYvb56VqLvtu_y0,3601
255
- machineconfig/scripts/python/helpers_network/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
256
- machineconfig/scripts/python/helpers_network/mount_ssh.py,sha256=71BSfsOpNwBcvvEs79pmaE3kPOWnLJRa0w2qomQw1Nk,2601
257
- machineconfig/scripts/python/helpers_network/onetimeshare.py,sha256=xRd8by6qUm-od2Umty2MYsXyJwzXw-CBTd7VellNaKY,2498
258
- machineconfig/scripts/python/helpers_network/ssh_add_identity.py,sha256=Eyh2i3Ug3ZqQrdbriUOkWisUQS3tf6uS9_vuouAs78Q,5331
259
- machineconfig/scripts/python/helpers_network/ssh_add_ssh_key.py,sha256=r_UnTP5ntCJZ7gi2gRwDzqbbE3FnaFwZMuCBl4HonyU,9755
260
- machineconfig/scripts/python/helpers_network/ssh_debug_linux.py,sha256=0tjKgf5bElHqSgwUEFVY7iKOxax93Lxy-nJ8krqjUZ0,30868
261
- machineconfig/scripts/python/helpers_network/ssh_debug_windows.py,sha256=0IjOHX7OUs1512teldJhSzsDIvYoyqQMVzzSNgXz11A,29920
262
- machineconfig/scripts/python/helpers_network/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
263
- machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
264
- machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
265
- machineconfig/scripts/python/helpers_repos/clone.py,sha256=9RZgs2OD2RUH6UiZKCuUvRyweDBomAm2lDG2qJmhry0,5436
266
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=gI5WlSdNbl6yhfBVhUNA9j66JK8E-S5m23-bPtcTc7A,11689
267
- machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=eAM-7trZCPTeep0iTU3_HNqCkF0pYKqMMXNq3vLBsP8,2898
268
- machineconfig/scripts/python/helpers_repos/grource.py,sha256=lHxyfsIQr4pbu71Ekqu-9nohR7LXbN2wufw7LPTyOgM,14639
269
- machineconfig/scripts/python/helpers_repos/record.py,sha256=1PycYcW7VA-9n9iv1TJXub7qNIQ6I6Z9dEnvbdDm4TU,11099
270
- machineconfig/scripts/python/helpers_repos/repo_analyzer_1.py,sha256=72ahcOdEbcJamrjFSKVWn5ATbxUyL7uNA8XU8O63_wA,6269
271
- machineconfig/scripts/python/helpers_repos/repo_analyzer_2.py,sha256=-pDJvHYIVZ1ed7UhmOVoTPjevXM0Tm4BWmZX8eu0ePM,13190
272
- machineconfig/scripts/python/helpers_repos/sync.py,sha256=P0P7Dog2uFDvwxcLP3YHPwm6AtvCm6QOz1BLqw53xOo,3259
273
- machineconfig/scripts/python/helpers_repos/update.py,sha256=cUIMUMm-50HrY6fzxSMZnFplhToVjVPZMm1j_otTha4,11060
274
- machineconfig/scripts/python/helpers_sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
275
- machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=umimrBrLjGimfZzRlvxHgKdld5S-bRrFZTAk6OOZqq0,3221
276
- machineconfig/scripts/python/helpers_utils/download.py,sha256=Yjooy8vwDJpqXAb-J47C8rPSazIEGUPVRR089TrW7iA,6730
277
- machineconfig/scripts/python/helpers_utils/pdf.py,sha256=RHYuEJn_xUMj8jMDx0Gi0Xr1yjA_7BLnStGU4N1qV7M,5003
278
- machineconfig/scripts/python/helpers_utils/python.py,sha256=1VH6pLEaaOhVbMgfTf2gu8LfbifPq6VCCrFmV0q_kDQ,7141
175
+ machineconfig/scripts/python/ai/utils/generic.py,sha256=nphGgmCCOoJYj_0FB55poFPLDVIZHCYSCQw_n7gIZe8,2136
176
+ machineconfig/scripts/python/ai/utils/shared.py,sha256=rBniovmKZuY48T50cCyG_oeFZgSap365EXEadv9UtM4,603
177
+ machineconfig/scripts/python/ai/utils/vscode_tasks.py,sha256=-TH1pRgjDWCJAtr1zp7a0tD2Ge1CS0SOcpcr27qaZjc,1555
178
+ machineconfig/scripts/python/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
+ machineconfig/scripts/python/graph/cli_graph.json,sha256=vwgjSe9Gn8LmT-_Cz5u16H4QTbKAWRcaVGhM6P0jVfY,371914
180
+ machineconfig/scripts/python/helper_env/path_manager_tui.py,sha256=KrK3zoeGZZ9DjCh-kFrip3b2SN6KBg9ELUzecVN788c,6939
181
+ machineconfig/scripts/python/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
+ machineconfig/scripts/python/helpers/helper_env/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
183
+ machineconfig/scripts/python/helpers/helper_env/env_manager_tui.py,sha256=lSoqkG3fJNPGLj2V1cpOsbzkKBiQzdYC2wvDGDUWYWg,7055
184
+ machineconfig/scripts/python/helpers/helper_env/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
185
+ machineconfig/scripts/python/helpers/helper_env/path_manager_tui.py,sha256=KrK3zoeGZZ9DjCh-kFrip3b2SN6KBg9ELUzecVN788c,6939
186
+ machineconfig/scripts/python/helpers/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
+ machineconfig/scripts/python/helpers/helpers_agents/agents_impl.py,sha256=feo74reaBZ7-Zt-rpfWRrfC_i4rr2oft6M0VvzWeovQ,6961
188
+ machineconfig/scripts/python/helpers/helpers_agents/fire_agents_help_launch.py,sha256=NbpYT8h3dhY1LFVjVQ4EmzMZkGc6l1KIveu3k4U3QqE,7129
189
+ machineconfig/scripts/python/helpers/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
190
+ machineconfig/scripts/python/helpers/helpers_agents/fire_agents_helper_types.py,sha256=PA4EaLHm7lfExML8GA1bwxQDQipCTPLr70pGxMyDLDg,917
191
+ machineconfig/scripts/python/helpers/helpers_agents/fire_agents_load_balancer.py,sha256=mpqx3uaQdBXYieuvhdK-qsvLepf9oIMo3pwPj9mSEDI,1079
192
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
193
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_crush.json,sha256=1e87k_7ytyvOqmE8XPuU3qOHzlqCXzcoTNS3q4OwiKQ,252
194
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_crush.py,sha256=Y6CzLVEBs2YVnYbC5fJe8Csqc5TQMMyhwecr2_mWcGg,1852
195
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_cursor_agents.py,sha256=3sv2jzWZdkBzScm3jQBmaDeiDhz67qxcgZX_JrCIRhM,537
196
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_gemini.py,sha256=36GQN3yjx_mttz7UCA6Vz1ykZxMMjBU8gnjjaN5aJPc,2242
197
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_qwen.py,sha256=S757e0udxfEX9IRQrqm04B6iovkovAb9P7YGsdGFN94,1133
198
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/privacy.py,sha256=Q82sqb3PWngbT1U74HAXQfmeDlivpElB_REU3dmUdRM,5618
199
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/aichat/config.yaml,sha256=9DbYNGq6oA8kJuFQXT-Osu04j-xMk6fWBOjpdlr4nvA,104
200
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/aider/.aider.conf.yml,sha256=hQOeSu1xCejGNUczyWpJQ0HDAjRKs6QjUQARDJvbt14,37
201
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/copilot/config.yml,sha256=NgAq9QSYMDJtDzCdsm8FK1mfq4Q7RpCFDBZlFe4_Kqc,32
202
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/crush/crush.json,sha256=S5mnVFLqKxgjzCJGAYQl2grTpL9ilwAxJGN_JDHKV84,182
203
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/gemini/settings.json,sha256=WSWzXLLNL1FIck0boRpQY-LJN9e-gRrIs6dlMsLNqvE,186
204
+ machineconfig/scripts/python/helpers/helpers_agents/templates/prompt.txt,sha256=4n7GShpw5Y5rnc9JEyBPuB8TBb2f2OhhxPnNpvk-RlI,313
205
+ machineconfig/scripts/python/helpers/helpers_agents/templates/template.ps1,sha256=9F7h9NMIJisunMIii2wETpgonQmiGLHLHfWg9k_QWKo,859
206
+ machineconfig/scripts/python/helpers/helpers_agents/templates/template.sh,sha256=pSr1sdz6cizyXS3lFy5iRJQtmbFL2S2yA2lZ87qGOmQ,917
207
+ machineconfig/scripts/python/helpers/helpers_cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
208
+ machineconfig/scripts/python/helpers/helpers_cloud/cloud_copy.py,sha256=RXyfA7oLq2-Op6XKG93jGXABzA3werPv5qzk-9omb3c,8653
209
+ machineconfig/scripts/python/helpers/helpers_cloud/cloud_helpers.py,sha256=Hs79GTnTokI92dprztSyGF_KQL9ju-XST6haR1W91eA,4914
210
+ machineconfig/scripts/python/helpers/helpers_cloud/cloud_mount.py,sha256=rHNQpXay0ARG_FFhdytidi-72nQY4rEYJ_vrnCOjGs4,6860
211
+ machineconfig/scripts/python/helpers/helpers_cloud/cloud_sync.py,sha256=6c1tWt2SmbmLTwjz-1-a1Rb-lDERKONIkL8fEjONuIU,3530
212
+ machineconfig/scripts/python/helpers/helpers_cloud/helpers2.py,sha256=vRUAuDvtNUG1rZ4Ovq3e7A3tylT1jqttsBLLCW9TjTs,7318
213
+ machineconfig/scripts/python/helpers/helpers_cloud/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
214
+ machineconfig/scripts/python/helpers/helpers_croshell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
+ machineconfig/scripts/python/helpers/helpers_croshell/crosh.py,sha256=J0Wle1nyxcaOV2TArsHx8DUkVbKH1fartTXr_Nztcys,1601
216
+ machineconfig/scripts/python/helpers/helpers_croshell/croshell_impl.py,sha256=KTheciploRiTM93ehCvNLpFGlPTGIBMBwZfHmO3Koks,8157
217
+ machineconfig/scripts/python/helpers/helpers_croshell/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
218
+ machineconfig/scripts/python/helpers/helpers_croshell/scheduler.py,sha256=Pmmn2lk8rmFTk3JcWxW88tLFPkICjkSbVtiTNHhASnA,3002
219
+ machineconfig/scripts/python/helpers/helpers_croshell/start_slidev.py,sha256=2AJ7m0180YxWFu3l9MJkvqGzZqtSIA5FprgzLqHFcZc,4940
220
+ machineconfig/scripts/python/helpers/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
221
+ machineconfig/scripts/python/helpers/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
222
+ machineconfig/scripts/python/helpers/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
+ machineconfig/scripts/python/helpers/helpers_devops/backup_config.py,sha256=Re2eMH2i4tyksBlri0zpwHRyufOiq7EAqQGMMw-cgrk,6200
224
+ machineconfig/scripts/python/helpers/helpers_devops/cli_backup_retrieve.py,sha256=NHWwfuYlDGF78_stnKepE1tkGsF1O878Lbh2wrwWmew,12341
225
+ machineconfig/scripts/python/helpers/helpers_devops/cli_config.py,sha256=9h1-LhTC1XxdjFsl6gw8WkC3GJeLwZjz1vZ5hmGyPPA,5074
226
+ machineconfig/scripts/python/helpers/helpers_devops/cli_config_dotfile.py,sha256=LCFR3BdLpbAPLAa2NogAtuWglBZwSL50BjYZp4WhWJo,14491
227
+ machineconfig/scripts/python/helpers/helpers_devops/cli_data.py,sha256=MtfEtKmRilLIi49GZwgg4JtqFNScmKG9GACwqc9BoPg,3697
228
+ machineconfig/scripts/python/helpers/helpers_devops/cli_nw.py,sha256=V3ZhxebibVsN6IqRSO40raWRgxIZy2-sOOPMloWfdfc,10629
229
+ machineconfig/scripts/python/helpers/helpers_devops/cli_repos.py,sha256=OVeIIHshza6-sgdKPaGTUAUu8S64_HSs1RtvLeV455c,19480
230
+ machineconfig/scripts/python/helpers/helpers_devops/cli_self.py,sha256=OLBuNqh_Ntq4qtAy9Agh05Ds3erNz9e6WMMmuLwJ3wc,9878
231
+ machineconfig/scripts/python/helpers/helpers_devops/cli_share_file.py,sha256=-yV1kQkvCnUMkJ1cNgPLhCFJ9ql0xjevMOvjC95PvJw,7231
232
+ machineconfig/scripts/python/helpers/helpers_devops/cli_share_server.py,sha256=9uNNZrXeR_SncrqF5Dmr0PJkL4H5y6EZDfKiIG6YId0,6106
233
+ machineconfig/scripts/python/helpers/helpers_devops/cli_share_terminal.py,sha256=LlGxYa-ZYnp9fa0VHYEYShRg6gbEeHUQm5ME-J0wC8I,6538
234
+ machineconfig/scripts/python/helpers/helpers_devops/cli_ssh.py,sha256=sG048fdfH3soXgplxSWgxgnHJU-ESRE-XTdAXxCf9HM,8753
235
+ machineconfig/scripts/python/helpers/helpers_devops/devops_status.py,sha256=ePrIk6F9CqSRujiTZG9j-3V9KC93x2qBwJrAS2TI-Gs,20690
236
+ machineconfig/scripts/python/helpers/helpers_devops/devops_update_repos.py,sha256=h_V0sllK9a5vflvB32R44yTlK4rFmDuZacr6LhLhPlw,10141
237
+ machineconfig/scripts/python/helpers/helpers_devops/interactive.py,sha256=9YpQ-cld7mTz-Rf89_hGu8z7fxWm8cvIEObHa-JU3ec,13367
238
+ machineconfig/scripts/python/helpers/helpers_devops/run_script.py,sha256=XojRnLi2aig84lPb4ATE6GTybok_TwHo7xZAdW_i6XE,9474
239
+ machineconfig/scripts/python/helpers/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
240
+ machineconfig/scripts/python/helpers/helpers_devops/themes/choose_pwsh_theme.ps1,sha256=58gFOeynADHLTdk8zqEnndBtyNGrln0jvpo76O0UWTw,3136
241
+ machineconfig/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.ps1,sha256=TdcjLlE6pJUFQydmkLyHXC4k-YCeKWwTYCdtW9qIxYE,2137
242
+ machineconfig/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.sh,sha256=vK5VbZD2zA-6qfdmNGyFs7HU5uIC-zN1ZiOcaYjY1x0,2344
243
+ machineconfig/scripts/python/helpers/helpers_devops/themes/choose_wezterm_theme.py,sha256=TtOIaq8YrVoPg128sWnOYiZdlT5Xjh8ANOguNJg4C64,3374
244
+ machineconfig/scripts/python/helpers/helpers_fire_command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
+ machineconfig/scripts/python/helpers/helpers_fire_command/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
246
+ machineconfig/scripts/python/helpers/helpers_fire_command/f.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
247
+ machineconfig/scripts/python/helpers/helpers_fire_command/file_wrangler.py,sha256=eSo8XQsYTplsiySKXPmF34UcTX54d0DfCDiQ6bQXkms,6263
248
+ machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_args_helper.py,sha256=E5mdydDsyIVWdVdELvVq33ys9-jMOF3dUe5mrDFkNjY,4384
249
+ machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_impl.py,sha256=22vOZUt84TdUwzmjm-DZiVliwPG4Z6z8i7j_SevNvoQ,11766
250
+ machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_route_helper.py,sha256=YH3vMQQe_S74cNadRUVn_4cSvKKTF116XXSr4nmvC8M,5961
251
+ machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
+ machineconfig/scripts/python/helpers/helpers_msearch/__init__.py,sha256=eZSLmDDBtML_JRn1BjU8IyzXEqjZ9-u3TYY6_hYsEKA,183
253
+ machineconfig/scripts/python/helpers/helpers_msearch/msearch_impl.py,sha256=ABehq-DvDHYfVxAyJqbHx19NSclcWMV_zo3rnJ87pDI,9173
254
+ machineconfig/scripts/python/helpers/helpers_msearch/scripts_linux/fzfg,sha256=5-YffQSd5-NLyXjPSw8QXiPD1aax1lQgUBRofEU4Hck,1195
255
+ machineconfig/scripts/python/helpers/helpers_msearch/scripts_linux/search_with_context.sh,sha256=mOxFyFZn9jz9FZiG7RR3aCn9B9DmPawBs0OdgeiGPeQ,1827
256
+ machineconfig/scripts/python/helpers/helpers_msearch/scripts_windows/fzfg.ps1,sha256=GDRzAFjaQvxgDm8GZt4TZFF4fMEewKh94akH4PX7vPs,1841
257
+ machineconfig/scripts/python/helpers/helpers_navigator/__init__.py,sha256=o1wyu76ed8_iZqydmeUNBv4JLvcVx9GNuzz0qXDJ69w,812
258
+ machineconfig/scripts/python/helpers/helpers_navigator/cli_graph_loader.py,sha256=v_C3hZU4BTGWZFh-0VhNWVcH6lsFDiFFRmbpPp8g5ZQ,7099
259
+ machineconfig/scripts/python/helpers/helpers_navigator/command_builder.py,sha256=WTum9dOv73IeRkryFA6UDESg7t7GsSHNlKyb5_M8SvU,6527
260
+ machineconfig/scripts/python/helpers/helpers_navigator/command_detail.py,sha256=GRztKru3k8GJo2R1MH-WotbBkJHCx7YrNt6-8447VVQ,5978
261
+ machineconfig/scripts/python/helpers/helpers_navigator/command_tree.py,sha256=1KCBxW1Ng2bE7xhS63X2tNOBRjJvgHaa98I-L0RaRLs,1506
262
+ machineconfig/scripts/python/helpers/helpers_navigator/data_models.py,sha256=LIHzwpN_so_kOzBhyDRNgzATX9yJEYV73SibFfpqVPc,814
263
+ machineconfig/scripts/python/helpers/helpers_navigator/main_app.py,sha256=iom-xweZAlSjFWLBp3Dg7A8pThRm5qsMimnVqbOmPFU,8889
264
+ machineconfig/scripts/python/helpers/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wdm7YpDBtfhwcPnSqDPFrV2LqbcSBWMT4,414
265
+ machineconfig/scripts/python/helpers/helpers_network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
266
+ machineconfig/scripts/python/helpers/helpers_network/address.py,sha256=0VXkrR0L1dwIldb98-C2d2KJHIrA3Nfs8w08j3eQ4JA,5569
267
+ machineconfig/scripts/python/helpers/helpers_network/address_switch.py,sha256=nAkBHZX228G4vhxJjeTtNnQmSk40QwINPiYTrvomfq4,2743
268
+ machineconfig/scripts/python/helpers/helpers_network/ftpx_impl.py,sha256=ObLz6ltByQMQjFQs_TgzZaKxWF9W_V5ncuDILFMBtlQ,11895
269
+ machineconfig/scripts/python/helpers/helpers_network/mount_nfs.py,sha256=00YsimP7MWdRqpzr-bxnE828MsWjBYvb56VqLvtu_y0,3601
270
+ machineconfig/scripts/python/helpers/helpers_network/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
271
+ machineconfig/scripts/python/helpers/helpers_network/mount_ssh.py,sha256=wKzJpOk6pC5X2qsmcrNzx7BsBYcC7itpTJqYyUG0LyU,2559
272
+ machineconfig/scripts/python/helpers/helpers_network/onetimeshare.py,sha256=xRd8by6qUm-od2Umty2MYsXyJwzXw-CBTd7VellNaKY,2498
273
+ machineconfig/scripts/python/helpers/helpers_network/ssh_add_identity.py,sha256=AAlRlNCX3Rj88KnzMgdTxSkVD1JKYOrG3q1wV61cHEg,2937
274
+ machineconfig/scripts/python/helpers/helpers_network/ssh_add_ssh_key.py,sha256=V08tGMt0nNM6FAIUEqfXkRCi6bNpjzKFev50LR9iOHo,8193
275
+ machineconfig/scripts/python/helpers/helpers_network/ssh_debug_linux.py,sha256=18BatGwxb5SzHpbH2nvhP1SNX5FVdisry4MLcXfzZSI,16672
276
+ machineconfig/scripts/python/helpers/helpers_network/ssh_debug_windows.py,sha256=6oSJ1V_57LDdC6MUBqXmONFePUtzZ2Zuld1VO4lAlMc,16402
277
+ machineconfig/scripts/python/helpers/helpers_network/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
278
+ machineconfig/scripts/python/helpers/helpers_repos/action.py,sha256=kFR8rznnAIvmmuY7N-rgDg1z5jDBwqlHrnAPZtE2548,9769
279
+ machineconfig/scripts/python/helpers/helpers_repos/action_helper.py,sha256=h5upRh0nMne1FLaQsZzdTl50Ed-yfT_d4OP971VokDM,6126
280
+ machineconfig/scripts/python/helpers/helpers_repos/clone.py,sha256=9RZgs2OD2RUH6UiZKCuUvRyweDBomAm2lDG2qJmhry0,5436
281
+ machineconfig/scripts/python/helpers/helpers_repos/cloud_repo_sync.py,sha256=hz_8eL6KvoS_S1WddHU5WOWTfvrDkIIg0R61v_H5jPA,14591
282
+ machineconfig/scripts/python/helpers/helpers_repos/grource.py,sha256=fEofCvK_Ds8Lmw5LhVBsnJz-UVmA49MAuBW8ZBNCRg4,14704
283
+ machineconfig/scripts/python/helpers/helpers_repos/record.py,sha256=Q4hNVX_uO7dimcFgGElH2P-J1yJGZu7tjP81BFg5jos,11626
284
+ machineconfig/scripts/python/helpers/helpers_repos/repo_analyzer_1.py,sha256=72ahcOdEbcJamrjFSKVWn5ATbxUyL7uNA8XU8O63_wA,6269
285
+ machineconfig/scripts/python/helpers/helpers_repos/repo_analyzer_2.py,sha256=WGRCZIGQzZGPVdUewEwzxLxSn7neTFK4jhkSgig7-Zk,14251
286
+ machineconfig/scripts/python/helpers/helpers_repos/sync.py,sha256=P0P7Dog2uFDvwxcLP3YHPwm6AtvCm6QOz1BLqw53xOo,3259
287
+ machineconfig/scripts/python/helpers/helpers_repos/update.py,sha256=WrLK70EXVGxX0v49ZK3kGr2PumCmg4bnZp2hHYcTV0Y,10750
288
+ machineconfig/scripts/python/helpers/helpers_search/ast_search.py,sha256=-BFLZfJpYyj2CjUVrRigWf6xdfdorBfScJ33S2j9O2I,2515
289
+ machineconfig/scripts/python/helpers/helpers_search/qr_code.py,sha256=DLZwRI9j8g6qV6XngHEoiStqVYKmXhPjuA_sSTgvf88,5150
290
+ machineconfig/scripts/python/helpers/helpers_search/repo_rag.py,sha256=WxSLC99SBpnbUyIQjKiuraGgFk0qGzQ1dC9zSUc88hc,13702
291
+ machineconfig/scripts/python/helpers/helpers_search/script_help.py,sha256=9rqKA8W8ptI2p521L8bWBgwnM5RT39bZSlu5UTAea2k,4041
292
+ machineconfig/scripts/python/helpers/helpers_search/symantic_search.py,sha256=X5yrk5u59kMlXPEShRyowUo3nUQGyQ39do3D342dzoo,672
293
+ machineconfig/scripts/python/helpers/helpers_sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
294
+ machineconfig/scripts/python/helpers/helpers_sessions/sessions_impl.py,sha256=TZSCZ-mmN93xUZ2SqvArMCtUAWKc5VfmKu3c4Oh5tHY,8815
295
+ machineconfig/scripts/python/helpers/helpers_sessions/sessions_multiprocess.py,sha256=Qz4TaxDN832TXgznmY_7hLlDFmUp5vp5t7IBCT1IEns,3229
296
+ machineconfig/scripts/python/helpers/helpers_terminal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
+ machineconfig/scripts/python/helpers/helpers_terminal/terminal_impl.py,sha256=nmDHqJnAt6BaYmhiMoV9SF6nkUflnrNu-qo7k-P4Ayw,4435
298
+ machineconfig/scripts/python/helpers/helpers_utils/download.py,sha256=6N5N-jloQhW-a5dvBBNVyQDY__iXpJfe4OtbKXUC934,6711
299
+ machineconfig/scripts/python/helpers/helpers_utils/pdf.py,sha256=RHYuEJn_xUMj8jMDx0Gi0Xr1yjA_7BLnStGU4N1qV7M,5003
300
+ machineconfig/scripts/python/helpers/helpers_utils/python.py,sha256=eIhQvqkoUIMRv27Hk3tRqg4WkMWn4ct2LSqZqt9JMbo,7977
301
+ machineconfig/scripts/python/helpers/helpers_utils/specs.py,sha256=zKrQdpjeoEYPd40gEmUi_lLj-Tus3I2wHrqE_ZKQKYs,9207
279
302
  machineconfig/scripts/windows/wrap_mcfg.ps1,sha256=S6WuBYXdm4roQc1YPjSgWBmDFOgWD9hrRw6HHbHfpbE,2174
280
303
  machineconfig/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
304
+ machineconfig/settings/atuin/config.toml,sha256=lqICFNRcMewNHTxnWHb6JjQPtDfLD10kYfpVfdVfyc4,11388
305
+ machineconfig/settings/atuin/themes/catppuccin-mocha-mauve.toml,sha256=X66L7YmWQ4ClPeQoFhXkkWXPrmpLwWfHcDNbvnc-K3g,218
281
306
  machineconfig/settings/broot/br.sh,sha256=7CCJflIAirkiuo1suDCT8BzhVzDdJWEfbAxNDG4VPSI,1455
282
307
  machineconfig/settings/broot/brootcd.ps1,sha256=BB8uGnoVywxFWSgwsHxlbS8V4W_Qom3L1SedekGpgWA,877
283
308
  machineconfig/settings/broot/conf.toml,sha256=-skF2U0iojMZ2OD-3HViWAkyNKonfcvdZKF6LZKck34,56
@@ -326,14 +351,14 @@ machineconfig/settings/lf/windows/autocall/rename.ps1,sha256=47DEQpj8HBSa-_TImW-
326
351
  machineconfig/settings/linters/.flake8,sha256=1By04Qwy5saCudYKOw2bKHSNQg4N128SJudwD3SVGhQ,1958
327
352
  machineconfig/settings/linters/.mypy.ini,sha256=BNxVtNuliJZVeFpCRRIQpSWFDQYuKqKtcVKYcZ-sApc,811
328
353
  machineconfig/settings/linters/.pylintrc,sha256=_hYrPgtMvQc877u5NTU_HlkJMZwuDrmB6Yt3u5zg3-c,3593
329
- machineconfig/settings/linters/.ruff.toml,sha256=JD5bIwK0CIb5fQRx8vPGqcOCra1APQevKxTY1E2527c,1655
354
+ machineconfig/settings/linters/.ruff.toml,sha256=lbB4ctZz5Y91Ft8LONqbiyF5vtxXj2IeC3TJKD-4Sus,1708
330
355
  machineconfig/settings/lvim/linux/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
356
  machineconfig/settings/lvim/windows/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
357
  machineconfig/settings/lvim/windows/archive/config_additional.lua,sha256=EM__UsSkXDIIN7tIdMV-tkQV4z_jUmDCmHhjamEyiUA,651
333
358
  machineconfig/settings/lvim/windows/lua/user/custom_config.lua,sha256=wbSm8cZubnPfUhYDmd5HKYnVRZUYVj701FBax2ZgjtE,269
334
359
  machineconfig/settings/marimo/marimo.toml,sha256=tqEKoinBB4KpbOhqMbSjRhNAudpGiT1AvY05f3P2clc,1356
335
360
  machineconfig/settings/marimo/snippets/globalize.py,sha256=HAS8A-gm1bW0rO7tF8SSvuE5bJMksfIpgNpMThAfzq4,600
336
- machineconfig/settings/mprocs/windows/mprocs.yaml,sha256=qn_bPy8eSWMAlhA9PLVO_vxqlSlzzrQ1CldFjSKpLD4,864
361
+ machineconfig/settings/mprocs/windows/mprocs.yaml,sha256=J7k_pvDNlnf21AK3Mw6_1wz2tb3yq8Rytq3PklwoFbY,862
337
362
  machineconfig/settings/mprocs/windows/other,sha256=gIRC6swgxOmXAWEJPCOKmAdDfmLQ2-Vh9A1vsj0atAY,276
338
363
  machineconfig/settings/pistol/pistol.conf,sha256=zjhSJDA3X1TDLRfimnVgJT_Dt54lDJc5hlTBB649d5A,378
339
364
  machineconfig/settings/presenterm/config.yaml,sha256=xxuapoLwxTJRz7nNXZ-7fiXFVclo2UxC3ENuNgDkpMg,1872
@@ -343,7 +368,7 @@ machineconfig/settings/rofi/config.rasi,sha256=nDX5B8wdXQYF1fwiOTBRJUI4l_gQbYaLa
343
368
  machineconfig/settings/rofi/config_default.rasi,sha256=rTfKnC-bZuWX1l-lWQACCUOE1ShhkfykAxtXX9PlQHE,4694
344
369
  machineconfig/settings/shells/alacritty/alacritty.toml,sha256=EbL-2Y4QunW1pvRWB2yuLCw8MMPONheJr5LFoWRieUQ,871
345
370
  machineconfig/settings/shells/alacritty/alacritty.yml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
- machineconfig/settings/shells/bash/init.sh,sha256=jW2tctxZ7ZxA1KN8CzByByCke2L0iB9IpPWhr_nHNBI,4032
371
+ machineconfig/settings/shells/bash/init.sh,sha256=jtoSKpab6Z6j3s115-Y4Mi1_wUExI46hEbSuoXXFJEo,4101
347
372
  machineconfig/settings/shells/hyper/.hyper.js,sha256=h-HqeYlvPvPD4Ee7828Cxo87uVkzbMGJFqXTZIWoegw,8884
348
373
  machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
374
  machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -352,19 +377,20 @@ machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmg
352
377
  machineconfig/settings/shells/nushell/config.nu,sha256=_8fPc2vIoKIquK0EFJ2lrkzJdb3ZMQnMF70LIbt9Czo,108
353
378
  machineconfig/settings/shells/nushell/env.nu,sha256=YmFVuUToLG8YHH5B1UQ0y9kvgxhGzIjHbBjdtFM3e-U,1039
354
379
  machineconfig/settings/shells/nushell/init.nu,sha256=_VpH1S6iX_27L7gUPkyVowdQu3CJWE5XgOUrVn3tiTk,7252
355
- machineconfig/settings/shells/pwsh/init.ps1,sha256=7Cvjm5J0kvPgRceNbsxKC-Tjpb9vfh6bxXKqjlv9KSE,2950
380
+ machineconfig/settings/shells/pwsh/init.ps1,sha256=M19vLYayEffqPxks0miRK4FSDwl0uDaGidaFveydDNw,4836
381
+ machineconfig/settings/shells/pwsh/search_pwsh_history.ps1,sha256=DfUTqlHKlb2po7eY4UQ8DaMkrdiQV1IcNFetgsV4VP4,3117
356
382
  machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
357
383
  machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
358
- machineconfig/settings/shells/wezterm/wezterm.lua,sha256=_ERpROSN3XNtbZJgL1jkAb8DhwGjUjOYuAW6p43CA00,6296
359
- machineconfig/settings/shells/wt/settings.json,sha256=Nzk9IpD-Bp36wKJAgG7XAa0GVwW3I29xNjUW5AYfxEI,10599
360
- machineconfig/settings/shells/zsh/init.sh,sha256=46-PVbbuv4h86k6lkSzALCkW7i_qZukfQm5ZFRwAEhs,2821
384
+ machineconfig/settings/shells/wezterm/wezterm.lua,sha256=6qEfUJerC24JBtSrBOPpNKv79op1iWE81tgrX5_h4GM,6423
385
+ machineconfig/settings/shells/wt/settings.json,sha256=9QdjSFgQUAassE42Fmz7yRjh1fMj6hpQV0IjLZRdt5I,11048
386
+ machineconfig/settings/shells/zsh/init.sh,sha256=WEm3LZp-A7J-OOrb6nC6B3SOxIlsvvKQagEJGo5Anv0,3886
361
387
  machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
362
388
  machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
363
389
  machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
364
390
  machineconfig/settings/television/cable_unix/alias.toml,sha256=OS2OVD_h9zbnnGGlAbXjr5QNv0fIC-7_I4kzENpeTrk,206
365
391
  machineconfig/settings/television/cable_unix/aws-buckets.toml,sha256=zIfV_m_8r6E_zMflm7qRRlWQSS92omYxZZKOU0BI5kU,291
366
392
  machineconfig/settings/television/cable_unix/aws-instances.toml,sha256=gIXqWUzkZXmd8DsIAPLkwFnhsE7qWzZmohxg7-GGe3I,415
367
- machineconfig/settings/television/cable_unix/bash-history.toml,sha256=pnqmBdyWVhWzjtXMXKa7072vmWoYl7dT0LI6dIHXRDs,200
393
+ machineconfig/settings/television/cable_unix/bash-history.toml,sha256=KH-IOZlIU3Mg-RVj-QNHrBBYyFqlaaV_bGQkXhzJqZw,319
368
394
  machineconfig/settings/television/cable_unix/channels.toml,sha256=2SG5RPwK7EyfGODDOFj2-Cp7mqSEB_bfidzNr-N-Y_I,399
369
395
  machineconfig/settings/television/cable_unix/dirs.toml,sha256=TtyxgiXpvUOD848FOxOA2lFGjI3hNfANMYX9D9HPMOQ,233
370
396
  machineconfig/settings/television/cable_unix/distrobox-list.toml,sha256=2NrbpBhjhFpl9JRLbf0nO49c6KbX_R0wxeSWP9EXyIQ,1222
@@ -401,20 +427,22 @@ machineconfig/settings/television/cable_windows/git-log.toml,sha256=IE9Z4qAvihUQ
401
427
  machineconfig/settings/television/cable_windows/git-reflog.toml,sha256=AdAJAzLsbLW1-qXLRhNkNOnZVDilJh236ImEhz-l-Uk,249
402
428
  machineconfig/settings/television/cable_windows/git-repos.toml,sha256=X4S0mYFR4GeDEaa9tyuy2ixeNedEdkgtipCctNeGiAY,498
403
429
  machineconfig/settings/television/cable_windows/nu-history.toml,sha256=y3YQKbqaefTOs4NbM6aIFCCYjG7HT5l6r4NsbURawws,176
404
- machineconfig/settings/television/cable_windows/pwsh-history.toml,sha256=BBEVBi7o6UvkqOJ7S7bKP0VVDTbA6eSC3CoFVtv25QU,197
430
+ machineconfig/settings/television/cable_windows/pwsh-history.toml,sha256=MTFYcq4Mg1QUqM4KmKrRIpqSMKCtbElhCwAl0v6AHXY,370
405
431
  machineconfig/settings/television/cable_windows/text.toml,sha256=aNUd8CAdshw2vsHbawMJqBkbA9Zvw_L6giESJZUeiwo,409
406
432
  machineconfig/settings/tere/terecd.ps1,sha256=l8InGRvFORkj1Bcj0_dPaOip2oNkJoDwbYAlBheCqpg,175
407
433
  machineconfig/settings/tere/terecd.sh,sha256=vDKRbldub0aGQwnWtDwkPnSQHKpVQiDg1RTUrmntfl8,184
408
434
  machineconfig/settings/tmux/.tmate.conf,sha256=dhj8IbNUe_oaBSmnAE-k2rcHJ6_zcd7pHqrmKP19zA0,57
409
435
  machineconfig/settings/tmux/.tmux.conf,sha256=55qyCgKHOyg70kJ42GXrHwqAAtRtnsWtdHCuPt-8Hy8,94
410
- machineconfig/settings/wsl/.wslconfig,sha256=wL4oWxRw_0vLQXheSLNuGUQqypqEKlVqYALosPI9jhY,1279
436
+ machineconfig/settings/tv/config.toml,sha256=iqCxg0G4F7_UzGCiN0tIOybhur6jVOrgOivvKKfto4E,6574
437
+ machineconfig/settings/tv/themes/catppuccin-mocha-sky.toml,sha256=KOHWAvfOShalge5nX_EwbJT7ZvjhOsAPk-hzXRmhFm4,506
438
+ machineconfig/settings/wsl/.wslconfig,sha256=ufmRHkuClLx0uAQ_HAXINIQsmev23fwkEy3NMjyyPZQ,233
411
439
  machineconfig/settings/wt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
412
440
  machineconfig/settings/wt/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
413
441
  machineconfig/settings/yazi/init.lua,sha256=5ihDgbs9I1wxLpSUBJMBs4ecZ39P-MvMj25jWPbI0sY,1609
414
442
  machineconfig/settings/yazi/keymap_linux.toml,sha256=tWMS0JbDXQ4fh-4G09NKKmWFDBat4tU8ysnuqx8pwWs,2338
415
443
  machineconfig/settings/yazi/keymap_windows.toml,sha256=i8tWQwpvA7XE2DAKbjKaaUigsT5hmNqK9OipcgIOZDo,2023
416
444
  machineconfig/settings/yazi/theme.toml,sha256=YIzoyrdGQA-srv41M0z-O1avoQMM5_Mw9lwUCDagFio,56
417
- machineconfig/settings/yazi/yazi_linux.toml,sha256=vjQUmL8sn6AFaZUMZG1MULXEP7l1e6l4yhI_DkBbTUQ,2589
445
+ machineconfig/settings/yazi/yazi_linux.toml,sha256=8p0qEp6pDj7m_GFPrahId0gw8MFhIXDxRyKtBZHLrpE,2900
418
446
  machineconfig/settings/yazi/yazi_windows.toml,sha256=kiNr_lFyMLAa9CGeTW3hKcGCttqG76dOGvkK4tzQCLc,1535
419
447
  machineconfig/settings/yazi/shell/yazi_cd.ps1,sha256=-H6tPmalGlUEmYybFgk51d_MfA3Q01Emf8lVXzKQsi0,1604
420
448
  machineconfig/settings/yazi/shell/yazi_cd.sh,sha256=oC_MSBbnSwCg6qgGe598Qhm0V2B9RD5IcIbKEabn7aE,208
@@ -425,54 +453,60 @@ machineconfig/settings/zellij/commands/monitor,sha256=b90hWtmb2Romv_g2znRxyoVBuh
425
453
  machineconfig/settings/zellij/commands/standard_panes,sha256=iGZpkJRDPVaw423REaUGwyvtd3IOGVlLQznFYNdz16g,1046
426
454
  machineconfig/settings/zellij/layouts/hist,sha256=ryF00zllHpYPpqr6xyBleY7rb1oQSMT2GcMiiipoH1I,303
427
455
  machineconfig/settings/zellij/layouts/panes.kdl,sha256=KlhKtelBy4Z2ENV_pix4xE7NHVc8sT5gLa745eoqn2Y,417
428
- machineconfig/settings/zellij/layouts/st.kdl,sha256=DmcOGKhw64-MsFFkyi9ZKpO8rpfb21FSIBTA-4uO6d4,1176
429
- machineconfig/settings/zellij/layouts/st2.kdl,sha256=1FKTH3qQWYMWp_wPMreP7fKOTlVd4cfBy3J8fv4zCBc,1489
456
+ machineconfig/settings/zellij/layouts/st.kdl,sha256=47vQijJ0n2si6Cr4LTbAHHkCkzq-c_4K4W741XFChns,1174
457
+ machineconfig/settings/zellij/layouts/st2.kdl,sha256=HRVltkbfjCuGIUVMFS7DIAi-cOJCp2pdSTX6l5zNCCg,1488
430
458
  machineconfig/settings/zellij/layouts/stacked_panes.kdl,sha256=usY8kKKwX1KUMXnWDivPg0i0drpM1Biw-tOnNZVjiZU,163
431
459
  machineconfig/setup_linux/__init__.py,sha256=-OGRER8JTu_qhXBHQl0noB6vkVW_y2JA8BlK7Iwq7r4,348
432
460
  machineconfig/setup_linux/apps_desktop.sh,sha256=l1jvwK-0zxlcpn7ia7PMWmBr3OddKBmzkpUXwGl5czg,2769
433
461
  machineconfig/setup_linux/apps_gui.sh,sha256=lFPYq7H2bRogPwW6QoEuSr9GnTjHS-jRM_eYg2rjOmM,2301
434
462
  machineconfig/setup_linux/uv.sh,sha256=cyegPmMMB7B3OnVx9KxZiU1JQU3Z_oqboUgwzmW2W40,487
435
- machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=fC_yF3E4TuuaeJdpXbfS7veG6ZTYw0kRDXXeRC8VIeE,1605
436
- machineconfig/setup_linux/web_shortcuts/live_from_github.sh,sha256=-zDKAzop3P9-XJ9qaRXCfkpcGHKykrTpzsXa6VPTsmQ,1159
437
- machineconfig/setup_mac/__init__.py,sha256=PfdhwY4Ss-rfP7b4-9fvKwxCDtNAd-u1JdhFYnE7CwI,518
463
+ machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=nBp5Sq2x2b6-NPbDgW4F1K2jHPYsdyOEWIIKj-JHgA8,1605
464
+ machineconfig/setup_linux/web_shortcuts/live_from_github.sh,sha256=Ik51YDkaCEJnmhbL88JNHEzVnAUeKk3ajM5w7WPJmPY,1186
465
+ machineconfig/setup_mac/__init__.py,sha256=BOsP9N33npuqSxs-no7Y6DLJz03Av09B--_1H5a0xDE,421
438
466
  machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
439
467
  machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
440
- machineconfig/setup_mac/ssh/openssh_setup.sh,sha256=TxfySnwFYg1UQLXmJbEQ2gfEWIT084F5JvNZI9ncpc0,3537
441
- machineconfig/setup_windows/__init__.py,sha256=V9kZaO4lrEygI3rxim_Mzq3TAAbG_Ok5GZGxewF_-Nk,307
468
+ machineconfig/setup_windows/__init__.py,sha256=bB4HzU4_bvISIHdJDYmLu0CV7RtVrMRKzcWZ7q_JWco,236
442
469
  machineconfig/setup_windows/uv.ps1,sha256=6IwoBSyvyeRBvpBRdzfuNNS5uNsVqYJEVlza-hyuxDc,761
443
- machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
444
- machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=SoE_WDK5bCwcgoHp4nl-kG1a8Q_ldgSNXDIzB0LW_tY,2584
445
- machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=dZpYzy0AcmhVYXyB70oQgciZ1bA98iJ8aat0ZNHxv9Y,1939
446
- machineconfig/setup_windows/web_shortcuts/live_from_github.ps1,sha256=03JtjjEfMxPN5V1-o5R6dvGpRVKLxq4Mx5VhRjPw5Dw,1402
447
- machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=zMT67MFwq_J6gc6O1kIV4FSI9UDE2AUiZon3FBs4GOk,652
470
+ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=8ytYoc4pY8OZV22pIznhHAoRqfafEc0eskf1epM5c7I,1946
471
+ machineconfig/setup_windows/web_shortcuts/live_from_github.ps1,sha256=jOGZfyML4yRmQRcYE50vORUc3GDCzDlWQ3ZqJnSpODE,1415
472
+ machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=ZPOlCGIcPrbr6CM3Q8BgaTgttYHj0tSLTFK_k3wnctU,655
473
+ machineconfig/type_hinting/sql/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
474
+ machineconfig/type_hinting/sql/base.py,sha256=atQ6RygUWgRIF9rbuKgXYx-880qmOtP0Ht_rXCh5Y0s,5462
475
+ machineconfig/type_hinting/sql/core_schema.py,sha256=QG_y2OCT6xP1B3bfd1oyblZZybUhrjmgvHoloIVqQOM,2711
476
+ machineconfig/type_hinting/sql/core_schema_typeddict.py,sha256=PZ77liCN2ESOaWNeJPb0hjhw-Mv0BteYbTiiyrSgZ10,1033
477
+ machineconfig/type_hinting/sql/typeddict_codegen.py,sha256=FFnn5FckphwYWUWha7mCF8_DcUoPbmGgzCy_r8wPbSs,8063
478
+ machineconfig/type_hinting/typedict/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
479
+ machineconfig/type_hinting/typedict/ast_utils.py,sha256=gqQmxAh9VO3h9NJs-QJ4yMBT0HtyfjG0RTh7lk0-IxY,5430
480
+ machineconfig/type_hinting/typedict/generator_helpers.py,sha256=lQhtMouz8sddMciV8GqiYClXRpNGaPLGXuG-HdKNhTk,14641
481
+ machineconfig/type_hinting/typedict/generators.py,sha256=a9qNeSkj5SUFxF5UEKmPSTTBPRtBc2mTNJSDjBgPdk8,10269
482
+ machineconfig/type_hinting/typedict/polars_schema.py,sha256=rKMbFaL5FsSnpDQUlEomQSUn7Qj6eZ9co-9-BbsdY44,666
483
+ machineconfig/type_hinting/typedict/polars_schema_typeddict.py,sha256=L7whEJXC5P-IAIjlCjmoyuA6rqRkMIud-cGLNMSgij4,2431
448
484
  machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
449
- machineconfig/utils/accessories.py,sha256=4nkK6pjir5zV-t_DZiqaQVK7JrTdC6EkEYiMdz_NPcU,4407
450
- machineconfig/utils/code.py,sha256=Y0FMyVc_VojT_GSIS_KcHpTFOGMfz3Oaoq3CDVCEnIE,9400
485
+ machineconfig/utils/accessories.py,sha256=dqCzgzY7lj-CBRqPrIU6bXQp0pt09ThQfz346pCLZkI,5233
486
+ machineconfig/utils/code.py,sha256=GKyvu9N57V_V6RlHmf4kE_zB_EObONb37DY2BTYjbk4,11215
451
487
  machineconfig/utils/io.py,sha256=6kXNd3t6FCHxZzmPOIKTCdXDRnSdHoy4IqcthwBbYGY,6456
452
488
  machineconfig/utils/links.py,sha256=hmPi5Nfi_8mrLy5dVcRnJGQsqQTuuPtlwB-hrPK7tk0,25044
453
- machineconfig/utils/meta.py,sha256=CLkBibpumQGQXJvOhsCeUQSU9-BVdapntTMLlV6RGx0,10528
489
+ machineconfig/utils/meta.py,sha256=8nLCvhODltX8OnHjuc-oUAniRW-qYo8HKmJLVxUuUjs,10707
454
490
  machineconfig/utils/notifications.py,sha256=tuXIudcip0tEioG-bm8BbLr3FMDve4f6BktlznBhKxM,9013
455
- machineconfig/utils/options.py,sha256=BbjeP4yLuNql15R9CFqHlN5NR7t20Tgnbuh4x_Nf5EY,8821
456
- machineconfig/utils/options_tv.py,sha256=N_LaNlXkBU0tFQ1HvqYmEgJxJEo3ebRTsMGZjM77UcY,4133
457
- machineconfig/utils/path_extended.py,sha256=7WprxKVo855pFGhM41ZFXaYpLqhG66JkyQ6KzgR6Si4,50851
491
+ machineconfig/utils/options.py,sha256=W1osr13sHjkaG2Px0AimlIahg4GM1_pcTDizE54NIHo,10627
492
+ machineconfig/utils/path_extended.py,sha256=hnnUp3SSzTqoHMuJ74B820b7I7pNDQnq3Kicy4Yp_ZY,50963
458
493
  machineconfig/utils/path_helper.py,sha256=RVis6gsJ9mEUPdh3tpyM7F2Ow8TruXpI1AoFqWInr7g,10368
459
494
  machineconfig/utils/procs.py,sha256=hpavbXmcEZZaDkueqBnEeMLBjAxHMgNxrRJ5kaCEYms,10956
460
- machineconfig/utils/scheduler.py,sha256=En7M9jgzC5PXDPC5Fq0_RtFf2WDg6fFmsyxYTsW-w6c,14099
495
+ machineconfig/utils/scheduler.py,sha256=4LirDDlXg0zBDqpsF8FVFdGHEHbt6beUsbqWIBSlu4A,14469
461
496
  machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
462
- machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
463
- machineconfig/utils/ssh.py,sha256=BFMu2xanCIiHP-IaP3geFAMwYGWwvxRGa2LbTObmDog,17791
497
+ machineconfig/utils/source_of_truth.py,sha256=kqd_1FTOiR4WAN7TDVOmKToprpq1a-Hm-I7CEgCu6Zw,996
498
+ machineconfig/utils/ssh.py,sha256=5xVKaFubIsd0rk6uCWs--QhvcZhUQ-VShQ_LuyHM6UY,18890
464
499
  machineconfig/utils/terminal.py,sha256=7zi33CpnoEHFoopgzgtNtY1hDOCp0kxeFxzmjTmGo4k,4265
465
- machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
466
- machineconfig/utils/upgrade_packages.py,sha256=zu5oswNQBBwfWCE52khCFEMBc99mC3fEorzRNk99ffw,7295
500
+ machineconfig/utils/upgrade_packages.py,sha256=8ba8P_D_LPtaQSdqhEKqmI-NVOtVhBls_1ANBrOixO8,7174
467
501
  machineconfig/utils/ve.py,sha256=Fu4iV4g3zTeOv1MSChI_lUkmnyZCpIbgCykObq4ELSc,2506
468
502
  machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
469
503
  machineconfig/utils/cloud/onedrive/README.md,sha256=i20oRG110AN0yLF3DARHfWXDJjPBiSgWI8CP2HQAqrk,3774
470
504
  machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
471
505
  machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqjZxU_3nXx2CA-qKbQgP3I,26232
472
- machineconfig/utils/files/ascii_art.py,sha256=SQkayd2r_PkvLCNRjNnq5JzYz8t_dOMHquiJ3E6-9Ck,5216
506
+ machineconfig/utils/files/ascii_art.py,sha256=h1w7N5h7cWe4w15Ga-8ETMWUOLXDAFnclPzBHbimQWc,4767
473
507
  machineconfig/utils/files/dbms.py,sha256=B7Mns8g774kfeXZwcuGWUpRnSgiOtS6khn8faRH5rQs,11390
474
- machineconfig/utils/files/headers.py,sha256=nZVdTKCt-n600huiX5qVZO22aArjn4CPsFcjRWrEIBY,3523
475
- machineconfig/utils/files/read.py,sha256=QDxLEIYi0NcgAys97IVB6IUl4S9CiFP6TKGxUxRBJOM,4330
508
+ machineconfig/utils/files/headers.py,sha256=sUIOSE_f1NrlHQR5hguqpMZfaQleS_cBFjCeWAiSDKo,3404
509
+ machineconfig/utils/files/read.py,sha256=o1cyZzA1E8DmWZym2PE15t9lLu7a4CGRKZ8F-76m4ug,4605
476
510
  machineconfig/utils/files/art/fat_croco.txt,sha256=Gz-qK0YZT4pnPA16hlsCVZN3HrBAPW_1hEv3IZTy01Q,637
477
511
  machineconfig/utils/files/art/halfwit_croco.txt,sha256=To3-lWfcnonx2Ap71lVYyJ6PTK04G78L3uCM10-hCRk,437
478
512
  machineconfig/utils/files/art/happy_croco.txt,sha256=VwuSikjKVmdc_Kvd0IyclxVOYo1v4ZBaD_i1XOv7hRo,967
@@ -480,24 +514,29 @@ machineconfig/utils/files/art/water_croco.txt,sha256=5SPK6W3TQe6mO9eFbDIZ4n1rNAj
480
514
  machineconfig/utils/files/ouch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
481
515
  machineconfig/utils/files/ouch/decompress.py,sha256=7qPaEkMerBBXzeZyFn8hLODHZJv1aty-yGgwBxLgVys,1413
482
516
  machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
483
- machineconfig/utils/installer_utils/github_release_bulk.py,sha256=9CzhfndKhKPNYy9GzgSOz9hiiZNXGrcFvE-vQbdoEq0,8275
484
- machineconfig/utils/installer_utils/install_from_url.py,sha256=yaKAvcJr8jElT830KuJJr8H_eGrIliZ4h3OVlyYkrbg,8681
485
- machineconfig/utils/installer_utils/installer_class.py,sha256=S6_XL7FwurkBKiS_ZfqDeY6r9FBb2XL32qGS2S2aOtk,14598
486
- machineconfig/utils/installer_utils/installer_cli.py,sha256=zwe3D2lU5C2K4JnEuiw_jfTbBty1GThasSn4hCR_R6U,8625
487
- machineconfig/utils/installer_utils/installer_helper.py,sha256=ZolxoaH8K4mmudWWw6QidktnhGKsqDzg1QI6oBJvb5o,6455
488
- machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=R6QaClIJgXhCzukfN5tVis2Phe7WyJx9bAk-vEjoTBE,10215
489
- machineconfig/utils/installer_utils/installer_runner.py,sha256=aISG0kaXV49PvRWz_wBaKJ9-SQ2rp_lMZjmeBZ1si78,7920
490
- machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=d3pwhmE-EuHPxaIoTTZeUdDUEK9QqtimV8zO3vV-7N4,2052
517
+ machineconfig/utils/installer_utils/github_release_bulk.py,sha256=yZS0GGi28plSJ11UMcXZYerp_bxV5jjhss_-5W7svYE,8311
518
+ machineconfig/utils/installer_utils/install_from_url.py,sha256=1cE9DTV6DnRg98YGtj81-RZgaZPJdLDn3P7_3ZvZ8yQ,8683
519
+ machineconfig/utils/installer_utils/installer_class.py,sha256=D6BATWDMdzAJFuVJQmWQbR-Iqk0v9zTMdy7L0ZX8DTU,14911
520
+ machineconfig/utils/installer_utils/installer_cli.py,sha256=9LxQtkeSTO2Qt1_CBozjKaOjVpq1d9zAxGxxGhJ6Tk8,8204
521
+ machineconfig/utils/installer_utils/installer_helper.py,sha256=drSX8fvo5EsNlWE5uBAVjfud6cb41TS_cyFKmnn03x0,6497
522
+ machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=UOAOYqIjEG0_UdZGx8x8b9QA5DZwqL4kBc6TXJXirPM,10302
523
+ machineconfig/utils/installer_utils/installer_runner.py,sha256=mMizhXdO4QDrPgWLPMCuQhHnE9WHx_sx8wNRqBR4ILo,7967
524
+ machineconfig/utils/options_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
525
+ machineconfig/utils/options_utils/options_tv_linux.py,sha256=W87UX-MDnDvGSjkr_AN5ti6lIi81HvX5XyTXUS2-lmU,8054
526
+ machineconfig/utils/options_utils/options_tv_windows.py,sha256=mDSyAENfhxMoDT6Tut8EDUN7gO0uXq46yDgTbEGEm9c,4195
527
+ machineconfig/utils/options_utils/tv_options.py,sha256=rUPaxL9qSEz27C2HdkYvvA3zApLNsAbV9r8EKcKrXkI,1679
528
+ machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=wN9n96t5qplpDc4S1mw1qdoUfp0uA4A1vLhj-mvJzQc,2060
491
529
  machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
492
530
  machineconfig/utils/schemas/layouts/layout_types.py,sha256=IV45Z_ZTw8S4V-wiZ_lpAVsUX6rSSfDCG7qm5Dk4Oog,1977
493
531
  machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
494
- machineconfig/utils/ssh_utils/abc.py,sha256=vcbD1_xzaBgy4MQOYEu3q6eKR62HgLCJxOAC34F2sQ8,103
532
+ machineconfig/utils/ssh_utils/abc.py,sha256=WOki8VWAZScT8tTOkmWQXKOkiiVpCheCwDnv5rwCdGI,103
495
533
  machineconfig/utils/ssh_utils/copy_from_here.py,sha256=KcajzrFIwBOARWIZc11amuItdbUnc0mKF7XYIkyCBnQ,5424
496
534
  machineconfig/utils/ssh_utils/copy_to_here.py,sha256=ibDivdzzKC7-1sc6JQn4mzreSY8Tbm4etIsAZrbAZv8,13892
497
535
  machineconfig/utils/ssh_utils/utils.py,sha256=O0dslCi2yjs0ToLJKg7O0nTC3e0_HMtdW4ga_GiYZZc,6322
498
- machineconfig/utils/ssh_utils/wsl.py,sha256=nSzZnZ7M4d3mfW2z-57OQIwfVpa114bJVOf9tDLheLE,7865
499
- machineconfig-8.14.dist-info/METADATA,sha256=2zd5eD_sEAE5xQFwq7d2edUENrhatRJ6aTZPtWMwsmY,6299
500
- machineconfig-8.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
501
- machineconfig-8.14.dist-info/entry_points.txt,sha256=NpkZIzFVsNgyPe5EdUfY7QLuZovfpWxDQ2r2q3xSwvk,638
502
- machineconfig-8.14.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
503
- machineconfig-8.14.dist-info/RECORD,,
536
+ machineconfig/utils/ssh_utils/wsl.py,sha256=emECrPITxBaiy3XTFfMfdby0taPkTDYr4m2E63askb0,6295
537
+ machineconfig/utils/ssh_utils/wsl_helper.py,sha256=n3FWkhTfSGMbqkg6whH2sOP0bcnMLeQZ1O_ZmYlfv6U,8273
538
+ machineconfig-8.45.dist-info/METADATA,sha256=aXFnBwqHYi_G93wqykI71YVQlvh_w7pehW6JZYEUEVg,6353
539
+ machineconfig-8.45.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
540
+ machineconfig-8.45.dist-info/entry_points.txt,sha256=NpkZIzFVsNgyPe5EdUfY7QLuZovfpWxDQ2r2q3xSwvk,638
541
+ machineconfig-8.45.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
542
+ machineconfig-8.45.dist-info/RECORD,,