machineconfig 3.3__py3-none-any.whl → 3.5__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 (88) hide show
  1. machineconfig/cluster/sessions_managers/wt_local_manager.py +1 -1
  2. machineconfig/cluster/sessions_managers/wt_remote_manager.py +1 -1
  3. machineconfig/cluster/sessions_managers/zellij_local_manager.py +1 -1
  4. machineconfig/cluster/sessions_managers/zellij_remote_manager.py +1 -1
  5. machineconfig/cluster/templates/utils.py +1 -1
  6. machineconfig/jobs/linux/msc/cli_agents.sh +18 -2
  7. machineconfig/jobs/python/python_ve_symlink.py +1 -1
  8. machineconfig/jobs/python/vscode/api.py +1 -1
  9. machineconfig/jobs/python/vscode/select_interpreter.py +2 -2
  10. machineconfig/jobs/python/vscode/sync_code.py +1 -1
  11. machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py +1 -1
  12. machineconfig/jobs/python_custom_installers/dev/espanso.py +1 -1
  13. machineconfig/jobs/python_custom_installers/hx.py +1 -1
  14. machineconfig/jobs/python_generic_installers/config.json +0 -11
  15. machineconfig/profile/create.py +3 -3
  16. machineconfig/profile/shell.py +1 -1
  17. machineconfig/scripts/python/ai/mcinit.py +23 -67
  18. machineconfig/scripts/python/ai/solutions/__init__.py +0 -0
  19. machineconfig/scripts/python/ai/solutions/_shared.py +5 -0
  20. machineconfig/scripts/python/ai/solutions/claude/claude.py +8 -0
  21. machineconfig/scripts/python/ai/solutions/cline/cline.py +10 -0
  22. machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py +35 -0
  23. machineconfig/scripts/python/ai/solutions/copilot/privacy.md +4 -0
  24. machineconfig/scripts/python/ai/solutions/crush/crush.json +216 -0
  25. machineconfig/scripts/python/ai/solutions/crush/crush.py +25 -0
  26. machineconfig/scripts/python/ai/solutions/crush/privacy.md +2 -0
  27. machineconfig/scripts/python/ai/solutions/cursor/cursors.py +10 -0
  28. machineconfig/scripts/python/ai/solutions/gemini/gemini.py +14 -0
  29. machineconfig/scripts/python/ai/solutions/generic.py +41 -0
  30. machineconfig/scripts/python/ai/solutions/kilocode/privacy.md +3 -0
  31. machineconfig/scripts/python/ai/solutions/opencode/opencode.json +4 -0
  32. machineconfig/scripts/python/ai/solutions/opencode/opencode.py +1 -0
  33. machineconfig/scripts/python/choose_wezterm_theme.py +1 -1
  34. machineconfig/scripts/python/cloud_copy.py +2 -2
  35. machineconfig/scripts/python/cloud_mount.py +2 -2
  36. machineconfig/scripts/python/cloud_repo_sync.py +3 -2
  37. machineconfig/scripts/python/croshell.py +12 -7
  38. machineconfig/scripts/python/devops_add_identity.py +1 -1
  39. machineconfig/scripts/python/devops_add_ssh_key.py +1 -1
  40. machineconfig/scripts/python/devops_backup_retrieve.py +4 -3
  41. machineconfig/scripts/python/devops_update_repos.py +2 -2
  42. machineconfig/scripts/python/dotfile.py +1 -1
  43. machineconfig/scripts/python/fire_agents.py +3 -3
  44. machineconfig/scripts/python/fire_agents_help_launch.py +2 -2
  45. machineconfig/scripts/python/fire_jobs.py +8 -8
  46. machineconfig/scripts/python/fire_jobs_layout_helper.py +2 -2
  47. machineconfig/scripts/python/ftpx.py +2 -2
  48. machineconfig/scripts/python/helpers/cloud_helpers.py +2 -1
  49. machineconfig/scripts/python/helpers/helpers2.py +4 -3
  50. machineconfig/scripts/python/helpers/helpers4.py +1 -1
  51. machineconfig/scripts/python/helpers/repo_sync_helpers.py +2 -2
  52. machineconfig/scripts/python/mount_nfs.py +1 -1
  53. machineconfig/scripts/python/mount_ssh.py +1 -1
  54. machineconfig/scripts/python/repos.py +6 -3
  55. machineconfig/scripts/python/repos_helper_clone.py +121 -0
  56. machineconfig/scripts/python/repos_helper_record.py +2 -2
  57. machineconfig/scripts/python/start_slidev.py +1 -1
  58. machineconfig/scripts/python/wsl_windows_transfer.py +1 -1
  59. machineconfig/setup_windows/wt_and_pwsh/install_nerd_fonts.py +1 -1
  60. machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py +3 -3
  61. machineconfig/utils/{utils2.py → accessories.py} +13 -29
  62. machineconfig/utils/code.py +2 -2
  63. machineconfig/utils/installer.py +2 -2
  64. machineconfig/utils/installer_utils/installer_abc.py +1 -1
  65. machineconfig/utils/installer_utils/installer_class.py +2 -2
  66. machineconfig/utils/io.py +94 -0
  67. machineconfig/utils/links.py +2 -2
  68. machineconfig/utils/notifications.py +0 -9
  69. machineconfig/utils/{path_reduced.py → path_extended.py} +1 -1
  70. machineconfig/utils/{path.py → path_helper.py} +1 -1
  71. machineconfig/utils/procs.py +1 -1
  72. machineconfig/utils/{utils5.py → scheduler.py} +3 -8
  73. machineconfig/utils/ssh.py +2 -2
  74. machineconfig/utils/terminal.py +12 -2
  75. machineconfig/utils/ve.py +2 -16
  76. {machineconfig-3.3.dist-info → machineconfig-3.5.dist-info}/METADATA +1 -4
  77. {machineconfig-3.3.dist-info → machineconfig-3.5.dist-info}/RECORD +87 -71
  78. machineconfig/utils/io_save.py +0 -95
  79. /machineconfig/scripts/python/ai/{chatmodes → solutions/copilot/chatmodes}/Thinking-Beast-Mode.chatmode.md +0 -0
  80. /machineconfig/scripts/python/ai/{chatmodes → solutions/copilot/chatmodes}/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md +0 -0
  81. /machineconfig/scripts/python/ai/{chatmodes → solutions/copilot/chatmodes}/deepResearch.chatmode.md +0 -0
  82. /machineconfig/scripts/python/ai/{instructions → solutions/copilot/instructions}/python/dev.instructions.md +0 -0
  83. /machineconfig/scripts/python/ai/{prompts → solutions/copilot/prompts}/allLintersAndTypeCheckers.prompt.md +0 -0
  84. /machineconfig/scripts/python/ai/{prompts → solutions/copilot/prompts}/research-report-skeleton.prompt.md +0 -0
  85. /machineconfig/scripts/python/ai/{configs/.gemini → solutions/gemini}/settings.json +0 -0
  86. {machineconfig-3.3.dist-info → machineconfig-3.5.dist-info}/WHEEL +0 -0
  87. {machineconfig-3.3.dist-info → machineconfig-3.5.dist-info}/entry_points.txt +0 -0
  88. {machineconfig-3.3.dist-info → machineconfig-3.5.dist-info}/top_level.txt +0 -0
@@ -13,13 +13,13 @@ machineconfig/cluster/remote/script_notify_upon_completion.py,sha256=GRxnnbnOl1-
13
13
  machineconfig/cluster/sessions_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  machineconfig/cluster/sessions_managers/enhanced_command_runner.py,sha256=3vcQVg-HHa_WTxBGPtKMAdoSqJVa2EO5KAtrY8a6I3c,5264
15
15
  machineconfig/cluster/sessions_managers/wt_local.py,sha256=-e4yNxvu6ytI-u1Kihhtn_wd_qNKZMzN_WrZ9ab1qYA,18220
16
- machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=bwn-jCbVgwUYYEaHk-AyOLSV9cg2Ke73Y50OUNiSKpQ,24190
16
+ machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=LqOuA9fqVDu5mWa04pxY9IUqMR4v-kDQbhZY0simvlQ,24193
17
17
  machineconfig/cluster/sessions_managers/wt_remote.py,sha256=XmZV9rLubwxND5UYAS15mAcpzDdXvm4KyubVGYkVBmo,8743
18
- machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=vExLwB0cG8wubhadAgDbtaDta5PkWLUP4-5JJ_QKmYs,19761
18
+ machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=CnnOtPiwLx0pIfs_KlcKnclLSqiDTNzfm8t8sW6nXf0,19764
19
19
  machineconfig/cluster/sessions_managers/zellij_local.py,sha256=Le8QO60NGnE4Um54R26qosxq88ZeMtsBJ4xWd-obLKw,26131
20
- machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=32IZf2gbB-qseTf9d3GWCYfr4C3Pl4dBDN_pfpU_nvY,24025
20
+ machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=4ap0Gtd8wOybFc461OItA2kU-1jpgPQUX03s8Zjyk_4,24028
21
21
  machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=f2bLNbhF0zZEuaM3JLttSvTLxjWidAjVTLtGVhrec9o,8749
22
- machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=Jhbbty8wPsyQYUx4psTQnGEzl_euGUjkjIOhxBioAjE,8310
22
+ machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=T-j1KMV7mDTeGSHC5To0_JmqNtjSR_LVZT9VanP4lyI,8313
23
23
  machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=CFGcZPFTZQJtFf0OvMUHhadZ0qbImCP3wxvbWYVcVYo,7445
24
24
  machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256=Mitm7mKiKl5lT0OiEUHAqVg2Q21RjsKO1-hpJTHJ5lM,15196
25
25
  machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py,sha256=lApUy67_WhfaBXqt0meZSx_QvwiXjN0YLdyE3c7kP_s,6744
@@ -39,35 +39,35 @@ machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQ
39
39
  machineconfig/cluster/templates/run_cloud.py,sha256=0o4-v5yFEqvlHzoKDXljRCR5ikx_r5w4oYE5OCtVIK8,2378
40
40
  machineconfig/cluster/templates/run_cluster.py,sha256=ZFNl4EDybicedWKX5qBwSSeKKfdV2lQFD_1kcAyjHYM,4691
41
41
  machineconfig/cluster/templates/run_remote.py,sha256=vCc56t8BUAUJp7tyb0PFfwy5hlmIdRdzcjlpP9gcLdc,3247
42
- machineconfig/cluster/templates/utils.py,sha256=hrtaDkGxl9p9SAdPz46ppTtbrIW2OonsO42DEA-qoS8,1646
42
+ machineconfig/cluster/templates/utils.py,sha256=5lHgjHvodoSPBD31AwluHBBNgwimwThUsDNWGN8iH9I,1647
43
43
  machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
- machineconfig/jobs/linux/msc/cli_agents.sh,sha256=X94rDsNHokIWQyHUQu0n2d0AbR39ak-nw4PbrUsJr7w,377
44
+ machineconfig/jobs/linux/msc/cli_agents.sh,sha256=o4DGuavYPfRuvS28r9nyvS2_xk-Ibq6rtt9oXv_a6UQ,746
45
45
  machineconfig/jobs/linux/msc/lid.sh,sha256=09LeoSaXCGjCn7YxPcIFQpHroYdglJlEtFU2agarh3I,1302
46
46
  machineconfig/jobs/linux/msc/network.sh,sha256=dmISsh0hioDheinqee3qHfo2k7ClFx6G_GfGDxuflmc,1796
47
47
  machineconfig/jobs/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
48
  machineconfig/jobs/python/check_installations.py,sha256=o0mrZ-ivdED_7Od1tdtwJ4XSQRfiY6d_HciXLh1PXtY,11126
49
49
  machineconfig/jobs/python/create_bootable_media.py,sha256=KKtcPk0rFLQc4eNVP6nbeYX-P7Gpqi0HvfIcUM6rVVs,827
50
50
  machineconfig/jobs/python/python_cargo_build_share.py,sha256=RDe1QiTH3vLQ1wjN0kE5NxMIqwB-_WHz6O3svyuH_VE,2133
51
- machineconfig/jobs/python/python_ve_symlink.py,sha256=XCeZzV1-vn56swWakHzrIAht1nkQaQ4W_Mxyx111vTM,845
51
+ machineconfig/jobs/python/python_ve_symlink.py,sha256=jEqmY53t4LLzHE96qDFPRVAN-fkVtsYjjQFDLVFbY-A,846
52
52
  machineconfig/jobs/python/tasks.py,sha256=hrBDQOnBmcXtauTkicVgC8J2AOGcfdFfyx0K8eI6Coc,150
53
- machineconfig/jobs/python/vscode/api.py,sha256=BYF3XeNXYCpM4ApDCz2ZM1AInY4WgBqrpX9l_MWYqfM,1670
53
+ machineconfig/jobs/python/vscode/api.py,sha256=YTKWxdRwPI9_1iqUhrUVPeS96aqE9rw1YNhIjBwGWTE,1675
54
54
  machineconfig/jobs/python/vscode/link_ve.py,sha256=1tXXgfWcl18K6avdhm2V7zng18opR9pfI0PSLxMFbiQ,1439
55
- machineconfig/jobs/python/vscode/select_interpreter.py,sha256=54IljnFsvlz-B3qezMxc84RZSBxpYqKOsPmL9LwvSUU,2686
56
- machineconfig/jobs/python/vscode/sync_code.py,sha256=5pk3-QBfZcXSe3H9a72vqf603vTbsEZA6KAP7ThVORs,1902
55
+ machineconfig/jobs/python/vscode/select_interpreter.py,sha256=6YQtB1SAJIxf7EHqzT2xn2_z_xqbygSCXOtgv6omc8M,2677
56
+ machineconfig/jobs/python/vscode/sync_code.py,sha256=b7vhebl3TH0wDBJ_eRg3DhY7veMqdqBA-rCkGZxSf5o,1898
57
57
  machineconfig/jobs/python_custom_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
58
  machineconfig/jobs/python_custom_installers/docker.py,sha256=xVNmcEJDuMB7-jRf1dGjNs-51uB6FwOgHKTHNJt8Eiw,2407
59
59
  machineconfig/jobs/python_custom_installers/gh.py,sha256=bJXYUPwWw5-Y1ofy3qn1_D73V0xw2OLiJF3Roh37ge0,2662
60
- machineconfig/jobs/python_custom_installers/hx.py,sha256=ghPC43v07ws_8NH203B8iylwqs0_KFlM4tzMUw885-g,5705
60
+ machineconfig/jobs/python_custom_installers/hx.py,sha256=i7_ws2BVO_EaoFeC9Nsx4WZU7EZEk5lsAAo1qiV48uk,5706
61
61
  machineconfig/jobs/python_custom_installers/warp-cli.py,sha256=DV3hYPeWa5IpSTxGgpAiuG8vVXmOY46QudOUv4p15zk,2166
62
62
  machineconfig/jobs/python_custom_installers/archive/ngrok.py,sha256=Dcse7MzRYsz_xreTOq6HIskGzHo2Wfs6mREyK4KpR4E,1862
63
63
  machineconfig/jobs/python_custom_installers/dev/aider.py,sha256=QpZTbqV0j8oGPtPSQxbWaqmqrU98gDHp3lfe2Nx4-d0,991
64
64
  machineconfig/jobs/python_custom_installers/dev/alacritty.py,sha256=QEXHfv9pMd4f8repIWP3PP4_NaR1vlgT-AKraJLJzPk,1996
65
65
  machineconfig/jobs/python_custom_installers/dev/brave.py,sha256=aComZAepkXMOy-xQDX88TR2dyQvY0Zy-jDBFANztd0o,2178
66
- machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py,sha256=xcrnI3t-XgVaKtSPujfe6sNE3SMWxihGGUaXQjryq8Q,1606
66
+ machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py,sha256=b8pYuJbcWCqP0jeyz71KwAgS9L7inASmgrrCPmuu7Zc,1607
67
67
  machineconfig/jobs/python_custom_installers/dev/code.py,sha256=clLUL48MWA7M-wixM4YcVpq3ojKnXC-QvhwHzl57WBs,1842
68
68
  machineconfig/jobs/python_custom_installers/dev/cursor.py,sha256=82YaZ0t1ssg8q2YpzY49MO_5v8fyRnFrBHsdI8Wx8fE,4541
69
69
  machineconfig/jobs/python_custom_installers/dev/docker_desktop.py,sha256=1PHkB32Y6dOPSpNLu17I_FIMZtwEz6lA_Elhbd9MTtg,2492
70
- machineconfig/jobs/python_custom_installers/dev/espanso.py,sha256=iZI31xVx-8P-I800-hgHkiHkbzhOpx5dl1eUQXyyM4Y,2674
70
+ machineconfig/jobs/python_custom_installers/dev/espanso.py,sha256=3soH2SZBf0K-tTMRMs3rGi1NlGG7iQREvp4iuPsLozA,2648
71
71
  machineconfig/jobs/python_custom_installers/dev/goes.py,sha256=KYacv7Tp4f6UBAiF8C7GRJUtj-lAxu-vGo5JxjLYeVk,1216
72
72
  machineconfig/jobs/python_custom_installers/dev/lvim.py,sha256=0JcwZ1yIDO_glv_dv06-t-Tyulzz5AzkRT22u-6Ee3s,2344
73
73
  machineconfig/jobs/python_custom_installers/dev/nerdfont.py,sha256=61Nq-dQEyT5QyDfo9EtbmC3eI3HLTUk316p3U1LpxbY,2202
@@ -87,7 +87,7 @@ machineconfig/jobs/python_custom_installers/scripts/linux/vscode.sh,sha256=8S0nZ
87
87
  machineconfig/jobs/python_custom_installers/scripts/linux/warp-cli.sh,sha256=PVNLeYWdh3XEFllCVZDYIHBI42btjGlH5jbyXjJGz-Y,3033
88
88
  machineconfig/jobs/python_custom_installers/scripts/linux/wezterm.sh,sha256=m697rRoIIVk-f8JdI1YQmphk-JWpMc5IYbD5YaQ3SeQ,1874
89
89
  machineconfig/jobs/python_generic_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
- machineconfig/jobs/python_generic_installers/config.json,sha256=hUAqfmJbNLvinuX_pikAtwUyKIS79de37CNsSxIcy9k,20245
90
+ machineconfig/jobs/python_generic_installers/config.json,sha256=FRzNOgyChrtH1YNcmBQi-SPPrsrvw39imUfPDtTYgCY,19930
91
91
  machineconfig/jobs/python_generic_installers/config.json.bak,sha256=dkrLpAs-xJ1gvpFd42yuWGoRkkE1MG-8fAhrMNrxt34,20678
92
92
  machineconfig/jobs/python_generic_installers/dev/config.archive.json,sha256=1rZO1-5lxtbVGuXXoTTuvWjs54xlHHIAIIZYDAy8FSA,823
93
93
  machineconfig/jobs/python_generic_installers/dev/config.json,sha256=ItwFXaLlIGwBS2SfmYwsqYU86fAKQmCfLD7vaneZgPA,26928
@@ -116,8 +116,8 @@ machineconfig/jobs/windows/archive/openssh-server_copy-ssh-id.ps1,sha256=-7pElYi
116
116
  machineconfig/jobs/windows/msc/cli_agents.bat,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
117
  machineconfig/jobs/windows/msc/cli_agents.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
118
  machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
- machineconfig/profile/create.py,sha256=jeJT92dHjD8B14_uUkpvi7TyPkAjarbw4dJAzZqfhAo,6464
120
- machineconfig/profile/shell.py,sha256=HIMJvl-HZ8za7gbZn_vLZV0R6qjwcNfRFLK2bJ8ig-4,9206
119
+ machineconfig/profile/create.py,sha256=yWAxJ6QNaHurnDVLQ7XUcfjdKMFU9AGV9runVM06mZ4,6463
120
+ machineconfig/profile/shell.py,sha256=VjRl9GT20npUrAjWoQoo0DSabD2-bTgk7gAX_4Ycxdo,9207
121
121
  machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
122
122
  machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
123
123
  machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
@@ -162,67 +162,83 @@ machineconfig/scripts/linux/warp-cli.sh,sha256=shFFZ9viet_DSEEHT8kxlGRHoJpO6o85p
162
162
  machineconfig/scripts/linux/wifi_conn,sha256=X4TH3OvcVZfOveSbF9WW8uXb4U_G7ZSnCERc7VYAqkc,95
163
163
  machineconfig/scripts/linux/z_ls,sha256=ATZtu0ccN3AKvAOxkwLq1xgQjJ3en5byEWJ3Q8afnNg,3340
164
164
  machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
- machineconfig/scripts/python/choose_wezterm_theme.py,sha256=xCDLLJKlYNOQ0tOZ4cgkBN5hTPGn-0llkyupmoN2rb8,3320
166
- machineconfig/scripts/python/cloud_copy.py,sha256=NjUOKztK5zHzK9krTPgyZCCVohooZNF48EGJ96kfIVw,8547
165
+ machineconfig/scripts/python/choose_wezterm_theme.py,sha256=fDx0cdtsCOCiuiZAHSG9S5ECcgkxSoUdclpU6wdtuC8,3321
166
+ machineconfig/scripts/python/cloud_copy.py,sha256=d3gBSPBCtNCRDANpzUoCJBM3kHBarwizyZo8dkL_BXQ,8553
167
167
  machineconfig/scripts/python/cloud_manager.py,sha256=MAVOKqXGxnlMaQGEv6k-q_PrgN0at6J8qQDhPiH2lI8,3488
168
- machineconfig/scripts/python/cloud_mount.py,sha256=l2vi_j3OvhACv249slXqQbYzP8df4vTwganov_uRL1E,6802
169
- machineconfig/scripts/python/cloud_repo_sync.py,sha256=cNznrOoy-kuTdcxBx1T8EipMDvmT-frq4IV5EosuVmE,9941
168
+ machineconfig/scripts/python/cloud_mount.py,sha256=jG-TCznzQQQOacXZ84LZnMT2jPn0Jro7Ddw6w4Er908,6799
169
+ machineconfig/scripts/python/cloud_repo_sync.py,sha256=pVDdOL5gI7ewLq_Fsi9KP1Hxo8uf9NPFGVg_91n170g,9981
170
170
  machineconfig/scripts/python/cloud_sync.py,sha256=RfgrEPGg_LrIaY3hfLDHsK8blrZvyPsoN66X0Z3WeCw,3859
171
- machineconfig/scripts/python/croshell.py,sha256=6i9wUuTbbp0Miu2ZKMNyVsV4XLgkJ5YNdQkLHya2ECs,9510
171
+ machineconfig/scripts/python/croshell.py,sha256=GP9hrGqtbvS_DBVI6qRDX6V90W9lPRpcZUb3mPnGMBQ,9630
172
172
  machineconfig/scripts/python/devops.py,sha256=vqZCRVLbzwkT-uDBQKgWmFtMV-ayF7GNgdz9OlrhziQ,6202
173
- machineconfig/scripts/python/devops_add_identity.py,sha256=FmwI3MYm5_9bIP21OffwmyOhilLnCbCbjD8KzPJIR_E,4067
174
- machineconfig/scripts/python/devops_add_ssh_key.py,sha256=dcU3WqyJpEJLGK6CNUUGswo4PsZamXGYyt_vTiNOCjA,6950
175
- machineconfig/scripts/python/devops_backup_retrieve.py,sha256=_nSNkCrJ0a99KjWQg-2Q6eLQ3xPyaxJrUmoXpnJXzEg,5564
173
+ machineconfig/scripts/python/devops_add_identity.py,sha256=Bw7dJf5QM2YzFR65X14LRia8GlJSVwFrb0KToI-enEg,4068
174
+ machineconfig/scripts/python/devops_add_ssh_key.py,sha256=C6UFYD0L3istfz08uJGWkeePHyy95oqvkxseCcZe9o4,6951
175
+ machineconfig/scripts/python/devops_backup_retrieve.py,sha256=-Upfex0UKxBbSg1b5PP77cqQcr8a5a0RzSScMXb1BNY,5597
176
176
  machineconfig/scripts/python/devops_devapps_install.py,sha256=mF6neipqc2zv7-fZ9iWgX_oWZBrxiizU5vWctXtyKMM,9633
177
- machineconfig/scripts/python/devops_update_repos.py,sha256=XZRV0_V_eKWph3fVtExKAayXhG6-svGu9UmJOh5yF-U,8066
178
- machineconfig/scripts/python/dotfile.py,sha256=miL8mQH2AqPdnHSz0Cxa7qQavaOmzTD9DAF66H2PRzA,2259
179
- machineconfig/scripts/python/fire_agents.py,sha256=8zdJb-bfG29X4MHi71FbGq2_K1D5W9prlEf_B1GzfDY,9038
180
- machineconfig/scripts/python/fire_agents_help_launch.py,sha256=vTQWEm1TZEEtI6f_I0ZxLsfZY7YWwcdDvJs4GBgmrsE,6127
177
+ machineconfig/scripts/python/devops_update_repos.py,sha256=c5qBc9cuTGDEqDHufkjDT4d_vvJsswv3tlqk9MAulYk,8063
178
+ machineconfig/scripts/python/dotfile.py,sha256=1a4THWmfGXiJHjWGFf1Qbp6vrMEGIkonIofOcUVic90,2260
179
+ machineconfig/scripts/python/fire_agents.py,sha256=hj-4MzSVtMvDK-74hQJAhp2Laq53lPO5FwdYVH9L3mg,9057
180
+ machineconfig/scripts/python/fire_agents_help_launch.py,sha256=sTdjNz2pDinDMMjUAMN7OqH-KAUeHh6Aihr_zUvtM6k,6128
181
181
  machineconfig/scripts/python/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
182
182
  machineconfig/scripts/python/fire_agents_load_balancer.py,sha256=QPiCbQq9j5REHStPdYqQcGNkz_rp5CjotqOpMY3v5TM,2099
183
- machineconfig/scripts/python/fire_jobs.py,sha256=g3MZsk_DqQc78jArEcEbjmgcRZRRea16TGieT_UuuM4,16643
183
+ machineconfig/scripts/python/fire_jobs.py,sha256=YqW-xnLDaa7obQQ2Vs4V9Wup7dzd18A519xwcbAzfQY,16676
184
184
  machineconfig/scripts/python/fire_jobs_args_helper.py,sha256=TfCKSExGZhYrZ6JmXIHsd0wpNSWcKeLeRh9gFR3FG-M,4330
185
- machineconfig/scripts/python/fire_jobs_layout_helper.py,sha256=_cx6ZnWezes-s13HXyKiI16vj9gF-Mpo_OF4StDQfFs,3222
185
+ machineconfig/scripts/python/fire_jobs_layout_helper.py,sha256=lVqAglZSI3vmvGi9_71fNlsWpgMPXGCdpJwPUsoSXwM,3230
186
186
  machineconfig/scripts/python/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
- machineconfig/scripts/python/ftpx.py,sha256=WQ-6Z043q3yQOgWQV9g-R5QjouilWC0grOc6hydvbvg,9914
187
+ machineconfig/scripts/python/ftpx.py,sha256=VyvfdSa6ee0bMMG24HtBk7ooYeYSZuDUOJ7IkgJkdaU,9920
188
188
  machineconfig/scripts/python/get_zellij_cmd.py,sha256=e35-18hoXM9N3PFbvbizfkNY_-63iMicieWE3TbGcCQ,576
189
189
  machineconfig/scripts/python/gh_models.py,sha256=3BLfW25mBRiPO5VKtVm-nMlKLv-PaZDw7mObajq6F6M,5538
190
- machineconfig/scripts/python/mount_nfs.py,sha256=8DlspWhg82BFlbADLNivLhZV5hhRPu7NXKhMcu_VnKs,3316
190
+ machineconfig/scripts/python/mount_nfs.py,sha256=fTvP2pXgkU82-yc8he_WGI7_trXWEb7H5nsPfN9lsGs,3317
191
191
  machineconfig/scripts/python/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
192
- machineconfig/scripts/python/mount_ssh.py,sha256=Mr1KiiiZzQZJ3su3bW1zBi6UQTSVtTnBmJUVMAAYemI,2235
192
+ machineconfig/scripts/python/mount_ssh.py,sha256=rGY2pgtlnWMi0Rrge1aCdjtfbULrj2cyaStDoX-y2w4,2236
193
193
  machineconfig/scripts/python/onetimeshare.py,sha256=bmGsNnskym5OWfIhpOfZG5jq3m89FS0a6dF5Sb8LaZM,2539
194
194
  machineconfig/scripts/python/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
195
- machineconfig/scripts/python/repos.py,sha256=Ek4OzIsn7hnLpOCHDayEN6cPlBoMLy8w1MQ2Jr7aEJQ,7227
196
- machineconfig/scripts/python/repos_helper_record.py,sha256=LJQcUIOsWqM7jfdqmmxthkVgusndbUNWNoYXbdgz5qU,10931
195
+ machineconfig/scripts/python/repos.py,sha256=yaoUKJNq_xnXk8-2unH4OvoP5gw7sYR9ha2ajm76SBE,7451
196
+ machineconfig/scripts/python/repos_helper_clone.py,sha256=xW5YZEoNt3k7h9NIULhUhOnh53-B63eiXF2FjOl1IKQ,5535
197
+ machineconfig/scripts/python/repos_helper_record.py,sha256=YEEQORfEiLddOIIgePo5eEkyQUFruFg3kc8npMvRL-o,10927
197
198
  machineconfig/scripts/python/repos_helper_update.py,sha256=AYyKIB7eQ48yoYmFjydIhRI1lV39TBv_S4_LCa-oKuQ,11042
198
199
  machineconfig/scripts/python/scheduler.py,sha256=7IBjMMOHMkklcWzYwz93EH9XzbJ5uPqU03bJ_lYbRNo,3083
199
200
  machineconfig/scripts/python/snapshot.py,sha256=aDvKeoniZaeTSNv9zWBUajaj2yagAxVdfuvO1_tgq5Y,1026
200
- machineconfig/scripts/python/start_slidev.py,sha256=WA-BRlGA-Ikei0smEYL14rGnf9ajk4DqTa-4Y9Ht-DY,4526
201
+ machineconfig/scripts/python/start_slidev.py,sha256=rcvXI5WMYHOqHm90_V8JMnlosFAmakI8591izn-Mq-M,4527
201
202
  machineconfig/scripts/python/start_terminals.py,sha256=pVf-Qmymevzr0xhDu9um9E0-kSRX8MdDupvGyTMv2Mc,6206
202
203
  machineconfig/scripts/python/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
203
204
  machineconfig/scripts/python/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
204
205
  machineconfig/scripts/python/wifi_conn.py,sha256=2FJ4srVthGHsy3KSXpvndAyVkNO8n_XeSgVRnd_PjZA,15576
205
- machineconfig/scripts/python/wsl_windows_transfer.py,sha256=RfSf5SJejnqrg36YfXSwu52ceEW77uNP4WC6QQUyRTA,3650
206
+ machineconfig/scripts/python/wsl_windows_transfer.py,sha256=ziq-LrTisXgD_gfZ-Bdx_qunB1jnb4Tmzsp2tKrmK1Q,3651
206
207
  machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
208
  machineconfig/scripts/python/ai/generate_files.py,sha256=Vfjgd0skJu-WTgqUxmOVFzaNMfSFBaFmY5oGGVY7MZY,2860
208
- machineconfig/scripts/python/ai/mcinit.py,sha256=QkTPmhyl9K5BJgQkvXVvOm-tsYSN0YCoNl3vndo6rok,5489
209
- machineconfig/scripts/python/ai/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
210
- machineconfig/scripts/python/ai/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
211
- machineconfig/scripts/python/ai/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
212
- machineconfig/scripts/python/ai/configs/.gemini/settings.json,sha256=hv0POw6ySh8vukLd2Zebt7CH4Aiw1W26ge-Tl1fxgoQ,2301
213
- machineconfig/scripts/python/ai/instructions/python/dev.instructions.md,sha256=eKgTj1Nv11DHvvjUKqSi-DhyLwpVTfWl1x__d256baw,4481
214
- machineconfig/scripts/python/ai/prompts/allLintersAndTypeCheckers.prompt.md,sha256=0YO5BvqKMxoB6Xs4MR4dv3g7iLgviUc_JoqXdvfxXqY,46
215
- machineconfig/scripts/python/ai/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
209
+ machineconfig/scripts/python/ai/mcinit.py,sha256=23YsdZlQ3YpmRAhj4LgLdeNGH5BobNmBJHwF3f4og90,2618
216
210
  machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=hkzP1b92aWPL_qFv5iIoQEXrIbWGI3ZSwsZ83CL1Ios,1976
211
+ machineconfig/scripts/python/ai/solutions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
+ machineconfig/scripts/python/ai/solutions/_shared.py,sha256=QRT4Doe8aW8ULYq9OrlAIX2nVOLhwXdVuubkgnnSpgU,244
213
+ machineconfig/scripts/python/ai/solutions/generic.py,sha256=dUSbqkEIYe27JZsJF_qEGcvr-ak8CpJ7lTGvAQS2MGk,1311
214
+ machineconfig/scripts/python/ai/solutions/claude/claude.py,sha256=tVMdaOL_9jC1nvfPsJs9WRkPPNa2tQVyq4vxdpOPK6k,343
215
+ machineconfig/scripts/python/ai/solutions/cline/cline.py,sha256=3nYdEmdk76sYerEvImEDi3Qi-n94ExFkg20HttI7iCc,446
216
+ machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py,sha256=spuPpENX_lZIBiANQq9eTxefoPBE2Ao_LEY16ZCaUQY,1890
217
+ machineconfig/scripts/python/ai/solutions/copilot/privacy.md,sha256=QeEU3P1tVBeGB9apH2o4jdV-Co85CXmVmHJTMgrIqdY,156
218
+ machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
219
+ machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
220
+ machineconfig/scripts/python/ai/solutions/copilot/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
221
+ machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=eKgTj1Nv11DHvvjUKqSi-DhyLwpVTfWl1x__d256baw,4481
222
+ machineconfig/scripts/python/ai/solutions/copilot/prompts/allLintersAndTypeCheckers.prompt.md,sha256=0YO5BvqKMxoB6Xs4MR4dv3g7iLgviUc_JoqXdvfxXqY,46
223
+ machineconfig/scripts/python/ai/solutions/copilot/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
224
+ machineconfig/scripts/python/ai/solutions/crush/crush.json,sha256=2hhWLBtAroKO0dboksWIIV6s5XISDgzSMkPg8L9hSK4,5652
225
+ machineconfig/scripts/python/ai/solutions/crush/crush.py,sha256=-Oxny7iaAPrR_vjRSzPXf1rPfx5lmKETaLrrqFApoGE,829
226
+ machineconfig/scripts/python/ai/solutions/crush/privacy.md,sha256=X0YXyzP5UWete_yAiSIpD7KAyCSTUBDGpNDF-RFH-o8,108
227
+ machineconfig/scripts/python/ai/solutions/cursor/cursors.py,sha256=cc9pmB_yEeiyei8p5PvKowyit3dfUy7YhTwaaYkLyQg,468
228
+ machineconfig/scripts/python/ai/solutions/gemini/gemini.py,sha256=xqnLBOIB4Nb-3pqDICp83VkWuQfUBFHoDTEEn-3_jHw,712
229
+ machineconfig/scripts/python/ai/solutions/gemini/settings.json,sha256=hv0POw6ySh8vukLd2Zebt7CH4Aiw1W26ge-Tl1fxgoQ,2301
230
+ machineconfig/scripts/python/ai/solutions/kilocode/privacy.md,sha256=oKOXnfFOdUuMlKwVf5MqeqCc24hZcjKE_e1MEXpijJI,117
231
+ machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1dNzkUCS_vCX_fy2TisRtfg8DXH-D4N1iUVU,99
232
+ machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
217
233
  machineconfig/scripts/python/archive/im2text.py,sha256=WLyic89vxi_pqQMzo-MOrGf39JEZjCdvDrXYUMVvZNY,1163
218
234
  machineconfig/scripts/python/archive/tmate_conn.py,sha256=BiZQmYabl4K4-mbOpcb_R1JzYfEwxuAnk5FOciqGHFo,1231
219
235
  machineconfig/scripts/python/archive/tmate_start.py,sha256=Hp7xv32u-fRuCG_f-Cy6qg0VemoaPOP-Pxs_gsFYcyg,1518
220
236
  machineconfig/scripts/python/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
- machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=U74O75g0QWh1P6JJZlU26XD2mSRdZJz-T1aUN9yZhH4,4875
222
- machineconfig/scripts/python/helpers/helpers2.py,sha256=TU1sA0GKNXHXT1_0y8piBLT_BeXfk0uBmkmUeyVYj58,7295
223
- machineconfig/scripts/python/helpers/helpers4.py,sha256=SFYfxRleEq3gIbffIxFM8d1Ra5zNheUuTIOi2iBsqlE,7708
237
+ machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=GA-bxXouUmknk9fyQAsPT-Xl3RG9-yBed71a2tu9Pig,4914
238
+ machineconfig/scripts/python/helpers/helpers2.py,sha256=ZdqeF1MLlaBRwoqsQAqnHi4b8rW0byFCBnbyCrPKkoA,7336
239
+ machineconfig/scripts/python/helpers/helpers4.py,sha256=goOD5Rt09Sz9xe5GGFDlHwzR2LEc7bXWYXHw4QMLGbs,7709
224
240
  machineconfig/scripts/python/helpers/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
225
- machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=c4IkoVQMGkO-D00-q2YE6Jvte39jDHsOBr2sr0c7y5Q,5331
241
+ machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=39Q3XV8Zx0Y6_iWUtbwDIQI8riqLPSZ008zjqx-Gd-g,5328
226
242
  machineconfig/scripts/windows/choose_wezterm_theme.ps1,sha256=LiXJ0a4LKjb6E-oH_bAg6DjegV4SqDUdiMp_svGCFlI,95
227
243
  machineconfig/scripts/windows/cloud_copy.ps1,sha256=llTFhN2uInZTcoZYZuuhJcf5Ifo5MF226I5MpOzvc3A,82
228
244
  machineconfig/scripts/windows/cloud_mount.ps1,sha256=wSQO5II8DbqktexRIuI-RUn8kVCEk-SWT7imZqd7Qdk,82
@@ -378,39 +394,39 @@ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=m0KplQ3RwezZGRf
378
394
  machineconfig/setup_windows/web_shortcuts/ssh.ps1,sha256=Tj9axEugJE7I3AQ0w1eUGLPb8ufME5jvU5S7VUjlLJE,424
379
395
  machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
380
396
  machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1,sha256=JsQfGAMkvirhiUmBNOifMlbum2PfHSs0-Akgj-J-WZw,3177
381
- machineconfig/setup_windows/wt_and_pwsh/install_nerd_fonts.py,sha256=QBnyqzMl5imDUiCvj5keP2HL4uXMIkGllpqPwJnnsQM,4706
382
- machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=77mFot76k0CsWtVufQ1K1AfL6vf_QoyG3JRhUigxwyI,6115
397
+ machineconfig/setup_windows/wt_and_pwsh/install_nerd_fonts.py,sha256=o9K7QMIw1cBdMxLQsOk64MAy1YgNNhPRYura8cdTLXI,4707
398
+ machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=rZZJamy3YxAeJhdMIFR6IWtjgn1u1HUdbk1J24NtryE,6116
383
399
  machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
- machineconfig/utils/code.py,sha256=1uB7NnswsTkv8rjctducqHIi78oSW39AfhnipJrN2fo,4458
385
- machineconfig/utils/installer.py,sha256=OA2xkARcTTGGNpGiguzvjzB99SsLLfbPnBIh2krOJS0,11939
386
- machineconfig/utils/io_save.py,sha256=iC1YTH0MOlBS8bWUB8Xhdl4CG_bEKQ3OVwMohdCOazI,3145
387
- machineconfig/utils/links.py,sha256=5rDQ6Id-vTtJRFwOWX8xZDXIOR5lY0DgLy0HpxIKLhk,10247
388
- machineconfig/utils/notifications.py,sha256=xG2b4NYNBtVq_kTR3gwdl3hrH1LRgRSpGegZ-BfWjdw,9299
400
+ machineconfig/utils/accessories.py,sha256=6vw2C8QEroNRjHDcLC7clKlIWjUX5cJXb_65KN8wZTg,2484
401
+ machineconfig/utils/code.py,sha256=pKPHInKgXJWeACVbxuE7sMdYeZCbNttaYCsfonGhFfc,4464
402
+ machineconfig/utils/installer.py,sha256=_sjaIqqHN-7n3mYD-iOIli6Bn2792EjOwE-JC528Qfo,11936
403
+ machineconfig/utils/io.py,sha256=6LuQMT7CG26atx5_0P30Ru0zHgLwuvpKHfZLUWIjS-U,2873
404
+ machineconfig/utils/links.py,sha256=riNUrG8aGElRszdOPOic4M2AyOcpdcth_-y8JEiZpJ4,10253
405
+ machineconfig/utils/notifications.py,sha256=vvdsY5IX6XEiILTnt5lNyHxhCi0ljdGX2T_67VRfrG4,9009
389
406
  machineconfig/utils/options.py,sha256=wCP1oN-UFl8CbcCfJ7Orw_Ghy2ZKqNLiolzCGeRVfuk,8535
390
- machineconfig/utils/path.py,sha256=csRyffpWYY5-sqeQCZyWi_z4b295EAztEmZWyvFYRW8,8012
391
- machineconfig/utils/path_reduced.py,sha256=kYCxYyC5tNN5u3LlzDKuhBFAK5hHAGeTUNf2lpU2PRY,52513
392
- machineconfig/utils/procs.py,sha256=NlQWOTIGpqqDaqoPhlqAC6VVU8MxSwHB5QgpmhbkCnU,11380
407
+ machineconfig/utils/path_extended.py,sha256=jqkVr_leG6mQsDBG84Hu0SjMPtJ7jxODryi85c45jXE,52518
408
+ machineconfig/utils/path_helper.py,sha256=tULlUJY58VaZfEmqoW3HVjiz7GLEAA9ReZ1moyo01qA,8013
409
+ machineconfig/utils/procs.py,sha256=-Se3lKCVX-j8BMhczzO8xXIR_SHLeiTcaRI0AToHDHo,11385
410
+ machineconfig/utils/scheduler.py,sha256=bUHDviS_HE9_6LaA1k9Nnfz5rr2FJIfrk5qO2FJ-oUs,15119
393
411
  machineconfig/utils/scheduling.py,sha256=8xjeoR_D5QHT0d7299Mgsj6JUbvkE_PX_pWq3myi658,11184
394
412
  machineconfig/utils/source_of_truth.py,sha256=GnjcVkKm11RyZFHGnPbne5YDEBYoZ5yryBNkpfGC7O4,854
395
- machineconfig/utils/ssh.py,sha256=1FTu1joRciyioQ-KSn_IeZYsyOt1KIGHXS81fjBPY9U,21090
396
- machineconfig/utils/terminal.py,sha256=k3xoMwJPGvmaeL9CxEIwrcQjRNN6EnJItoIIxXrUY8c,12258
413
+ machineconfig/utils/ssh.py,sha256=zkNUGeijrdoZYkp56DDC8m8LFqPmxQCDNTv5Ns5B7rk,21096
414
+ machineconfig/utils/terminal.py,sha256=IXYhZ5a0qA6X9CdMT9S7IEKQtJXrDzmiDUGd4C85-oE,12436
397
415
  machineconfig/utils/upgrade_packages.py,sha256=H96zVJEWXJW07nh5vhjuSCrPtXGqoUb7xeJsFYYdmCI,3330
398
- machineconfig/utils/utils2.py,sha256=wVgzJsXvJb5lEyeWKzAlOJC4dAh42RO_Elm3mU76TyQ,2973
399
- machineconfig/utils/utils5.py,sha256=s2NFUBcm4Jeuet8sUC7WKGSrYT4BnqTog39bsynXLik,15166
400
- machineconfig/utils/ve.py,sha256=Qbpg6iu5kFI_IdVe7p_UvAw55O0MYQGs8oC4AdI0fpw,2764
416
+ machineconfig/utils/ve.py,sha256=qSUnRto6NI4-Hru0tuz4YzCZzaWAce5Xc__DV0sxsrc,2397
401
417
  machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
402
418
  machineconfig/utils/ai/generate_file_checklist.py,sha256=HVPSKM5ko17e_x1rHZ8XATaUKUVo4gtlSYGKbGd7Mh0,2834
403
419
  machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
404
420
  machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqjZxU_3nXx2CA-qKbQgP3I,26232
405
421
  machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
406
- machineconfig/utils/installer_utils/installer_abc.py,sha256=UaHmSHBfXH9XFKYaTC3bpifDe77ljY-6v9WvqzlvUYE,5177
407
- machineconfig/utils/installer_utils/installer_class.py,sha256=QKSV-p4yw8YkU3zEPSLQx1ZusP7ezGKMeSSzoMW2ir4,20351
422
+ machineconfig/utils/installer_utils/installer_abc.py,sha256=iB1_PZLQGouCdEA8bixdB4kZAQ2OnPqZeRcwaf4LzuI,5178
423
+ machineconfig/utils/installer_utils/installer_class.py,sha256=2kuj3HpIuCo7a-yCWc3sT-1788IALpFti0BGPFU6NzU,20348
408
424
  machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=CCs5ebomW1acKWZRpv9dyDzM-W6pwvVplikcutE2D8I,2339
409
425
  machineconfig/utils/schemas/installer/installer_types.py,sha256=iAzcALc9z_FAQE9iuGHfX6Z0B1_n3Gt6eC0d6heYik0,599
410
426
  machineconfig/utils/schemas/layouts/layout_types.py,sha256=OmiOX9xtakPz4l6IobWnpFHpbn95fitEE9q0YL1WxjQ,617
411
427
  machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
412
- machineconfig-3.3.dist-info/METADATA,sha256=Gzfjq1J46rsE8WyAMXGnQh3qT8cO6d36K8Y2wj6vfKk,7048
413
- machineconfig-3.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
414
- machineconfig-3.3.dist-info/entry_points.txt,sha256=nBemaVdIfKeDNH11op15aSDIqP_nWxas8JSm0XFoidc,1023
415
- machineconfig-3.3.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
416
- machineconfig-3.3.dist-info/RECORD,,
428
+ machineconfig-3.5.dist-info/METADATA,sha256=0FCRbanj5qPkifFEhI8LO8XmOFloF2jqHNsRX6SQ7bU,6963
429
+ machineconfig-3.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
430
+ machineconfig-3.5.dist-info/entry_points.txt,sha256=nBemaVdIfKeDNH11op15aSDIqP_nWxas8JSm0XFoidc,1023
431
+ machineconfig-3.5.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
432
+ machineconfig-3.5.dist-info/RECORD,,
@@ -1,95 +0,0 @@
1
- from __future__ import annotations
2
-
3
- from typing import Any, Union, Optional, Mapping
4
- from pathlib import Path
5
- import json
6
- import pickle
7
- import configparser
8
- import toml
9
- import yaml
10
-
11
-
12
- PathLike = Union[str, Path]
13
-
14
-
15
- def _ensure_parent(path: PathLike) -> Path:
16
- path_obj = Path(path)
17
- path_obj.parent.mkdir(parents=True, exist_ok=True)
18
- return path_obj
19
-
20
-
21
- def save_pickle(obj: Any, path: PathLike, verbose: bool = False) -> Path:
22
- path_obj = _ensure_parent(path)
23
- with open(path_obj, "wb") as fh:
24
- pickle.dump(obj, fh, protocol=pickle.HIGHEST_PROTOCOL)
25
- if verbose:
26
- print(f"Saved pickle -> {path_obj}")
27
- return Path(path_obj)
28
-
29
-
30
- def save_json(obj: Any, path: PathLike, indent: Optional[int] = None, verbose: bool = False) -> Path:
31
- path_obj = _ensure_parent(path)
32
- with open(path_obj, "w", encoding="utf-8") as fh:
33
- json.dump(obj, fh, indent=indent, ensure_ascii=False)
34
- fh.write("\n")
35
- if verbose:
36
- print(f"Saved json -> {path_obj}")
37
- return Path(path_obj)
38
-
39
-
40
- def save_toml(obj: Mapping[str, Any], path: PathLike, verbose: bool = False) -> Path:
41
- path_obj = _ensure_parent(path)
42
- with open(path_obj, "w", encoding="utf-8") as fh:
43
- toml.dump(obj, fh)
44
- if verbose:
45
- print(f"Saved toml -> {path_obj}")
46
- return Path(path_obj)
47
-
48
-
49
- def save_yaml(obj: Any, path: PathLike, verbose: bool = False) -> Path:
50
- path_obj = _ensure_parent(path)
51
- with open(path_obj, "w", encoding="utf-8") as fh:
52
- yaml.safe_dump(obj, fh, sort_keys=False)
53
- if verbose:
54
- print(f"Saved yaml -> {path_obj}")
55
- return Path(path_obj)
56
-
57
-
58
- def save_ini(path: PathLike, obj: Mapping[str, Mapping[str, Any]], verbose: bool = False) -> Path:
59
- cp = configparser.ConfigParser()
60
- for section, values in obj.items():
61
- cp[section] = {str(k): str(v) for k, v in values.items()}
62
- path_obj = _ensure_parent(path)
63
- with open(path_obj, "w", encoding="utf-8") as fh:
64
- cp.write(fh)
65
- if verbose:
66
- print(f"Saved ini -> {path_obj}")
67
- return Path(path_obj)
68
-
69
-
70
- class Save:
71
- """
72
-
73
- Provides static methods for common serialization formats while ensuring
74
- parent directories exist and returning a `P` path object.
75
- """
76
-
77
- @staticmethod
78
- def pickle(obj: Any, path: PathLike, verbose: bool = False, **_kwargs: Any) -> Path:
79
- return save_pickle(obj=obj, path=path, verbose=verbose)
80
-
81
- @staticmethod
82
- def json(obj: Any, path: PathLike, indent: Optional[int] = None, verbose: bool = False, **_kwargs: Any) -> Path:
83
- return save_json(obj=obj, path=path, indent=indent, verbose=verbose)
84
-
85
- @staticmethod
86
- def toml(obj: Mapping[str, Any], path: PathLike, verbose: bool = False, **_kwargs: Any) -> Path:
87
- return save_toml(obj=obj, path=path, verbose=verbose)
88
-
89
- @staticmethod
90
- def yaml(obj: Any, path: PathLike, verbose: bool = False, **_kwargs: Any) -> Path:
91
- return save_yaml(obj=obj, path=path, verbose=verbose)
92
-
93
- @staticmethod
94
- def ini(obj: Mapping[str, Mapping[str, Any]], path: PathLike, verbose: bool = False, **_kwargs: Any) -> Path:
95
- return save_ini(path=path, obj=obj, verbose=verbose)