machineconfig 8.12__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 (273) 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 +45 -21
  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} +69 -45
  81. machineconfig/scripts/python/helpers/helpers_devops/run_script.py +197 -0
  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 +49 -29
  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 +79 -37
  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 +73 -22
  187. machineconfig/utils/ssh_utils/abc.py +1 -1
  188. machineconfig/utils/ssh_utils/copy_from_here.py +2 -2
  189. machineconfig/utils/ssh_utils/utils.py +2 -2
  190. machineconfig/utils/ssh_utils/wsl.py +107 -170
  191. machineconfig/utils/ssh_utils/wsl_helper.py +217 -0
  192. machineconfig/utils/upgrade_packages.py +4 -8
  193. {machineconfig-8.12.dist-info → machineconfig-8.45.dist-info}/METADATA +29 -22
  194. {machineconfig-8.12.dist-info → machineconfig-8.45.dist-info}/RECORD +249 -211
  195. machineconfig/jobs/installer/check_installations.py +0 -248
  196. machineconfig/jobs/scripts/bash_scripts/mint_keyboard_shortcuts.sh +0 -30
  197. machineconfig/profile/backup.toml +0 -49
  198. machineconfig/profile/mapper.toml +0 -263
  199. machineconfig/scripts/python/helpers_devops/cli_config.py +0 -105
  200. machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +0 -89
  201. machineconfig/scripts/python/helpers_devops/cli_data.py +0 -25
  202. machineconfig/scripts/python/helpers_devops/cli_repos.py +0 -208
  203. machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py +0 -80
  204. machineconfig/scripts/python/helpers_devops/run_script.py +0 -168
  205. machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.bash +0 -3
  206. machineconfig/scripts/python/helpers_navigator/__init__.py +0 -20
  207. machineconfig/scripts/python/helpers_navigator/command_detail.py +0 -44
  208. machineconfig/scripts/python/helpers_navigator/command_tree.py +0 -620
  209. machineconfig/scripts/python/helpers_network/ssh_add_identity.py +0 -116
  210. machineconfig/scripts/python/helpers_network/ssh_add_ssh_key.py +0 -153
  211. machineconfig/scripts/python/helpers_network/ssh_debug_linux.py +0 -391
  212. machineconfig/scripts/python/helpers_network/ssh_debug_windows.py +0 -338
  213. machineconfig/scripts/python/helpers_repos/entrypoint.py +0 -77
  214. machineconfig/setup_mac/ssh/openssh_setup.sh +0 -114
  215. machineconfig/setup_windows/ssh/add-sshkey.ps1 +0 -29
  216. machineconfig/setup_windows/ssh/openssh-server.ps1 +0 -37
  217. machineconfig/utils/options_tv.py +0 -119
  218. machineconfig/utils/tst.py +0 -20
  219. /machineconfig/{scripts/python/helpers_agents → jobs/installer/checks}/__init__.py +0 -0
  220. /machineconfig/scripts/python/ai/{solutions/_shared.py → utils/shared.py} +0 -0
  221. /machineconfig/scripts/python/{helpers_agents/agentic_frameworks → graph}/__init__.py +0 -0
  222. /machineconfig/scripts/python/{helpers_cloud → helpers}/__init__.py +0 -0
  223. /machineconfig/scripts/python/{env_manager → helpers/helper_env}/__init__.py +0 -0
  224. /machineconfig/scripts/python/{env_manager → helpers/helper_env}/path_manager_backend.py +0 -0
  225. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_agents}/__init__.py +0 -0
  226. /machineconfig/scripts/python/{helpers_devops → helpers/helpers_agents/agentic_frameworks}/__init__.py +0 -0
  227. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_crush.json +0 -0
  228. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_help_search.py +0 -0
  229. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_helper_types.py +0 -0
  230. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_load_balancer.py +0 -0
  231. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/configs/aichat/config.yaml +0 -0
  232. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/configs/aider/.aider.conf.yml +0 -0
  233. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/configs/copilot/config.yml +0 -0
  234. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/configs/crush/crush.json +0 -0
  235. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/configs/gemini/settings.json +0 -0
  236. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/privacy/privacy.py +0 -0
  237. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/templates/prompt.txt +0 -0
  238. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/templates/template.ps1 +0 -0
  239. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/templates/template.sh +0 -0
  240. /machineconfig/scripts/python/{helpers_devops/themes → helpers/helpers_cloud}/__init__.py +0 -0
  241. /machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/cloud_helpers.py +0 -0
  242. /machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/helpers5.py +0 -0
  243. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_croshell}/__init__.py +0 -0
  244. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/crosh.py +0 -0
  245. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/pomodoro.py +0 -0
  246. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/viewer.py +0 -0
  247. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/viewer_template.py +0 -0
  248. /machineconfig/scripts/python/{helpers_network → helpers/helpers_devops}/__init__.py +0 -0
  249. /machineconfig/scripts/python/{helpers_sessions → helpers/helpers_devops/themes}/__init__.py +0 -0
  250. /machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/themes/choose_pwsh_theme.ps1 +0 -0
  251. /machineconfig/scripts/python/{helpers_devops/themes/choose_starship_theme.ps1 → helpers/helpers_fire_command/__init__.py} +0 -0
  252. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/cloud_manager.py +0 -0
  253. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/f.py +0 -0
  254. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/file_wrangler.py +0 -0
  255. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/fire_jobs_args_helper.py +0 -0
  256. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/fire_jobs_streamlit_helper.py +0 -0
  257. /machineconfig/scripts/python/{helpers_msearch → helpers/helpers_msearch}/__init__.py +0 -0
  258. /machineconfig/scripts/python/{helpers_navigator → helpers/helpers_navigator}/search_bar.py +0 -0
  259. /machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/mount_nfs.py +0 -0
  260. /machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/mount_nw_drive.py +0 -0
  261. /machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/onetimeshare.py +0 -0
  262. /machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/wifi_conn.py +0 -0
  263. /machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/clone.py +0 -0
  264. /machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/repo_analyzer_1.py +0 -0
  265. /machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/sync.py +0 -0
  266. /machineconfig/scripts/python/helpers/{ast_search.py → helpers_search/ast_search.py} +0 -0
  267. /machineconfig/scripts/python/helpers/{qr_code.py → helpers_search/qr_code.py} +0 -0
  268. /machineconfig/scripts/python/helpers/{repo_rag.py → helpers_search/repo_rag.py} +0 -0
  269. /machineconfig/scripts/python/helpers/{symantic_search.py → helpers_search/symantic_search.py} +0 -0
  270. /machineconfig/scripts/python/{helpers_utils → helpers/helpers_utils}/pdf.py +0 -0
  271. {machineconfig-8.12.dist-info → machineconfig-8.45.dist-info}/WHEEL +0 -0
  272. {machineconfig-8.12.dist-info → machineconfig-8.45.dist-info}/entry_points.txt +0 -0
  273. {machineconfig-8.12.dist-info → machineconfig-8.45.dist-info}/top_level.txt +0 -0
@@ -1,620 +0,0 @@
1
- """
2
- Command tree widget for displaying command hierarchy.
3
- """
4
-
5
- from textual.widgets import Tree
6
- from machineconfig.scripts.python.helpers_navigator.data_models import CommandInfo
7
-
8
-
9
- class CommandTree(Tree[CommandInfo]):
10
- """Tree widget for displaying command hierarchy."""
11
-
12
- def on_mount(self) -> None:
13
- """Build the command tree when mounted."""
14
- self.show_root = False
15
- self.guide_depth = 2
16
- self._build_command_tree()
17
-
18
- def _build_command_tree(self) -> None:
19
- """Build the hierarchical command structure."""
20
-
21
- # Main entry points
22
- devops_node = self.root.add("🛠️ devops - DevOps operations", data=CommandInfo(
23
- name="devops",
24
- description="DevOps operations",
25
- command="devops",
26
- is_group=True,
27
- module_path="machineconfig.scripts.python.devops"
28
- ))
29
-
30
- # devops subcommands
31
- devops_node.add("📦 install - Install essential packages", data=CommandInfo(
32
- name="install",
33
- description="Install essential packages",
34
- command="devops install",
35
- parent="devops",
36
- help_text="devops install --which <packages> --group <group> --interactive"
37
- ))
38
-
39
- repos_node = devops_node.add("📁 repos - Manage git repositories", data=CommandInfo(
40
- name="repos",
41
- description="Manage git repositories",
42
- command="devops repos",
43
- parent="devops",
44
- is_group=True,
45
- module_path="machineconfig.scripts.python.devops_helpers.cli_repos"
46
- ))
47
-
48
- # repos subcommands
49
- repos_node.add("🚀 push - Push changes across repositories", data=CommandInfo(
50
- name="push",
51
- description="Push changes across repositories",
52
- command="devops repos push",
53
- parent="repos",
54
- help_text="devops repos push --directory <dir> --recursive --no-sync"
55
- ))
56
-
57
- repos_node.add("⬇️ pull - Pull changes across repositories", data=CommandInfo(
58
- name="pull",
59
- description="Pull changes across repositories",
60
- command="devops repos pull",
61
- parent="repos",
62
- help_text="devops repos pull --directory <dir> --recursive --no-sync"
63
- ))
64
-
65
- repos_node.add("💾 commit - Commit changes across repositories", data=CommandInfo(
66
- name="commit",
67
- description="Commit changes across repositories",
68
- command="devops repos commit",
69
- parent="repos",
70
- help_text="devops repos commit --directory <dir> --recursive --no-sync"
71
- ))
72
-
73
- repos_node.add("🔄 sync - Sync changes across repositories", data=CommandInfo(
74
- name="sync",
75
- description="Pull, commit, and push changes across repositories",
76
- command="devops repos sync",
77
- parent="repos",
78
- help_text="devops repos sync --directory <dir> --recursive --no-sync"
79
- ))
80
-
81
- mirror_node = repos_node.add("🔄 mirror - Manage repository specifications", data=CommandInfo(
82
- name="mirror",
83
- description="Manage repository specifications and syncing",
84
- command="devops repos mirror",
85
- parent="repos",
86
- is_group=True
87
- ))
88
-
89
- mirror_node.add("📝 capture - Record repositories into repos.json", data=CommandInfo(
90
- name="capture",
91
- description="Record repositories into a repos.json specification",
92
- command="devops repos mirror capture",
93
- parent="mirror",
94
- help_text="devops repos mirror capture --directory <dir> --cloud <cloud>"
95
- ))
96
-
97
- mirror_node.add("📥 clone - Clone repositories from repos.json", data=CommandInfo(
98
- name="clone",
99
- description="Clone repositories described by repos.json",
100
- command="devops repos mirror clone",
101
- parent="mirror",
102
- help_text="devops repos mirror clone --directory <dir> --cloud <cloud>"
103
- ))
104
-
105
- mirror_node.add("🔀 checkout-to-commit - Check out specific commits", data=CommandInfo(
106
- name="checkout-to-commit",
107
- description="Check out specific commits listed in specification",
108
- command="devops repos mirror checkout-to-commit",
109
- parent="mirror",
110
- help_text="devops repos mirror checkout-to-commit --directory <dir> --cloud <cloud>"
111
- ))
112
-
113
- mirror_node.add("🔀 checkout-to-branch - Check out to main branch", data=CommandInfo(
114
- name="checkout-to-branch",
115
- description="Check out to the main branch defined in specification",
116
- command="devops repos mirror checkout-to-branch",
117
- parent="mirror",
118
- help_text="devops repos mirror checkout-to-branch --directory <dir> --cloud <cloud>"
119
- ))
120
-
121
- repos_node.add("🔍 analyze - Analyze repositories", data=CommandInfo(
122
- name="analyze",
123
- description="Analyze repositories in directory",
124
- command="devops repos analyze",
125
- parent="repos",
126
- help_text="devops repos analyze --directory <dir>"
127
- ))
128
-
129
- repos_node.add("🔐 secure - Securely sync git repository", data=CommandInfo(
130
- name="secure",
131
- description="Securely sync git repository to/from cloud with encryption",
132
- command="devops repos secure",
133
- parent="repos",
134
- help_text="devops repos secure <path> --cloud <cloud> --encrypt --decrypt"
135
- ))
136
-
137
- repos_node.add("🎬 viz - Visualize repository activity", data=CommandInfo(
138
- name="viz",
139
- description="Visualize repository activity using Gource",
140
- command="devops repos viz",
141
- parent="repos",
142
- help_text="devops repos viz --repo <path> --output <file> --resolution <res> --seconds-per-day <spd>"
143
- ))
144
-
145
- repos_node.add("🧹 cleanup - Clean repository directories", data=CommandInfo(
146
- name="cleanup",
147
- description="Clean repository directories from cache files",
148
- command="devops repos cleanup",
149
- parent="repos",
150
- help_text="devops repos cleanup --repo <path> --recursive"
151
- ))
152
-
153
- # config subcommands
154
- config_node = devops_node.add("⚙️ config - Configuration management", data=CommandInfo(
155
- name="config",
156
- description="Configuration subcommands",
157
- command="devops config",
158
- parent="devops",
159
- is_group=True
160
- ))
161
-
162
- config_node.add("🔗 private - Manage private configuration files", data=CommandInfo(
163
- name="private",
164
- description="Manage private configuration files",
165
- command="devops config private",
166
- parent="config",
167
- help_text="devops config private --method <symlink|copy> --on-conflict <action> --which <items> --interactive"
168
- ))
169
-
170
- config_node.add("🔗 public - Manage public configuration files", data=CommandInfo(
171
- name="public",
172
- description="Manage public configuration files",
173
- command="devops config public",
174
- parent="config",
175
- help_text="devops config public --method <symlink|copy> --on-conflict <action> --which <items> --interactive"
176
- ))
177
-
178
- config_node.add("🔗 dotfile - Manage dotfiles", data=CommandInfo(
179
- name="dotfile",
180
- description="Manage dotfiles",
181
- command="devops config dotfile",
182
- parent="config",
183
- help_text="devops config dotfile <file> --overwrite --dest <destination>"
184
- ))
185
-
186
- config_node.add("🔗 shell - Configure shell profile", data=CommandInfo(
187
- name="shell",
188
- description="Configure your shell profile",
189
- command="devops config shell",
190
- parent="config",
191
- help_text="devops config shell --which <default|nushell>"
192
- ))
193
-
194
- config_node.add("🔗 starship-theme - Select starship theme", data=CommandInfo(
195
- name="starship-theme",
196
- description="Select starship prompt theme",
197
- command="devops config starship-theme",
198
- parent="config",
199
- help_text="devops config starship-theme"
200
- ))
201
-
202
- config_node.add("🔗 pwsh-theme - Configure PowerShell theme", data=CommandInfo(
203
- name="pwsh-theme",
204
- description="Select powershell prompt theme",
205
- command="devops config pwsh-theme",
206
- parent="config",
207
- help_text="devops config pwsh-theme"
208
- ))
209
-
210
- config_node.add("🔗 copy-assets - Copy asset files", data=CommandInfo(
211
- name="copy-assets",
212
- description="Copy asset files from library to machine",
213
- command="devops config copy-assets",
214
- parent="config",
215
- help_text="devops config copy-assets <scripts|settings|both>"
216
- ))
217
-
218
- # data subcommands
219
- data_node = devops_node.add("💾 data - Data operations", data=CommandInfo(
220
- name="data",
221
- description="Data subcommands",
222
- command="devops data",
223
- parent="devops",
224
- is_group=True
225
- ))
226
-
227
- data_node.add("💾 backup - Backup data", data=CommandInfo(
228
- name="backup",
229
- description="Backup data",
230
- command="devops data backup",
231
- parent="data",
232
- help_text="devops data backup"
233
- ))
234
-
235
- data_node.add("📥 retrieve - Retrieve data", data=CommandInfo(
236
- name="retrieve",
237
- description="Retrieve data from backup",
238
- command="devops data retrieve",
239
- parent="data",
240
- help_text="devops data retrieve"
241
- ))
242
-
243
- # network subcommands
244
- network_node = devops_node.add("🔐 network - Network operations", data=CommandInfo(
245
- name="network",
246
- description="Network subcommands",
247
- command="devops network",
248
- parent="devops",
249
- is_group=True
250
- ))
251
-
252
- network_node.add("📡 share-terminal - Share terminal via web", data=CommandInfo(
253
- name="share-terminal",
254
- description="Share terminal via web browser",
255
- command="devops network share-terminal",
256
- parent="network",
257
- help_text="devops network share-terminal"
258
- ))
259
-
260
- network_node.add("🌐 share-server - Start local/global server", data=CommandInfo(
261
- name="share-server",
262
- description="Start local/global server to share files/folders via web browser",
263
- command="devops network share-server",
264
- parent="network",
265
- help_text="devops network share-server"
266
- ))
267
-
268
- network_node.add("📡 install-ssh-server - Install SSH server", data=CommandInfo(
269
- name="install-ssh-server",
270
- description="Install SSH server",
271
- command="devops network install-ssh-server",
272
- parent="network",
273
- help_text="devops network install-ssh-server"
274
- ))
275
-
276
- network_node.add("🔑 add-ssh-key - Add SSH public key", data=CommandInfo(
277
- name="add-ssh-key",
278
- description="Add SSH public key to this machine",
279
- command="devops network add-ssh-key",
280
- parent="network",
281
- help_text="devops network add-ssh-key --path <file> --choose --value --github <username>"
282
- ))
283
-
284
- network_node.add("🗝️ add-ssh-identity - Add SSH identity", data=CommandInfo(
285
- name="add-ssh-identity",
286
- description="Add SSH identity (private key) to this machine",
287
- command="devops network add-ssh-identity",
288
- parent="network",
289
- help_text="devops network add-ssh-identity"
290
- ))
291
-
292
- network_node.add("📌 show-address - Show computer addresses", data=CommandInfo(
293
- name="show-address",
294
- description="Show this computer addresses on network",
295
- command="devops network show-address",
296
- parent="network",
297
- help_text="devops network show-address"
298
- ))
299
-
300
- network_node.add("🐛 debug-ssh - Debug SSH connection", data=CommandInfo(
301
- name="debug-ssh",
302
- description="Debug SSH connection",
303
- command="devops network debug-ssh",
304
- parent="network",
305
- help_text="devops network debug-ssh"
306
- ))
307
-
308
- # self subcommands
309
- self_node = devops_node.add("🔄 self - SELF operations", data=CommandInfo(
310
- name="self",
311
- description="SELF operations subcommands",
312
- command="devops self",
313
- parent="devops",
314
- is_group=True
315
- ))
316
-
317
- self_node.add("🔄 update - Update essential repos", data=CommandInfo(
318
- name="update",
319
- description="Update essential repos",
320
- command="devops self update",
321
- parent="self",
322
- help_text="devops self update"
323
- ))
324
-
325
- self_node.add("🤖 interactive - Interactive configuration", data=CommandInfo(
326
- name="interactive",
327
- description="Interactive configuration of machine",
328
- command="devops self interactive",
329
- parent="self",
330
- help_text="devops self interactive"
331
- ))
332
-
333
- self_node.add("📊 status - Machine status", data=CommandInfo(
334
- name="status",
335
- description="Status of machine, shell profile, apps, symlinks, dotfiles, etc.",
336
- command="devops self status",
337
- parent="self",
338
- help_text="devops self status"
339
- ))
340
-
341
- self_node.add("📋 clone - Clone machineconfig", data=CommandInfo(
342
- name="clone",
343
- description="Clone machineconfig locally and incorporate to shell profile",
344
- command="devops self clone",
345
- parent="self",
346
- help_text="devops self clone"
347
- ))
348
-
349
- self_node.add("📚 navigate - Navigate command structure", data=CommandInfo(
350
- name="navigate",
351
- description="Navigate command structure with TUI",
352
- command="devops self navigate",
353
- parent="self",
354
- help_text="devops self navigate"
355
- ))
356
-
357
- self_node.add("📚 readme - Render README markdown", data=CommandInfo(
358
- name="readme",
359
- description="Render readme markdown in terminal",
360
- command="devops self readme",
361
- parent="self",
362
- help_text="devops self readme"
363
- ))
364
-
365
- self_node.add("🐍 python - Run Python command/file", data=CommandInfo(
366
- name="python",
367
- description="Run python command/file in the machineconfig environment",
368
- command="devops self python",
369
- parent="self",
370
- help_text="devops self python <path> --command"
371
- ))
372
-
373
- # fire command - now a typer sub-app
374
- fire_node = self.root.add("🔥 fire - Fire jobs execution", data=CommandInfo(
375
- name="fire",
376
- description="Fire and manage jobs",
377
- command="fire",
378
- is_group=True,
379
- module_path="machineconfig.scripts.python.fire_jobs"
380
- ))
381
-
382
- fire_node.add("🔥 fire - Execute Python/Shell scripts", data=CommandInfo(
383
- name="fire",
384
- description="Execute Python scripts, shell scripts, or PowerShell scripts with Fire",
385
- command="fire",
386
- parent="fire",
387
- help_text="fire <path> [function] --ve <env> --cmd --interactive --debug --choose_function --loop --jupyter --submit_to_cloud --remote --module --streamlit --environment <env> --holdDirectory --PathExport --git_pull --optimized --zellij_tab <name> --watch"
388
- ))
389
-
390
- # agents command
391
- agents_node = self.root.add("🤖 agents - AI Agents management", data=CommandInfo(
392
- name="agents",
393
- description="AI Agents management subcommands",
394
- command="agents",
395
- is_group=True,
396
- module_path="machineconfig.scripts.python.agents"
397
- ))
398
-
399
- agents_node.add("✨ create - Create AI agent", data=CommandInfo(
400
- name="create",
401
- description="Create a new AI agent",
402
- command="agents create",
403
- parent="agents",
404
- help_text="agents create --context-path <file> --keyword-search <term> --filename-pattern <pattern> --agent <type> --machine <target> --model <model> --provider <provider> --prompt <text> --prompt-path <file> --job-name <name> --tasks-per-prompt <num> --separate-prompt-from-context --output-path <file> --agents-dir <dir>"
405
- ))
406
-
407
- agents_node.add("📦 collect - Collect agent data", data=CommandInfo(
408
- name="collect",
409
- description="Collect agent data",
410
- command="agents collect",
411
- parent="agents",
412
- help_text="agents collect --agent-dir <dir> --output-path <file> --separator <sep>"
413
- ))
414
-
415
- agents_node.add("📝 make-template - Create agent template", data=CommandInfo(
416
- name="make-template",
417
- description="Create a template for fire agents",
418
- command="agents make-template",
419
- parent="agents",
420
- help_text="agents make-template"
421
- ))
422
-
423
- agents_node.add("⚙️ make-config - Initialize AI configurations", data=CommandInfo(
424
- name="make-config",
425
- description="Initialize AI configurations in the current repository",
426
- command="agents make-config",
427
- parent="agents",
428
- help_text="agents make-config"
429
- ))
430
-
431
- agents_node.add("📝 make-todo - Generate todo markdown", data=CommandInfo(
432
- name="make-todo",
433
- description="Generate a markdown file listing all Python files in the repo",
434
- command="agents make-todo",
435
- parent="agents",
436
- help_text="agents make-todo"
437
- ))
438
-
439
- agents_node.add("🔗 make-symlinks - Create repo symlinks", data=CommandInfo(
440
- name="make-symlinks",
441
- description="Create symlinks to the current repo in ~/code_copies/",
442
- command="agents make-symlinks",
443
- parent="agents",
444
- help_text="agents make-symlinks"
445
- ))
446
-
447
- # sessions command
448
- sessions_node = self.root.add("🖥️ sessions - Session layouts management", data=CommandInfo(
449
- name="sessions",
450
- description="Layouts management subcommands",
451
- command="sessions",
452
- is_group=True,
453
- module_path="machineconfig.scripts.python.sessions"
454
- ))
455
-
456
- sessions_node.add("✨ create-from-function - Create layout from function", data=CommandInfo(
457
- name="create-from-function",
458
- description="Create layout from function",
459
- command="sessions create-from-function",
460
- parent="sessions",
461
- help_text="sessions create-from-function"
462
- ))
463
-
464
- sessions_node.add("▶️ run - Run session layout", data=CommandInfo(
465
- name="run",
466
- description="Run session layout",
467
- command="sessions run",
468
- parent="sessions",
469
- help_text="sessions run --layout-path <file> --max-tabs <num> --max-layouts <num> --sleep-inbetween <sec> --monitor --parallel --kill-upon-completion --choose <names> --choose-interactively"
470
- ))
471
-
472
- sessions_node.add("⚖️ balance-load - Balance load", data=CommandInfo(
473
- name="balance-load",
474
- description="Balance load across sessions",
475
- command="sessions balance-load",
476
- parent="sessions",
477
- help_text="sessions balance-load --layout-path <file> --max-thresh <num> --thresh-type <number|weight> --breaking-method <moreLayouts|combineTabs> --output-path <file>"
478
- ))
479
-
480
- sessions_node.add("💀 kill-process - Kill processes", data=CommandInfo(
481
- name="kill-process",
482
- description="Choose a process to kill interactively",
483
- command="sessions kill-process",
484
- parent="sessions",
485
- help_text="sessions kill-process"
486
- ))
487
-
488
- # cloud command
489
- cloud_node = self.root.add("☁️ cloud - Cloud storage operations", data=CommandInfo(
490
- name="cloud",
491
- description="Cloud storage operations",
492
- command="cloud",
493
- is_group=True,
494
- module_path="machineconfig.scripts.python.cloud"
495
- ))
496
-
497
- cloud_node.add("🔄 sync - Synchronize with cloud", data=CommandInfo(
498
- name="sync",
499
- description="Synchronize files/folders between local and cloud storage",
500
- command="cloud sync",
501
- parent="cloud",
502
- help_text="cloud sync <source> <target> --cloud <provider> --recursive --exclude <patterns>"
503
- ))
504
-
505
- cloud_node.add("📤 copy - Copy to/from cloud", data=CommandInfo(
506
- name="copy",
507
- description="Copy files/folders to/from cloud storage",
508
- command="cloud copy",
509
- parent="cloud",
510
- help_text="cloud copy <source> <target> --cloud <provider> --recursive --exclude <patterns>"
511
- ))
512
-
513
- cloud_node.add("🔗 mount - Mount cloud storage", data=CommandInfo(
514
- name="mount",
515
- description="Mount cloud storage as local drive",
516
- command="cloud mount",
517
- parent="cloud",
518
- help_text="cloud mount <remote> <mount_point> --cloud <provider> --daemon --allow-other"
519
- ))
520
-
521
- # croshell command
522
- self.root.add("🔄 croshell - Cross-shell command execution", data=CommandInfo(
523
- name="croshell",
524
- description="Cross-shell command execution",
525
- command="croshell",
526
- is_group=False,
527
- module_path="machineconfig.scripts.python.croshell",
528
- help_text="croshell --python --fzf --ve <env> --profile <profile> --read <file> --jupyter --streamlit --visidata"
529
- ))
530
-
531
- # ftpx command
532
- self.root.add("📡 ftpx - File transfer utility", data=CommandInfo(
533
- name="ftpx",
534
- description="File transfer utility through SSH",
535
- command="ftpx",
536
- is_group=False,
537
- module_path="machineconfig.scripts.python.ftpx",
538
- help_text="ftpx <source> <target> --recursive --zipFirst --cloud"
539
- ))
540
-
541
- # utils command
542
- utils_node = self.root.add("🛠️ utils - Utility commands", data=CommandInfo(
543
- name="utils",
544
- description="Utility commands",
545
- command="utils",
546
- is_group=True,
547
- module_path="machineconfig.scripts.python.utils"
548
- ))
549
-
550
- utils_node.add("💀 kill-process - Kill processes", data=CommandInfo(
551
- name="kill-process",
552
- description="Choose a process to kill interactively",
553
- command="utils kill-process",
554
- parent="utils",
555
- help_text="utils kill-process --interactive"
556
- ))
557
-
558
- utils_node.add("📚 path - Navigate PATH variable", data=CommandInfo(
559
- name="path",
560
- description="Navigate PATH variable with TUI",
561
- command="utils path",
562
- parent="utils",
563
- help_text="utils path"
564
- ))
565
-
566
- utils_node.add("⬆️ upgrade-packages - Upgrade dependencies", data=CommandInfo(
567
- name="upgrade-packages",
568
- description="Upgrade project dependencies",
569
- command="utils upgrade-packages",
570
- parent="utils",
571
- help_text="utils upgrade-packages"
572
- ))
573
-
574
- utils_node.add("⬇️ download - Download file", data=CommandInfo(
575
- name="download",
576
- description="Download a file from a URL and optionally decompress it",
577
- command="utils download",
578
- parent="utils",
579
- help_text="utils download <url> --destination <path> --decompress"
580
- ))
581
-
582
- utils_node.add("🖥️ get-machine-specs - Get machine specifications", data=CommandInfo(
583
- name="get-machine-specs",
584
- description="Get machine specifications",
585
- command="utils get-machine-specs",
586
- parent="utils",
587
- help_text="utils get-machine-specs"
588
- ))
589
-
590
- utils_node.add("🚀 init-project - Initialize project", data=CommandInfo(
591
- name="init-project",
592
- description="Initialize a project with a uv virtual environment and install dev packages",
593
- command="utils init-project",
594
- parent="utils",
595
- help_text="utils init-project"
596
- ))
597
-
598
- utils_node.add("✏️ edit - Open file in editor", data=CommandInfo(
599
- name="edit",
600
- description="Open a file in the default editor",
601
- command="utils edit",
602
- parent="utils",
603
- help_text="utils edit <file>"
604
- ))
605
-
606
- utils_node.add("📄 pdf-merge - Merge PDF files", data=CommandInfo(
607
- name="pdf-merge",
608
- description="Merge two PDF files into one",
609
- command="utils pdf-merge",
610
- parent="utils",
611
- help_text="utils pdf-merge <file1> <file2> --output <file>"
612
- ))
613
-
614
- utils_node.add("� pdf-compress - Compress PDF file", data=CommandInfo(
615
- name="pdf-compress",
616
- description="Compress a PDF file",
617
- command="utils pdf-compress",
618
- parent="utils",
619
- help_text="utils pdf-compress <file> --output <file>"
620
- ))