machineconfig 5.68__py3-none-any.whl → 5.71__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 (34) hide show
  1. machineconfig/scripts/python/agents.py +35 -28
  2. machineconfig/scripts/python/croshell.py +1 -1
  3. machineconfig/scripts/python/devops.py +13 -7
  4. machineconfig/scripts/python/devops_helpers/cli_config.py +26 -14
  5. machineconfig/scripts/python/devops_helpers/cli_data.py +1 -1
  6. machineconfig/scripts/python/devops_helpers/cli_nw.py +14 -7
  7. machineconfig/scripts/python/devops_helpers/cli_repos.py +36 -18
  8. machineconfig/scripts/python/devops_helpers/cli_self.py +19 -11
  9. machineconfig/scripts/python/entry.py +5 -5
  10. machineconfig/scripts/python/ftpx.py +1 -1
  11. machineconfig/scripts/python/helper_navigator/main_app.py +10 -0
  12. machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_crush.py +2 -2
  13. machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_cursor_agents.py +2 -2
  14. machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_gemini.py +2 -2
  15. machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_qwen.py +2 -2
  16. machineconfig/scripts/python/helpers_fire/fire_agents_help_launch.py +2 -2
  17. machineconfig/scripts/python/helpers_fire/fire_agents_helper_types.py +2 -2
  18. machineconfig/scripts/python/interactive.py +3 -3
  19. machineconfig/scripts/python/nw/mount_nfs +1 -1
  20. machineconfig/scripts/python/nw/mount_nfs.py +3 -3
  21. machineconfig/scripts/python/nw/mount_ssh.py +3 -3
  22. machineconfig/scripts/python/nw/wsl_windows_transfer.py +2 -2
  23. machineconfig/scripts/python/repos_helpers/count_lines_frontend.py +1 -1
  24. machineconfig/scripts/python/sessions.py +9 -4
  25. machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
  26. machineconfig/setup_linux/web_shortcuts/interactive.sh +7 -7
  27. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +7 -7
  28. machineconfig/utils/installer_utils/installer.py +9 -8
  29. machineconfig/utils/ssh.py +1 -1
  30. {machineconfig-5.68.dist-info → machineconfig-5.71.dist-info}/METADATA +1 -1
  31. {machineconfig-5.68.dist-info → machineconfig-5.71.dist-info}/RECORD +34 -34
  32. {machineconfig-5.68.dist-info → machineconfig-5.71.dist-info}/WHEEL +0 -0
  33. {machineconfig-5.68.dist-info → machineconfig-5.71.dist-info}/entry_points.txt +0 -0
  34. {machineconfig-5.68.dist-info → machineconfig-5.71.dist-info}/top_level.txt +0 -0
@@ -5,23 +5,23 @@
5
5
  from pathlib import Path
6
6
  from typing import cast, Optional, get_args
7
7
  import typer
8
- from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import AGENTS, MATCHINE, MODEL, PROVIDER
8
+ from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import AGENTS, HOST, MODEL, PROVIDER
9
9
 
10
10
 
11
11
  def create(
12
- agent: AGENTS = typer.Option(default=..., help=f"Agent type. One of {', '.join(get_args(AGENTS)[:3])}"),
13
- machine: MATCHINE = typer.Option(default=..., help=f"Machine to run agents on. One of {', '.join(get_args(MATCHINE))}"),
14
- model: MODEL = typer.Option(default=..., help=f"Model to use (for crush agent). One of {', '.join(get_args(MODEL)[:3])}"),
15
- provider: PROVIDER = typer.Option(default=..., help=f"Provider to use (for crush agent). One of {', '.join(get_args(PROVIDER)[:3])}"),
16
- context_path: Optional[Path] = typer.Option(None, help="Path to the context file/folder, defaults to .ai/todo/"),
17
- separator: str = typer.Option("\n", help="Separator for context"),
18
- agent_load: int = typer.Option(13, help="Number of tasks per prompt"),
19
- prompt: Optional[str] = typer.Option(None, help="Prompt prefix as string"),
20
- prompt_path: Optional[Path] = typer.Option(None, help="Path to prompt file"),
21
- job_name: str = typer.Option("AI_Agents", help="Job name"),
22
- separate: bool = typer.Option(True, help="Keep prompt material in separate file to the context."),
23
- output_path: Optional[Path] = typer.Option(None, help="Path to write the layout.json file"),
24
- agents_dir: Optional[Path] = typer.Option(None, help="Directory to store agent files. If not provided, will be constructed automatically."),
12
+ agent: AGENTS = typer.Option(..., "--agents", "-a", help=f"Agent type. One of {', '.join(get_args(AGENTS)[:3])}"),
13
+ host: HOST = typer.Option(..., "--host", "-h", help=f"Machine to run agents on. One of {', '.join(get_args(HOST))}"),
14
+ model: MODEL = typer.Option(..., "--model", "-m", help=f"Model to use (for crush agent). One of {', '.join(get_args(MODEL)[:3])}"),
15
+ provider: PROVIDER = typer.Option(..., "--provider", "-p", help=f"Provider to use (for crush agent). One of {', '.join(get_args(PROVIDER)[:3])}"),
16
+ context_path: Optional[Path] = typer.Option(None, "--context-path", "-c", help="Path to the context file/folder, defaults to .ai/todo/"),
17
+ separator: str = typer.Option("\n", "--separator", "-s", help="Separator for context"),
18
+ agent_load: int = typer.Option(13, "--agent-load", "-al", help="Number of tasks per prompt"),
19
+ prompt: Optional[str] = typer.Option(None, "--prompt", "-P", help="Prompt prefix as string"),
20
+ prompt_path: Optional[Path] = typer.Option(None, "--prompt-path", "-pp", help="Path to prompt file"),
21
+ job_name: str = typer.Option("AI_Agents", "--job-name", "-j", help="Job name"),
22
+ separate: bool = typer.Option(True, "--separate", "-S", help="Keep prompt material in separate file to the context."),
23
+ output_path: Optional[Path] = typer.Option(None, "--output-path", "-o", help="Path to write the layout.json file"),
24
+ agents_dir: Optional[Path] = typer.Option(None, "--agents-dir", "-ad", help="Directory to store agent files. If not provided, will be constructed automatically."),
25
25
  ):
26
26
 
27
27
  from machineconfig.scripts.python.helpers_fire.fire_agents_help_launch import prep_agent_launch, get_agents_launch_layout
@@ -71,7 +71,7 @@ def create(
71
71
  shutil.rmtree(agents_dir)
72
72
  prep_agent_launch(repo_root=repo_root, agents_dir=agents_dir, prompts_material=prompt_material_re_splitted,
73
73
  keep_material_in_separate_file=separate,
74
- prompt_prefix=prompt_prefix, machine=machine, agent=agent_selected, model=model, provider=provider,
74
+ prompt_prefix=prompt_prefix, machine=host, agent=agent_selected, model=model, provider=provider,
75
75
  job_name=job_name)
76
76
  layoutfile = get_agents_launch_layout(session_root=agents_dir)
77
77
  regenerate_py_code = f"""
@@ -79,7 +79,7 @@ def create(
79
79
  agents create "{context_path_resolved}" \\
80
80
  --prompt-path "{prompt_path or ''}" \\
81
81
  --agent "{agent_selected}" \\
82
- --machine "{machine}" \\
82
+ --host "{host}" \\
83
83
  --job-name "{job_name}" \\
84
84
  --agent_load {agent_load} \\
85
85
  --separator "{separator}" \\
@@ -94,15 +94,15 @@ agents create "{context_path_resolved}" \\
94
94
 
95
95
 
96
96
  def collect(
97
- agent_dir: Path = typer.Argument(..., help="Path to the agent directory containing the prompts folder"),
98
- output_path: Path = typer.Argument(..., help="Path to write the concatenated material files"),
97
+ agent_dir: str = typer.Argument(..., help="Path to the agent directory containing the prompts folder"),
98
+ output_path: str = typer.Argument(..., help="Path to write the concatenated material files"),
99
99
  separator: str = typer.Option("\n", help="Separator to use when concatenating material files"),
100
100
  ) -> None:
101
101
  """Collect all material files from an agent directory and concatenate them."""
102
- if not agent_dir.exists() or not agent_dir.is_dir():
102
+ if not Path(agent_dir).exists() or not Path(agent_dir).is_dir():
103
103
  raise typer.BadParameter(f"Agent directory does not exist or is not a directory: {agent_dir}")
104
104
 
105
- prompts_dir = agent_dir / "prompts"
105
+ prompts_dir = Path(agent_dir) / "prompts"
106
106
  if not prompts_dir.exists():
107
107
  raise typer.BadParameter(f"Prompts directory not found: {prompts_dir}")
108
108
 
@@ -129,8 +129,8 @@ def collect(
129
129
  result = separator.join(concatenated_content)
130
130
 
131
131
  # Write to output file
132
- output_path.parent.mkdir(parents=True, exist_ok=True)
133
- output_path.write_text(result, encoding="utf-8")
132
+ Path(output_path).parent.mkdir(parents=True, exist_ok=True)
133
+ Path(output_path).write_text(result, encoding="utf-8")
134
134
  typer.echo(f"Concatenated material written to {output_path}")
135
135
 
136
136
 
@@ -163,7 +163,7 @@ def get_app():
163
163
  agents_app = typer.Typer(help="🤖 AI Agents management subcommands", no_args_is_help=True)
164
164
  sep = "\n"
165
165
  agents_full_help = f"""
166
- Create agents layout file, ready to run.
166
+ [c] Create agents layout file, ready to run.
167
167
  {sep}
168
168
  PROVIDER options: {', '.join(get_args(PROVIDER))}
169
169
  {sep}
@@ -172,13 +172,19 @@ AGENT options: {', '.join(get_args(AGENTS))}
172
172
  MODEL options: {sep.join(get_args(MODEL))}
173
173
  """
174
174
  agents_app.command("create", no_args_is_help=True, help=agents_full_help)(create)
175
- agents_app.command("collect", no_args_is_help=True, help="Collect all agent materials into a single file.")(collect)
176
- agents_app.command("make-template", no_args_is_help=False, help="Create a template for fire agents")(template)
177
- agents_app.command("make-config", no_args_is_help=False, help="Initialize AI configurations in the current repository")(init_config)
175
+ agents_app.command("c", no_args_is_help=True, help="Create agents layout file, ready to run.", hidden=True)(create)
176
+ agents_app.command("collect", no_args_is_help=True, help="[T] Collect all agent materials into a single file.")(collect)
177
+ agents_app.command("T", no_args_is_help=True, help="Collect all agent materials into a single file.", hidden=True)(collect)
178
+ agents_app.command("make-template", no_args_is_help=False, help="[t] Create a template for fire agents")(template)
179
+ agents_app.command("t", no_args_is_help=False, help="Create a template for fire agents", hidden=True)(template)
180
+ agents_app.command("make-config", no_args_is_help=False, help="[g] Initialize AI configurations in the current repository")(init_config)
181
+ agents_app.command("g", no_args_is_help=False, help="Initialize AI configurations in the current repository", hidden=True)(init_config)
178
182
  from machineconfig.scripts.python.ai.generate_files import main
179
- agents_app.command("make-todo", no_args_is_help=True, help="Generate a markdown file listing all Python files in the repo")(main)
183
+ agents_app.command("make-todo", no_args_is_help=True, help="[d] Generate a markdown file listing all Python files in the repo")(main)
184
+ agents_app.command("d", no_args_is_help=True, help="Generate a markdown file listing all Python files in the repo", hidden=True)(main)
180
185
  from machineconfig.scripts.python.ai.generate_files import create_symlink_command
181
- agents_app.command(name="make-symlinks", no_args_is_help=True, help="Create symlinks to the current repo in ~/code_copies/")(create_symlink_command)
186
+ agents_app.command(name="make-symlinks", no_args_is_help=True, help="[s] Create symlinks to the current repo in ~/code_copies/")(create_symlink_command)
187
+ agents_app.command(name="s", no_args_is_help=True, help="Create symlinks to the current repo in ~/code_copies/", hidden=True)(create_symlink_command)
182
188
  return agents_app
183
189
 
184
190
 
@@ -186,5 +192,6 @@ def main():
186
192
  agents_app = get_app()
187
193
  agents_app()
188
194
 
195
+
189
196
  if __name__ == "__main__": # pragma: no cover
190
197
  pass
@@ -150,7 +150,7 @@ from pathlib import Path
150
150
  else:
151
151
  console.print(Panel("❌ Could not determine the local machineconfig repo root. Please ensure the `REPO_ROOT` in `source_of_truth.py` is correctly set to the local path of the machineconfig repo, or do not use the `--local` flag.", title="Error", border_style="red"))
152
152
  return
153
- else: ve_line = "--with machineconfig[plot]>=5.67"
153
+ else: ve_line = """--with "machineconfig[plot]>=5.71" """
154
154
  fire_line = f"uv run --python 3.14 {ve_line} {interpreter} {interactivity} {profile} {str(pyfile)}"
155
155
 
156
156
  from machineconfig.utils.code import run_shell_script
@@ -12,20 +12,26 @@ import machineconfig.scripts.python.devops_helpers.cli_nw as cli_network
12
12
 
13
13
  def get_app():
14
14
  app = typer.Typer(help="🛠️ DevOps operations", no_args_is_help=True, add_completion=True)
15
- @app.command(no_args_is_help=True)
16
- def install( which: Optional[str] = typer.Option(None, "--which", "-w", help="Comma-separated list of program names to install."),
17
- group: Optional[str] = typer.Option(None, "--group", "-g", help="Groups names. A group is bundle of apps. See available groups when running interactively."),
15
+ def install(which: Optional[str] = typer.Argument(None, help="Comma-separated list of program names to install, or group name if --group flag is set."),
16
+ group: bool = typer.Option(False, "--group", "-g", help="Treat 'which' as a group name. A group is bundle of apps."),
18
17
  interactive: bool = typer.Option(False, "--interactive", "-ia", help="Interactive selection of programs to install."),
19
18
  ) -> None:
20
19
  """📦 Install essential packages"""
21
20
  import machineconfig.utils.installer_utils.installer as installer_entry_point
22
21
  installer_entry_point.main(which=which, group=group, interactive=interactive)
23
22
  _ = install
24
- app.add_typer(cli_repos.app, name="repos")
25
- app.add_typer(cli_config.config_apps, name="config")
23
+ app.command("install", no_args_is_help=True, help="🛠️ [i] Install essential packages")(install)
24
+ app.command("i", no_args_is_help=True, help="Install essential packages", hidden=True)(install)
25
+ app.add_typer(cli_repos.get_app(), name="repos")
26
+ app.add_typer(cli_repos.get_app(), name="r", hidden=True)
27
+ app.add_typer(cli_config.get_app(), name="config")
28
+ app.add_typer(cli_config.get_app(), name="c", hidden=True)
26
29
  app.add_typer(cli_data.app_data, name="data")
27
- app.add_typer(cli_self.cli_app, name="self")
28
- app.add_typer(cli_network.nw_apps, name="network")
30
+ app.add_typer(cli_data.app_data, name="d", hidden=True)
31
+ app.add_typer(cli_self.get_app(), name="self")
32
+ app.add_typer(cli_self.get_app(), name="s", hidden=True)
33
+ app.add_typer(cli_network.get_app(), name="network")
34
+ app.add_typer(cli_network.get_app(), name="n", hidden=True)
29
35
  return app
30
36
 
31
37
  def main():
@@ -4,10 +4,8 @@ from typing import Literal, Annotated, Optional
4
4
  from pathlib import Path
5
5
  import typer
6
6
 
7
- config_apps = typer.Typer(help="⚙️ Configuration subcommands", no_args_is_help=True)
8
7
 
9
8
 
10
- @config_apps.command(no_args_is_help=True)
11
9
  def private(method: Literal["symlink", "copy"] = typer.Option(..., "--method", "-m", help="Method to use for linking files"),
12
10
  on_conflict: Literal["throwError", "overwriteSelfManaged", "backupSelfManaged", "overwriteDefaultPath", "backupDefaultPath"] = typer.Option("throwError", "--on-conflict", "-o", help="Action to take on conflict"),
13
11
  which: Optional[str] = typer.Option(None, "--which", "-w", help="Specific items to process"),
@@ -16,7 +14,6 @@ def private(method: Literal["symlink", "copy"] = typer.Option(..., "--method", "
16
14
  import machineconfig.profile.create_links_export as create_links_export
17
15
  create_links_export.main_private_from_parser(method=method, on_conflict=on_conflict, which=which, interactive=interactive)
18
16
 
19
- @config_apps.command(no_args_is_help=True)
20
17
  def public(method: Literal["symlink", "copy"] = typer.Option(..., "--method", "-m", help="Method to use for setting up the config file."),
21
18
  on_conflict: Literal["throwError", "overwriteDefaultPath", "backupDefaultPath"] = typer.Option("throwError", "--on-conflict", "-o", help="Action to take on conflict"),
22
19
  which: Optional[str] = typer.Option(None, "--which", "-w", help="Specific items to process"),
@@ -25,7 +22,6 @@ def public(method: Literal["symlink", "copy"] = typer.Option(..., "--method", "-
25
22
  import machineconfig.profile.create_links_export as create_links_export
26
23
  create_links_export.main_public_from_parser(method=method, on_conflict=on_conflict, which=which, interactive=interactive)
27
24
 
28
- @config_apps.command(no_args_is_help=True)
29
25
  def dotfile(file: Annotated[str, typer.Argument(help="file/folder path.")],
30
26
  overwrite: Annotated[bool, typer.Option("--overwrite", "-o", help="Overwrite.")] = False,
31
27
  dest: Annotated[str, typer.Option("--dest", "-d", help="destination folder")] = "",
@@ -35,22 +31,19 @@ def dotfile(file: Annotated[str, typer.Argument(help="file/folder path.")],
35
31
  dotfile_module.main(file=file, overwrite=overwrite, dest=dest)
36
32
 
37
33
 
38
- @config_apps.command(no_args_is_help=False)
39
34
  def shell():
40
35
  """🔗 Configure your shell profile."""
41
36
  from machineconfig.profile.create_shell_profile import create_default_shell_profile
42
37
  create_default_shell_profile()
43
38
 
44
- @config_apps.command(no_args_is_help=False)
45
39
  def path():
46
40
  """📚 NAVIGATE PATH variable with TUI"""
47
41
  from machineconfig.scripts.python import env_manager as navigator
48
42
  from pathlib import Path
49
43
  path = Path(navigator.__file__).resolve().parent.joinpath("path_manager_tui.py")
50
44
  from machineconfig.utils.code import run_shell_script
51
- run_shell_script(f"uv run --with machineconfig>=5.67,textual {path}")
45
+ run_shell_script(f"""uv run --with "machineconfig>=5.71,textual" {path}""")
52
46
 
53
- @config_apps.command(no_args_is_help=False)
54
47
  def pwsh_theme():
55
48
  """🔗 Select powershell prompt theme."""
56
49
  import machineconfig.scripts.python.devops_helpers.themes as themes
@@ -58,12 +51,31 @@ def pwsh_theme():
58
51
  import subprocess
59
52
  subprocess.run(["pwsh", "-File", str(file)])
60
53
 
61
- @config_apps.command(no_args_is_help=False)
62
54
  def copy_assets(which: Literal["scripts", "settings", "both"] = typer.Option(..., "--which", "-w", help="Which assets to copy")):
63
55
  """🔗 Copy asset files from library to machine."""
64
56
  import machineconfig.profile.create_helper as create_helper
65
- if which == "both":
66
- create_helper.copy_assets_to_machine(which="scripts")
67
- create_helper.copy_assets_to_machine(which="settings")
68
- else:
69
- create_helper.copy_assets_to_machine(which=which)
57
+ match which:
58
+ case "both":
59
+ create_helper.copy_assets_to_machine(which="scripts")
60
+ create_helper.copy_assets_to_machine(which="settings")
61
+ case _:
62
+ create_helper.copy_assets_to_machine(which=which)
63
+
64
+
65
+ def get_app():
66
+ config_apps = typer.Typer(help="⚙️ [c] configuration subcommands", no_args_is_help=True)
67
+ config_apps.command("private", no_args_is_help=True, help="🔗 [p] Manage private configuration files.")(private)
68
+ config_apps.command("p", no_args_is_help=True, help="Manage private configuration files.", hidden=True)(private)
69
+ config_apps.command("public", no_args_is_help=True, help="🔗 [u] Manage public configuration files.")(public)
70
+ config_apps.command("u", no_args_is_help=True, help="Manage public configuration files.", hidden=True)(public)
71
+ config_apps.command("dotfile", no_args_is_help=True, help="🔗 [d] Manage dotfiles.")(dotfile)
72
+ config_apps.command("d", no_args_is_help=True, help="Manage dotfiles.", hidden=True)(dotfile)
73
+ config_apps.command("shell", no_args_is_help=False, help="🔗 [s] Configure your shell profile.")(shell)
74
+ config_apps.command("s", no_args_is_help=False, help="Configure your shell profile.", hidden=True)(shell)
75
+ config_apps.command("path", no_args_is_help=False, help="📚 [a] NAVIGATE PATH variable with TUI")(path)
76
+ config_apps.command("a", no_args_is_help=False, help="NAVIGATE PATH variable with TUI", hidden=True)(path)
77
+ config_apps.command("pwsh-theme", no_args_is_help=False, help="🔗 [t] Select powershell prompt theme.")(pwsh_theme)
78
+ config_apps.command("t", no_args_is_help=True, help="Select powershell prompt theme.", hidden=True)(pwsh_theme)
79
+ config_apps.command("copy-assets", no_args_is_help=True, help="🔗 [c] Copy asset files from library to machine.")
80
+ config_apps.command("c", no_args_is_help=True, help="Copy asset files from library to machine.", hidden=True)(copy_assets)
81
+ return config_apps
@@ -1,7 +1,7 @@
1
1
 
2
2
  import typer
3
3
 
4
- app_data = typer.Typer(help="💾 Data subcommands", no_args_is_help=True)
4
+ app_data = typer.Typer(help="💾 [d] data subcommands", no_args_is_help=True)
5
5
 
6
6
  @app_data.command()
7
7
  def backup():
@@ -4,13 +4,8 @@ import machineconfig.scripts.python.devops_helpers.cli_share_server as cli_share
4
4
  import typer
5
5
  from typing import Optional
6
6
 
7
- nw_apps = typer.Typer(help="🔐 Network subcommands", no_args_is_help=True)
8
7
 
9
8
 
10
- nw_apps.command(name="share-terminal", help="📡 Share terminal via web browser")(cli_terminal.main)
11
- nw_apps.command(name="share-server", help="🌐 Start local/global server to share files/folders via web browser", no_args_is_help=True)(cli_share_server.main)
12
-
13
- @nw_apps.command()
14
9
  def install_ssh_server():
15
10
  """📡 SSH install server"""
16
11
  import platform
@@ -23,7 +18,6 @@ def install_ssh_server():
23
18
  from machineconfig.utils.code import run_shell_script
24
19
  run_shell_script(script=SSH_SERVER.read_text(encoding="utf-8"))
25
20
 
26
- @nw_apps.command(no_args_is_help=True)
27
21
  def add_ssh_key(path: Optional[str] = typer.Option(None, help="Path to the public key file"),
28
22
  choose: bool = typer.Option(False, "--choose", "-c", help="Choose from available public keys in ~/.ssh/*.pub"),
29
23
  value: bool = typer.Option(False, "--value", "-v", help="Paste the public key content manually"),
@@ -32,8 +26,21 @@ def add_ssh_key(path: Optional[str] = typer.Option(None, help="Path to the publi
32
26
  """🔑 SSH add pub key to this machine so its accessible by owner of corresponding private key."""
33
27
  import machineconfig.scripts.python.devops_helpers.devops_add_ssh_key as helper
34
28
  helper.main(pub_path=path, pub_choose=choose, pub_val=value, from_github=github)
35
- @nw_apps.command()
36
29
  def add_ssh_identity():
37
30
  """🗝️ SSH add identity (private key) to this machine"""
38
31
  import machineconfig.scripts.python.devops_helpers.devops_add_identity as helper
39
32
  helper.main()
33
+
34
+ def get_app():
35
+ nw_apps = typer.Typer(help="🔐 [n] Network subcommands", no_args_is_help=True)
36
+ nw_apps.command(name="share-terminal", help="📡 [t] Share terminal via web browser")(cli_terminal.main)
37
+ nw_apps.command(name="t", help="Share terminal via web browser", hidden=True)(cli_terminal.main)
38
+ nw_apps.command(name="share-server", help="🌐 [s] Start local/global server to share files/folders via web browser", no_args_is_help=True)(cli_share_server.main)
39
+ nw_apps.command(name="s", help="Start local/global server to share files/folders via web browser", hidden=True, no_args_is_help=True)(cli_share_server.main)
40
+ nw_apps.command(name="install-ssh-server", help="📡 [i] Install SSH server")(install_ssh_server)
41
+ nw_apps.command(name="i", help="Install SSH server", hidden=True)(install_ssh_server)
42
+ nw_apps.command(name="add-ssh-key", help="🔑 [k] Add SSH public key to this machine")(add_ssh_key)
43
+ nw_apps.command(name="k", help="Add SSH public key to this machine", hidden=True)(add_ssh_key)
44
+ nw_apps.command(name="add-ssh-identity", help="🗝️ [a] Add SSH identity (private key) to this machine")(add_ssh_identity)
45
+ nw_apps.command(name="a", help="Add SSH identity (private key) to this machine", hidden=True)(add_ssh_identity)
46
+ return nw_apps
@@ -11,24 +11,18 @@ import typer
11
11
  from machineconfig.scripts.python.helpers_repos.secure_repo import main as secure_repo_main
12
12
 
13
13
 
14
- app = typer.Typer(help="📁 Manage development repositories", no_args_is_help=True)
15
- sync_app = typer.Typer(help="🔄 Manage repository specifications and syncing", no_args_is_help=True)
16
- app.add_typer(sync_app, name="mirror", help="🔄 mirror repositories using saved specs")
17
-
18
14
  DirectoryArgument = Annotated[Optional[str], typer.Argument(help="📁 Directory containing repo(s).")]
19
15
  RecursiveOption = Annotated[bool, typer.Option("--recursive", "-r", help="🔍 Recurse into nested repositories.")]
20
16
  NoSyncOption = Annotated[bool, typer.Option("--no-sync", help="🚫 Disable automatic uv sync after pulls.")]
21
17
  CloudOption = Annotated[Optional[str], typer.Option("--cloud", "-c", help="☁️ Upload to or download from this cloud remote.")]
22
18
 
23
19
 
24
- @app.command(no_args_is_help=True)
25
20
  def push(directory: DirectoryArgument = None, recursive: RecursiveOption = False, no_sync: NoSyncOption = False) -> None:
26
21
  """🚀 Push changes across repositories."""
27
22
  from machineconfig.scripts.python.repos_helpers.entrypoint import git_operations
28
23
  git_operations(directory, pull=False, commit=False, push=True, recursive=recursive, no_sync=no_sync)
29
24
 
30
25
 
31
- @app.command(no_args_is_help=True)
32
26
  def pull(directory: DirectoryArgument = None, recursive: RecursiveOption = False, no_sync: NoSyncOption = False) -> None:
33
27
  """⬇️ Pull changes across repositories."""
34
28
  from machineconfig.scripts.python.repos_helpers.entrypoint import git_operations
@@ -36,7 +30,6 @@ def pull(directory: DirectoryArgument = None, recursive: RecursiveOption = False
36
30
  git_operations(directory, pull=True, commit=False, push=False, recursive=recursive, no_sync=no_sync)
37
31
 
38
32
 
39
- @app.command(no_args_is_help=True)
40
33
  def commit(directory: DirectoryArgument = None, recursive: RecursiveOption = False, no_sync: NoSyncOption = False) -> None:
41
34
  """💾 Commit changes across repositories."""
42
35
  from machineconfig.scripts.python.repos_helpers.entrypoint import git_operations
@@ -44,14 +37,12 @@ def commit(directory: DirectoryArgument = None, recursive: RecursiveOption = Fal
44
37
  git_operations(directory, pull=False, commit=True, push=False, recursive=recursive, no_sync=no_sync)
45
38
 
46
39
 
47
- @app.command(no_args_is_help=True)
48
40
  def sync(directory: DirectoryArgument = None, recursive: RecursiveOption = False, no_sync: NoSyncOption = False) -> None:
49
41
  """🔄 Pull, commit, and push changes across repositories."""
50
42
  from machineconfig.scripts.python.repos_helpers.entrypoint import git_operations
51
43
  git_operations(directory, pull=True, commit=True, push=True, recursive=recursive, no_sync=no_sync)
52
44
 
53
45
 
54
- @sync_app.command(no_args_is_help=True)
55
46
  def capture(directory: DirectoryArgument = None, cloud: CloudOption = None) -> None:
56
47
  """📝 Record repositories into a repos.json specification."""
57
48
  from machineconfig.scripts.python.repos_helpers.entrypoint import resolve_directory
@@ -65,7 +56,6 @@ def capture(directory: DirectoryArgument = None, cloud: CloudOption = None) -> N
65
56
  PathExtended(save_path).to_cloud(rel2home=True, cloud=cloud)
66
57
 
67
58
 
68
- @sync_app.command(no_args_is_help=True)
69
59
  def clone(directory: DirectoryArgument = None, cloud: CloudOption = None) -> None:
70
60
  """📥 Clone repositories described by a repos.json specification."""
71
61
  from machineconfig.scripts.python.repos_helpers.entrypoint import clone_from_specs
@@ -74,7 +64,6 @@ def clone(directory: DirectoryArgument = None, cloud: CloudOption = None) -> Non
74
64
  clone_from_specs(directory, cloud, checkout_branch_flag=False, checkout_commit_flag=False)
75
65
 
76
66
 
77
- @sync_app.command(name="checkout-to-commit", no_args_is_help=True)
78
67
  def checkout_command(directory: DirectoryArgument = None, cloud: CloudOption = None) -> None:
79
68
  """🔀 Check out specific commits listed in the specification."""
80
69
  from machineconfig.scripts.python.repos_helpers.entrypoint import clone_from_specs
@@ -83,14 +72,12 @@ def checkout_command(directory: DirectoryArgument = None, cloud: CloudOption = N
83
72
  clone_from_specs(directory, cloud, checkout_branch_flag=False, checkout_commit_flag=True)
84
73
 
85
74
 
86
- @sync_app.command(name="checkout-to-branch", no_args_is_help=True)
87
75
  def checkout_to_branch_command(directory: DirectoryArgument = None, cloud: CloudOption = None) -> None:
88
76
  """🔀 Check out to the main branch defined in the specification."""
89
77
  from machineconfig.scripts.python.repos_helpers.entrypoint import clone_from_specs
90
78
  clone_from_specs(directory, cloud, checkout_branch_flag=True, checkout_commit_flag=False)
91
79
 
92
80
 
93
- @app.command(no_args_is_help=True)
94
81
  def analyze(directory: DirectoryArgument = None) -> None:
95
82
  """📊 Analyze repository development over time."""
96
83
  repo_path = directory if directory is not None else "."
@@ -99,10 +86,6 @@ def analyze(directory: DirectoryArgument = None) -> None:
99
86
  analyze_repo_development(repo_path=repo_path)
100
87
 
101
88
 
102
- app.command(name="secure", no_args_is_help=True, help="🔐 Securely sync git repository to/from cloud with encryption")(secure_repo_main)
103
-
104
-
105
- @app.command(no_args_is_help=True)
106
89
  def viz(
107
90
  repo: str = typer.Option(Path.cwd().__str__(), "--repo", "-r", help="Path to git repository to visualize"),
108
91
  output_file: Optional[Path] = typer.Option(None, "--output", "-o", help="Output video file (e.g., output.mp4). If specified, gource will render to video."),
@@ -134,7 +117,7 @@ def viz(
134
117
  file_idle_time=file_idle_time, framerate=framerate, background_color=background_color,
135
118
  font_size=font_size, camera_mode=camera_mode)
136
119
 
137
- @app.command(no_args_is_help=True)
120
+
138
121
  def cleanup(repo: DirectoryArgument = None, recursive: RecursiveOption = False) -> None:
139
122
  """🧹 Clean repository directories from cache files."""
140
123
  if repo is None:
@@ -169,3 +152,38 @@ uv run --with cleanpy cleanpy .
169
152
  """
170
153
  from machineconfig.utils.code import run_shell_script
171
154
  run_shell_script(script)
155
+
156
+
157
+ def get_app():
158
+ repos_apps = typer.Typer(help="📁 [r] Manage development repositories", no_args_is_help=True)
159
+ mirror_app = typer.Typer(help="🔄 [m] Manage repository specifications and syncing", no_args_is_help=True)
160
+ repos_apps.add_typer(mirror_app, name="mirror", help="🔄 [m] mirror repositories using saved specs")
161
+ repos_apps.add_typer(mirror_app, name="m", help="mirror repositories using saved specs", hidden=True)
162
+
163
+ repos_apps.command(name="push", help="🚀 [p] Push changes across repositories")(push)
164
+ repos_apps.command(name="p", help="Push changes across repositories", hidden=True)(push)
165
+ repos_apps.command(name="pull", help="⬇️ [P] Pull changes across repositories")(pull)
166
+ repos_apps.command(name="P", help="Pull changes across repositories", hidden=True)(pull)
167
+ repos_apps.command(name="commit", help="💾 [c] Commit changes across repositories")(commit)
168
+ repos_apps.command(name="c", help="Commit changes across repositories", hidden=True)(commit)
169
+ repos_apps.command(name="sync", help="🔄 [s] Pull, commit, and push changes across repositories")(sync)
170
+ repos_apps.command(name="s", help="Pull, commit, and push changes across repositories", hidden=True)(sync)
171
+ repos_apps.command(name="analyze", help="📊 [a] Analyze repository development over time")(analyze)
172
+ repos_apps.command(name="a", help="Analyze repository development over time", hidden=True)(analyze)
173
+ repos_apps.command(name="secure", help="🔐 [s] Securely sync git repository to/from cloud with encryption")(secure_repo_main)
174
+ repos_apps.command(name="s", help="Securely sync git repository to/from cloud with encryption", hidden=True)(secure_repo_main)
175
+ repos_apps.command(name="viz", help="🎬 [v] Visualize repository activity using Gource")(viz)
176
+ repos_apps.command(name="v", help="Visualize repository activity using Gource", hidden=True)(viz)
177
+ repos_apps.command(name="cleanup", help="🧹 [n] Clean repository directories from cache files")(cleanup)
178
+ repos_apps.command(name="n", help="Clean repository directories from cache files", hidden=True)(cleanup)
179
+
180
+ mirror_app.command(name="capture", help="📝 [cap] Record repositories into a repos.json specification")(capture)
181
+ mirror_app.command(name="cap", help="Record repositories into a repos.json specification", hidden=True)(capture)
182
+ mirror_app.command(name="clone", help="📥 [clo] Clone repositories described by a repos.json specification")(clone)
183
+ mirror_app.command(name="clo", help="Clone repositories described by a repos.json specification", hidden=True)(clone)
184
+ mirror_app.command(name="checkout-to-commit", help="🔀 [ctc] Check out specific commits listed in the specification")(checkout_command)
185
+ mirror_app.command(name="ctc", help="Check out specific commits listed in the specification", hidden=True)(checkout_command)
186
+ mirror_app.command(name="checkout-to-branch", help="🔀 [ctb] Check out to the main branch defined in the specification")(checkout_to_branch_command)
187
+ mirror_app.command(name="ctb", help="Check out to the main branch defined in the specification", hidden=True)(checkout_to_branch_command)
188
+
189
+ return repos_apps
@@ -2,26 +2,20 @@
2
2
  import typer
3
3
  from typing import Optional
4
4
 
5
- cli_app = typer.Typer(help="🔄 SELF operations subcommands", no_args_is_help=True)
6
5
 
7
-
8
- @cli_app.command()
9
6
  def update():
10
7
  """🔄 UPDATE essential repos"""
11
8
  import machineconfig.scripts.python.devops_helpers.devops_update_repos as helper
12
9
  helper.main()
13
- @cli_app.command()
14
10
  def interactive():
15
11
  """🤖 INTERACTIVE configuration of machine."""
16
12
  from machineconfig.scripts.python.interactive import main
17
13
  main()
18
14
 
19
- @cli_app.command()
20
15
  def status():
21
16
  """📊 STATUS of machine, shell profile, apps, symlinks, dotfiles, etc."""
22
17
  import machineconfig.scripts.python.devops_helpers.devops_status as helper
23
18
  helper.main()
24
- @cli_app.command()
25
19
  def install():
26
20
  """📋 CLONE machienconfig locally and incorporate to shell profile for faster execution and nightly updates."""
27
21
  from machineconfig.utils.code import run_shell_script
@@ -31,21 +25,19 @@ def install():
31
25
  # main_public_from_parser()
32
26
  import platform
33
27
  if platform.system() == "Windows":
34
- run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=5.67""")
28
+ run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=5.71""")
35
29
  else:
36
- run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=5.67""")
30
+ run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=5.71""")
37
31
 
38
- @cli_app.command(no_args_is_help=False)
39
32
  def navigate():
40
33
  """📚 NAVIGATE command structure with TUI"""
41
34
  import machineconfig.scripts.python as navigator
42
35
  from pathlib import Path
43
36
  path = Path(navigator.__file__).resolve().parent.joinpath("devops_navigator.py")
44
37
  from machineconfig.utils.code import run_shell_script
45
- run_shell_script(f"uv run --with machineconfig>=5.67,textual {path}")
38
+ run_shell_script(f"""uv run --with "machineconfig>=5.71,textual" {path}""")
46
39
 
47
40
 
48
- @cli_app.command(no_args_is_help=True)
49
41
  def run_python(ip: str = typer.Argument(..., help="Python command to run in the machineconfig environment"),
50
42
  command: Optional[bool] = typer.Option(False, "--command", "-c", help="Run as command")):
51
43
  """🐍 RUN python command/file in the machineconfig environment"""
@@ -56,3 +48,19 @@ def run_python(ip: str = typer.Argument(..., help="Python command to run in the
56
48
  import subprocess
57
49
  import sys
58
50
  subprocess.run([sys.executable, ip], cwd=machineconfig.__path__[0])
51
+
52
+ def get_app():
53
+ cli_app = typer.Typer(help="🔄 [s] self operations subcommands", no_args_is_help=True)
54
+ cli_app.command("update", no_args_is_help=False, help="🔄 [u] UPDATE essential repos")(update)
55
+ cli_app.command("u", no_args_is_help=False, help="UPDATE essential repos", hidden=True)(update)
56
+ cli_app.command("interactive", no_args_is_help=False, help="🤖 [ia] INTERACTIVE configuration of machine.")(interactive)
57
+ cli_app.command("ia", no_args_is_help=False, help="INTERACTIVE configuration of machine.", hidden=True)(interactive)
58
+ cli_app.command("status", no_args_is_help=False, help="📊 [s] STATUS of machine, shell profile, apps, symlinks, dotfiles, etc.")(status)
59
+ cli_app.command("s", no_args_is_help=False, help="STATUS of machine, shell profile, apps, symlinks, dotfiles, etc.", hidden=True)(status)
60
+ cli_app.command("install", no_args_is_help=False, help="📋 [i] CLONE machienconfig locally and incorporate to shell profile for faster execution and nightly updates.")(install)
61
+ cli_app.command("i", no_args_is_help=False, help="CLONE machienconfig locally and incorporate to shell profile for faster execution and nightly updates.", hidden=True)(install)
62
+ cli_app.command("navigate", no_args_is_help=False, help="📚 [n] NAVIGATE command structure with TUI")(navigate)
63
+ cli_app.command("n", no_args_is_help=False, help="NAVIGATE command structure with TUI", hidden=True)(navigate)
64
+ cli_app.command("python", no_args_is_help=False, help="🐍 [c] python command/file in the machineconfig environment")(run_python)
65
+ cli_app.command("c", no_args_is_help=False, help="RUN python command/file in the machineconfig environment", hidden=True)(run_python)
66
+ return cli_app
@@ -12,11 +12,11 @@ from machineconfig.scripts.python.croshell import croshell as croshell_func
12
12
  def get_app():
13
13
  import typer
14
14
  app = typer.Typer(help="MachineConfig CLI - Manage your machine configurations and workflows", no_args_is_help=True)
15
- app.add_typer(get_devops_app(), name="devops", help="DevOps related commands")
16
- app.add_typer(get_cloud_app(), name="cloud", help="Cloud management commands")
17
- app.add_typer(get_sessions_app(), name="sessions", help="Session and layout management")
18
- app.add_typer(get_fire_jobs_app(), name="fire", help="Fire and manage jobs")
19
- app.add_typer(get_agents_app(), name="agents", help="🤖 AI Agents management commands")
15
+ app.add_typer(get_devops_app(), name="devops", help="DevOps related commands", no_args_is_help=True)
16
+ app.add_typer(get_cloud_app(), name="cloud", help="Cloud management commands", no_args_is_help=True)
17
+ app.add_typer(get_sessions_app(), name="sessions", help="Session and layout management", no_args_is_help=True)
18
+ app.add_typer(get_fire_jobs_app(), name="fire", help="Fire and manage jobs", no_args_is_help=True)
19
+ app.add_typer(get_agents_app(), name="agents", help="🤖 AI Agents management commands", no_args_is_help=True)
20
20
 
21
21
  app.command("ftpx", no_args_is_help=True, help="File transfer utility though SSH")(ftpx_func)
22
22
  app.command("croshell", no_args_is_help=False, help="Cross-shell command execution")(croshell_func)
@@ -163,7 +163,7 @@ def ftpx(
163
163
  padding=(1, 2),
164
164
  )
165
165
  )
166
- received_file = ssh.copy_to_here(source=resolved_source, target=resolved_target, z=zipFirst, r=recursive, init=True)
166
+ received_file = ssh.copy_to_here(source=resolved_source, target=resolved_target, compress_with_zip=zipFirst, recursive=recursive)
167
167
  else:
168
168
  assert resolved_source is not None, """
169
169
  ❌ Path Error: Target must be a remote path (machine:path)"""
@@ -21,12 +21,16 @@ class CommandNavigatorApp(App[None]):
21
21
  layout: grid;
22
22
  grid-size: 2 3;
23
23
  grid-rows: auto 1fr auto;
24
+ grid-columns: 1fr 1fr;
25
+ height: 100%;
26
+ width: 100%;
24
27
  }
25
28
 
26
29
  Header {
27
30
  column-span: 2;
28
31
  background: $boost;
29
32
  color: $text;
33
+ width: 100%;
30
34
  }
31
35
 
32
36
  #search-bar {
@@ -34,6 +38,7 @@ class CommandNavigatorApp(App[None]):
34
38
  padding: 1;
35
39
  background: $surface;
36
40
  height: auto;
41
+ width: 100%;
37
42
  }
38
43
 
39
44
  .search-label {
@@ -49,17 +54,22 @@ class CommandNavigatorApp(App[None]):
49
54
  row-span: 1;
50
55
  border: solid $primary;
51
56
  padding: 1;
57
+ width: 100%;
58
+ height: 100%;
52
59
  }
53
60
 
54
61
  #command-detail {
55
62
  row-span: 1;
56
63
  border: solid $primary;
57
64
  padding: 1;
65
+ width: 100%;
66
+ height: 100%;
58
67
  }
59
68
 
60
69
  Footer {
61
70
  column-span: 2;
62
71
  background: $boost;
72
+ width: 100%;
63
73
  }
64
74
 
65
75
  Button {
@@ -2,10 +2,10 @@
2
2
  from pathlib import Path
3
3
  # import shlex
4
4
  from typing import Optional
5
- from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import MATCHINE, PROVIDER, MODEL
5
+ from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import HOST, PROVIDER, MODEL
6
6
 
7
7
 
8
- def fire_crush(api_key: Optional[str], model: MODEL, provider: PROVIDER, machine: MATCHINE, prompt_path: Path, repo_root: Path) -> str:
8
+ def fire_crush(api_key: Optional[str], model: MODEL, provider: PROVIDER, machine: HOST, prompt_path: Path, repo_root: Path) -> str:
9
9
  match machine:
10
10
  case "local":
11
11
  cmd = f"""
@@ -2,10 +2,10 @@
2
2
 
3
3
  from pathlib import Path
4
4
  # import shlex
5
- from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import MATCHINE
5
+ from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import HOST
6
6
  from typing import Optional
7
7
 
8
- def fire_cursor(api_key: Optional[str], prompt_path: Path, machine: MATCHINE) -> str:
8
+ def fire_cursor(api_key: Optional[str], prompt_path: Path, machine: HOST) -> str:
9
9
  match machine:
10
10
  case "local":
11
11
  # Export the environment variable so it's available to subshells
@@ -1,11 +1,11 @@
1
1
 
2
2
  from pathlib import Path
3
3
  import shlex
4
- from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import MATCHINE
4
+ from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import HOST
5
5
  from typing import Optional, Literal
6
6
 
7
7
 
8
- def fire_gemini(api_key: Optional[str], model: Literal["gemini-2.5-pro"], provider: Literal["google"], machine: MATCHINE, prompt_path: Path, repo_root: Path) -> str:
8
+ def fire_gemini(api_key: Optional[str], model: Literal["gemini-2.5-pro"], provider: Literal["google"], machine: HOST, prompt_path: Path, repo_root: Path) -> str:
9
9
  _ = provider
10
10
  # model = "gemini-2.5-flash-lite"
11
11
  # model = None # auto-select
@@ -1,11 +1,11 @@
1
1
 
2
2
  from pathlib import Path
3
3
  import shlex
4
- from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import MATCHINE
4
+ from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import HOST
5
5
  from typing import Optional, Literal
6
6
 
7
7
 
8
- def fire_qwen(config_dir: Optional[str], model: Literal["qwen"], provider: Literal["qwen"], machine: MATCHINE, prompt_path: Path, repo_root: Path) -> str:
8
+ def fire_qwen(config_dir: Optional[str], model: Literal["qwen"], provider: Literal["qwen"], machine: HOST, prompt_path: Path, repo_root: Path) -> str:
9
9
  # assert model == "qwen", "Only qwen is supported currently."
10
10
  # assert provider == "qwen", "Only qwen is supported currently."
11
11
  # model = "qwen"
@@ -2,7 +2,7 @@
2
2
  import random
3
3
  import shlex
4
4
  from pathlib import Path
5
- from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import AGENTS, AGENT_NAME_FORMATTER, MATCHINE, PROVIDER, MODEL
5
+ from machineconfig.scripts.python.helpers_fire.fire_agents_helper_types import AGENTS, AGENT_NAME_FORMATTER, HOST, PROVIDER, MODEL
6
6
 
7
7
 
8
8
  def get_api_keys(provider: PROVIDER) -> list[str]:
@@ -20,7 +20,7 @@ def get_api_keys(provider: PROVIDER) -> list[str]:
20
20
 
21
21
 
22
22
  def prep_agent_launch(repo_root: Path, agents_dir: Path, prompts_material: list[str], prompt_prefix: str, keep_material_in_separate_file: bool,
23
- machine: MATCHINE, model: MODEL, provider: PROVIDER, agent: AGENTS, *, job_name: str) -> None:
23
+ machine: HOST, model: MODEL, provider: PROVIDER, agent: AGENTS, *, job_name: str) -> None:
24
24
  agents_dir.mkdir(parents=True, exist_ok=True)
25
25
  prompt_folder = agents_dir / "prompts"
26
26
  prompt_folder.mkdir(parents=True, exist_ok=True)
@@ -3,7 +3,7 @@ from typing import Literal, TypeAlias, TypedDict
3
3
 
4
4
 
5
5
  AGENTS: TypeAlias = Literal["cursor-agent", "gemini", "crush", "q", "opencode"]
6
- MATCHINE: TypeAlias = Literal["local", "docker"]
6
+ HOST: TypeAlias = Literal["local", "docker"]
7
7
  PROVIDER: TypeAlias = Literal["azure", "google", "aws", "openai", "anthropic", "openrouter", "xai"]
8
8
  MODEL: TypeAlias = Literal["zai/glm-4.6", "anthropic/sonnet-4.5", "google/gemini-2.5-pro", "openai/gpt-5-codex",
9
9
  "openrouter/supernova", "x-ai/grok-4-fast:free",
@@ -22,7 +22,7 @@ class AI_SPEC(TypedDict):
22
22
  provider: PROVIDER
23
23
  model: MODEL
24
24
  agent: AGENTS
25
- machine: MATCHINE
25
+ machine: HOST
26
26
 
27
27
 
28
28
  AGENT_NAME_FORMATTER = "agent_{idx}_cmd.sh" # e.g., agent_0_cmd.sh
@@ -120,7 +120,7 @@ def execute_installations(selected_options: list[str]) -> None:
120
120
  console.print("🔧 Installing CLI applications", style="bold cyan")
121
121
  try:
122
122
  from machineconfig.utils.installer_utils.installer import main as devops_devapps_install_main
123
- devops_devapps_install_main(group=maybe_a_group, which=None, interactive=False)
123
+ devops_devapps_install_main(group=True, which=maybe_a_group, interactive=False)
124
124
  console.print("✅ CLI applications installed successfully", style="bold green")
125
125
  except Exception as e:
126
126
  console.print(f"❌ Error installing CLI applications: {e}", style="bold red")
@@ -130,9 +130,9 @@ def execute_installations(selected_options: list[str]) -> None:
130
130
  console.print(Panel("🐍 [bold green]PYTHON ENVIRONMENT[/bold green]\n[italic]Virtual environment setup[/italic]", border_style="green"))
131
131
  import platform
132
132
  if platform.system() == "Windows":
133
- run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=5.67""")
133
+ run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=5.71""")
134
134
  else:
135
- run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=5.67""")
135
+ run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=5.71""")
136
136
  if "install_ssh_server" in selected_options:
137
137
  console.print(Panel("🔒 [bold red]SSH SERVER[/bold red]\n[italic]Remote access setup[/italic]", border_style="red"))
138
138
  import platform
@@ -5,7 +5,7 @@
5
5
  # mkdir ~/data/local
6
6
  # sudo mount -o nolock,noatime,nodiratime,proto=tcp,timeo=600,retrans=2,noac alex-p51s-5:/home/alex/data/local ./data/local
7
7
 
8
- uv run --python 3.14 --with machineconfig>=5.67python -m machineconfig.scripts.python.mount_nfs
8
+ uv run --python 3.14 --with "machineconfig>=5.71" python -m machineconfig.scripts.python.mount_nfs
9
9
  # Check if remote server is reachable and share folder exists
10
10
  if ! ping -c 1 "$remote_server" &> /dev/null; then
11
11
  echo "💥 Error: Remote server $remote_server is not reachable."
@@ -19,9 +19,9 @@ def main():
19
19
  print("\n🔍 Interactive mode selected for choosing share path.")
20
20
  tmp = choose_ssh_host(multi=False)
21
21
  assert isinstance(tmp, str)
22
- ssh = SSH(tmp)
23
- default = f"{ssh.hostname}:{ssh.run_shell('echo $HOME').op}/data/share_nfs"
24
- share_info = choose_from_options(msg="📂 Choose a share path:", options=[f"{ssh.hostname}:{item.split(' ')[0]}" for item in ssh.run_shell("cat /etc/exports").op.split("\n") if not item.startswith("#")] + [default], default=default, multi=False)
22
+ ssh = SSH(host=tmp, username=None, hostname=None, ssh_key_path=None, password=None, port=22, enable_compression=False)
23
+ default = f"{ssh.hostname}:{ssh.run_shell(command='echo $HOME', verbose_output=False, description='Get home directory', strict_stderr=False, strict_return_code=True).op}/data/share_nfs"
24
+ share_info = choose_from_options(msg="📂 Choose a share path:", options=[f"{ssh.hostname}:{item.split(' ')[0]}" for item in ssh.run_shell(command="cat /etc/exports", verbose_output=False, description='Get NFS exports', strict_stderr=False, strict_return_code=False).op.split("\n") if not item.startswith("#")] + [default], default=default, multi=False)
25
25
  assert isinstance(share_info, str), f"❌ share_info must be a string. Got {type(share_info)}"
26
26
 
27
27
  remote_server = share_info.split(":")[0]
@@ -18,10 +18,10 @@ def main():
18
18
  print("\n🔍 Interactive mode selected for choosing share path.")
19
19
  tmp = choose_ssh_host(multi=False)
20
20
  assert isinstance(tmp, str)
21
- ssh = SSH(host=tmp)
22
- share_info = f"{ssh.username}@{ssh.hostname}:{ssh.run_shell('echo $HOME').op}/data/share_ssh"
21
+ ssh = SSH(host=tmp, username=None, hostname=None, ssh_key_path=None, password=None, port=22, enable_compression=False)
22
+ share_info = f"{ssh.username}@{ssh.hostname}:{ssh.run_shell(command='echo $HOME', verbose_output=False, description='Get home directory', strict_stderr=False, strict_return_code=True).op}/data/share_ssh"
23
23
  else:
24
- ssh = SSH(share_info.split(":")[0])
24
+ ssh = SSH(host=share_info.split(":")[0], username=None, hostname=None, ssh_key_path=None, password=None, port=22, enable_compression=False)
25
25
 
26
26
  print(f"\n🌐 Share Info: {share_info}")
27
27
 
@@ -52,9 +52,9 @@ def main(
52
52
  port_int = int(port) if port else (2222 if system == "Windows" else 22)
53
53
  username = UserName
54
54
  hostname = platform.node()
55
- ssh = SSH(hostname=hostname, username=username, port=port_int, sshkey=sshkey)
55
+ ssh = SSH(host=None, username=username, hostname=hostname, ssh_key_path=sshkey, password=pwd, port=port_int, enable_compression=False)
56
56
  print("🌐 Initiating SSH transfer...")
57
- ssh.copy_from_here(source=path_obj, target=destination, z=zip_first)
57
+ ssh.copy_from_here(source_path=path_obj, target_path=Path(destination) if destination else None, compress_with_zip=zip_first, recursive=False, overwrite_existing=False)
58
58
  print("✅ SSH transfer completed successfully!\n")
59
59
 
60
60
 
@@ -7,7 +7,7 @@ def analyze_repo_development(repo_path: str = typer.Argument(..., help="Path to
7
7
  from pathlib import Path
8
8
  count_lines_path = Path(count_lines.__file__)
9
9
  # --project $HOME/code/ machineconfig --group plot
10
- cmd = f"""uv run --python 3.14 --with machineconfig[plot]>=5.67 {count_lines_path} analyze-over-time {repo_path}"""
10
+ cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=5.71" {count_lines_path} analyze-over-time {repo_path}"""
11
11
  from machineconfig.utils.code import run_shell_script
12
12
  run_shell_script(cmd)
13
13
 
@@ -138,10 +138,15 @@ def kill_process():
138
138
  def get_app():
139
139
  layouts_app = typer.Typer(help="Layouts management subcommands", no_args_is_help=True)
140
140
  from machineconfig.scripts.python.sessions_helpers.sessions_multiprocess import create_from_function
141
- layouts_app.command("create-from-function", no_args_is_help=True, help="Create a layout from a function")(create_from_function)
142
- layouts_app.command("run", no_args_is_help=True, help="Run the selected layout(s)")(run)
143
- layouts_app.command("balance-load", no_args_is_help=True, help="Balance the load across sessions")(balance_load)
144
- layouts_app.command("kill-process", no_args_is_help=False, help="Choose a process to kill")(kill_process)
141
+ layouts_app.command("create-from-function", no_args_is_help=True, help="[c] Create a layout from a function")(create_from_function)
142
+ layouts_app.command("c", no_args_is_help=True, help="Create a layout from a function", hidden=True)(create_from_function)
143
+ layouts_app.command("run", no_args_is_help=True, help="[r] Run the selected layout(s)")(run)
144
+ layouts_app.command("r", no_args_is_help=True, help="Run the selected layout(s)", hidden=True)(run)
145
+ layouts_app.command("balance-load", no_args_is_help=True, help="[b] Balance the load across sessions")(balance_load)
146
+ layouts_app.command("b", no_args_is_help=True, help="Balance the load across sessions", hidden=True)(balance_load)
147
+ layouts_app.command("kill-process", no_args_is_help=False, help="[k] Choose a process to kill")(kill_process)
148
+ layouts_app.command("k", no_args_is_help=False, help="Choose a process to kill", hidden=True)(kill_process)
149
+
145
150
  return layouts_app
146
151
 
147
152
 
@@ -7,7 +7,7 @@ $user = ''
7
7
  $sharePath = ''
8
8
  $driveLetter = ''
9
9
 
10
- uv run --python 3.14 --with machineconfig>=5.67python -m machineconfig.scripts.python.mount_ssh
10
+ uv run --python 3.14 --with "machineconfig>=5.71" python -m machineconfig.scripts.python.mount_ssh
11
11
 
12
12
  net use T: \\sshfs.kr\$user@$host.local
13
13
  # this worked: net use T: \\sshfs\alex@alex-p51s-5.local
@@ -1,25 +1,25 @@
1
1
  #!/bin/bash
2
2
  . <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/uv.sh")
3
3
  devops() {
4
- "$HOME/.local/bin/uv" run --python 3.14 --with machineconfig>=5.67 devops "$@"
4
+ "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.71" devops "$@"
5
5
  }
6
6
  agents() {
7
- "$HOME/.local/bin/uv" run --python 3.14 --with machineconfig>=5.67 agents "$@"
7
+ "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.71" agents "$@"
8
8
  }
9
9
  cloud() {
10
- "$HOME/.local/bin/uv" run --python 3.14 --with machineconfig>=5.67 cloud "$@"
10
+ "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.71" cloud "$@"
11
11
  }
12
12
  croshell() {
13
- "$HOME/.local/bin/uv" run --python 3.14 --with machineconfig>=5.67 croshell "$@"
13
+ "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.71" croshell "$@"
14
14
  }
15
15
  fire() {
16
- "$HOME/.local/bin/uv" run --python 3.14 --with machineconfig>=5.67fire "$@"
16
+ "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.71" fire "$@"
17
17
  }
18
18
  ftpx() {
19
- "$HOME/.local/bin/uv" run --python 3.14 --with machineconfig>=5.67ftpx "$@"
19
+ "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.71" ftpx "$@"
20
20
  }
21
21
  sessions() {
22
- "$HOME/.local/bin/uv" run --python 3.14 --with machineconfig>=5.67sessions "$@"
22
+ "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.71" sessions "$@"
23
23
  }
24
24
 
25
25
  echo "devops command is now defined in this shell session."
@@ -2,30 +2,30 @@
2
2
 
3
3
  iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/uv.ps1").Content
4
4
  function devops {
5
- & "$HOME\.local\bin\uv.exe" run --python 3.14 --with machineconfig>=5.67 devops $args
5
+ & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.71" devops $args
6
6
  }
7
7
 
8
8
  function cloud {
9
- & "$HOME\.local\bin\uv.exe" run --python 3.14 --with machineconfig>=5.67 cloud $args
9
+ & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.71" cloud $args
10
10
  }
11
11
 
12
12
  function croshell {
13
- & "$HOME\.local\bin\uv.exe" run --python 3.14 --with machineconfig>=5.67 croshell $args
13
+ & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.71" croshell $args
14
14
  }
15
15
 
16
16
  function agents {
17
- & "$HOME\.local\bin\uv.exe" run --python 3.14 --with machineconfig>=5.67 agents $args
17
+ & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.71" agents $args
18
18
  }
19
19
 
20
20
  function fire {
21
- & "$HOME\.local\bin\uv.exe" run --python 3.14 --with machineconfig>=5.67 fire $args
21
+ & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.71" fire $args
22
22
  }
23
23
 
24
24
  function ftpx {
25
- & "$HOME\.local\bin\uv.exe" run --python 3.14 --with machineconfig>=5.67 ftpx $args
25
+ & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.71" ftpx $args
26
26
  }
27
27
 
28
28
  function sessions {
29
- & "$HOME\.local\bin\uv.exe" run --python 3.14 --with machineconfig>=5.67 sessions $args
29
+ & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.71" sessions $args
30
30
  }
31
31
 
@@ -56,18 +56,19 @@ def main_with_parser():
56
56
 
57
57
 
58
58
  def main(
59
- which: Optional[str] = typer.Option(None, "--which", "-w", help="Comma-separated list of program names to install."),
60
- group: Optional[str] = typer.Option(None, "--group", "-g", help="Groups names. A group is bundle of apps. See available groups when running interactively."),
59
+ which: Optional[str] = typer.Argument(None, help="Comma-separated list of program/groups names to install (if --group flag is set)."),
60
+ group: bool = typer.Option(False, "--group", "-g", help="Treat 'which' as a group name. A group is bundle of apps."),
61
61
  interactive: bool = typer.Option(False, "--interactive", "-ia", help="Interactive selection of programs to install."),
62
62
  ) -> None:
63
- if which is not None:
64
- return install_clis(clis_names=[x.strip() for x in which.split(",") if x.strip() != ""])
65
- if group is not None:
66
- # for a_group in group
67
- return install_group(package_group=group)
68
63
  if interactive:
69
64
  return install_interactively()
70
- typer.echo("❌ You must provide either --which, --group, or --interactive/-ia option.")
65
+ if which is not None:
66
+ if group:
67
+ for a_group in [x.strip() for x in which.split(",") if x.strip() != ""]:
68
+ return install_group(package_group=a_group)
69
+ else:
70
+ return install_clis(clis_names=[x.strip() for x in which.split(",") if x.strip() != ""])
71
+ typer.echo("❌ You must provide either a program name/group name, or use --interactive/-ia option.")
71
72
  import click
72
73
  ctx = click.get_current_context()
73
74
  typer.echo(ctx.get_help())
@@ -6,7 +6,7 @@ from machineconfig.utils.terminal import Response, MACHINE
6
6
  from machineconfig.utils.accessories import pprint
7
7
 
8
8
  UV_RUN_CMD = "$HOME/.local/bin/uv run"
9
- MACHINECONFIG_VERSION = "machineconfig>=5.67"
9
+ MACHINECONFIG_VERSION = """ "machineconfig>=5.71" """
10
10
  DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
11
11
 
12
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: machineconfig
3
- Version: 5.68
3
+ Version: 5.71
4
4
  Summary: Dotfiles management package
5
5
  Author-email: Alex Al-Saffar <programmer@usa.com>
6
6
  License: Apache 2.0
@@ -120,16 +120,16 @@ machineconfig/scripts/linux/other/share_smb,sha256=HZX8BKgMlS9JzkGIYnxTsPvoxEBBu
120
120
  machineconfig/scripts/linux/other/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4IfeeaGy1a2OL3IJlDU,525
121
121
  machineconfig/scripts/linux/other/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP96DTp77KHk2tU8,613
122
122
  machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
- machineconfig/scripts/python/agents.py,sha256=pjns5H8sTflV6_1aw35L9x7uSgbuI9wTye1Xxo81nQ0,9278
123
+ machineconfig/scripts/python/agents.py,sha256=PNjpI8ve_CP8Y091lWy5YbpI89ApOW1g47bnqXAMDFg,10339
124
124
  machineconfig/scripts/python/cloud.py,sha256=_05zIiBzG4fKhFytg9mjvMBv4qMUtQJL0RtpYUJFZ3Y,920
125
- machineconfig/scripts/python/croshell.py,sha256=UUL13_FZuu3nN804oPPpsqArulENdN974_wUmOyCADc,7186
126
- machineconfig/scripts/python/devops.py,sha256=U0_6h9R-1b9PBQraTVoYAzrhGdtjbwyVjlJl4iyeF2E,1583
125
+ machineconfig/scripts/python/croshell.py,sha256=lTPw3UhXDr-fumi4s2FvvOW21XcAOKlJg2m4sa8Mz_o,7193
126
+ machineconfig/scripts/python/devops.py,sha256=f9Tc2EQNO1sImE1J6Vp4HlvPozMlgbtO1t84l8knr40,2050
127
127
  machineconfig/scripts/python/devops_navigator.py,sha256=4O9_-ACeP748NcMjWQXZF7mBQpMPxqCGhLvPG3DMi4Q,236
128
- machineconfig/scripts/python/entry.py,sha256=hBqrwVDgUH-tISrscELh_FwVN576W1sb-RBO4ZVWRqU,1371
128
+ machineconfig/scripts/python/entry.py,sha256=0D6xAXpB5aNZ_fyKKr3oXVuiRgZqHUUkbTCHJnq0SLM,1481
129
129
  machineconfig/scripts/python/fire_jobs.py,sha256=O5DrckUGLxGblOcLf_iXU31pmCSpTg-c0hQZxQKD1os,13591
130
- machineconfig/scripts/python/ftpx.py,sha256=k1RY2HNv2Qpgu5slG26O4cXfsZQy90v5FsMETXSVOSE,9747
131
- machineconfig/scripts/python/interactive.py,sha256=goTw5FXGnkauNsMHhqDawPbmlj3Z28c4Cw1J2_z9WPM,11790
132
- machineconfig/scripts/python/sessions.py,sha256=2PNB1-LtCNRbTQs9I2zAOMFSqy7rG6U36xl-0cmItOM,9081
130
+ machineconfig/scripts/python/ftpx.py,sha256=UBDP6IIfWkaML1uZT1FrfGUUy_Of5LI82IdqEzo05_U,9760
131
+ machineconfig/scripts/python/interactive.py,sha256=v_2S-uZck0LcyfWp3q54SA8ROh2xr_F1pFCTO0WtjLs,11790
132
+ machineconfig/scripts/python/sessions.py,sha256=91eqV7SMemOZDuIQMqz36-AFbrpvPLbVdR6BZppY1xA,9559
133
133
  machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
134
  machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
135
135
  machineconfig/scripts/python/ai/initai.py,sha256=53MuUgk92avRPM-U3dy6o_pnEj2thlurC8U6dz41_W0,2089
@@ -171,12 +171,12 @@ machineconfig/scripts/python/croshell_helpers/start_slidev.py,sha256=HfJReOusTPh
171
171
  machineconfig/scripts/python/croshell_helpers/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
172
172
  machineconfig/scripts/python/croshell_helpers/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
173
173
  machineconfig/scripts/python/devops_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
- machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=mJ0RMUrGDv9W6jo31Q1ZnTrbD-WLAx7TQIf_ontibgM,3953
174
+ machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=GE5Z35he2wemMHgsIxvT2lqLsxaoBygGTj5qzzFf7rE,5333
175
175
  machineconfig/scripts/python/devops_helpers/cli_config_dotfile.py,sha256=rjTys4FNf9_feP9flWM7Zvq17dxWmetSiGaHPxp25nk,2737
176
- machineconfig/scripts/python/devops_helpers/cli_data.py,sha256=f_2espL92n6SoNb5sFVMvrK7LA29HzfrFAKhxKaud1M,510
177
- machineconfig/scripts/python/devops_helpers/cli_nw.py,sha256=4Ko4dA8YXqiRJvuOuwZv3YOvnSJQ7-A11ezJ8EztDis,2068
178
- machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=GQJaCSnvNbIo_CmpYBDZOUyi0kPgn8VCr3a5Dnfy0_w,9681
179
- machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=I8ULabOhzODCkaH4IIHVU9cKkpgFAlBvrkx5jT8Wm4s,2288
176
+ machineconfig/scripts/python/devops_helpers/cli_data.py,sha256=kvJ7g2CccjjXIhCwdu_Vlif8JHC0qUoLjuGcTSqT-IU,514
177
+ machineconfig/scripts/python/devops_helpers/cli_nw.py,sha256=U-W6ox-7ctGqQcjFWsDwZKmqQdl1etz9CMOes-B0Wgc,2959
178
+ machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=IgyntAJ-qIEnaet3bnhhRg6SI519FgGWDBoQ6mLE7ZQ,12016
179
+ machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=p0PckQwaYrsC5BzQgJXiceQzKqDmVOY6BYti60ka2H4,3790
180
180
  machineconfig/scripts/python/devops_helpers/cli_share_server.py,sha256=285OzxttCx7YsrpOkaapMKP1eVGHmG5TkkaSQnY7i3c,3976
181
181
  machineconfig/scripts/python/devops_helpers/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
182
182
  machineconfig/scripts/python/devops_helpers/devops_add_identity.py,sha256=wvjNgqsLmqD2SxbNCW_usqfp0LI-TDvcJJKGOWt2oFw,3775
@@ -195,12 +195,12 @@ machineconfig/scripts/python/helper_navigator/command_builder.py,sha256=tMIonhYP
195
195
  machineconfig/scripts/python/helper_navigator/command_detail.py,sha256=i4MdiCOVaXdRmLqr4K-F1Mk1u93bl5heIN97cRPCnzg,1692
196
196
  machineconfig/scripts/python/helper_navigator/command_tree.py,sha256=EcyQmQJNW5HA1Zq_wwl6-uWwyrP1vd0hOWyDQny79Tc,19501
197
197
  machineconfig/scripts/python/helper_navigator/data_models.py,sha256=62CIZ01rfCD2mKX_ihEVuhNzZ8FDnRSEIIQuyKOtmOg,533
198
- machineconfig/scripts/python/helper_navigator/main_app.py,sha256=SCH2o7B-7clIMf9wTDs7yHtayPDqxP9atOQ0v6uaQr8,8621
198
+ machineconfig/scripts/python/helper_navigator/main_app.py,sha256=HhBttfk0bdQfWD9lC8yyoYDKBMzxkpw7NKE0IS7JUFE,8844
199
199
  machineconfig/scripts/python/helper_navigator/search_bar.py,sha256=kDi8Jhxap8wdm7YpDBtfhwcPnSqDPFrV2LqbcSBWMT4,414
200
200
  machineconfig/scripts/python/helpers_fire/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
- machineconfig/scripts/python/helpers_fire/fire_agents_help_launch.py,sha256=vgJMzSyLRTik2lnKYZsNzwoAF-z8Tp1aVi4wMvIJzPs,5627
201
+ machineconfig/scripts/python/helpers_fire/fire_agents_help_launch.py,sha256=GBhi9WvmQDwJOcF3sjvge5x5U7TUokcVo4K4CbEm-OI,5619
202
202
  machineconfig/scripts/python/helpers_fire/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
203
- machineconfig/scripts/python/helpers_fire/fire_agents_helper_types.py,sha256=b3_EaG_rGuRxTuVmKZVbY-tawsfrNP3tvPNaNgZ9ohs,1069
203
+ machineconfig/scripts/python/helpers_fire/fire_agents_helper_types.py,sha256=TUzFEPySE3IeOIWX99a6baD82MtJFIRl-lIUSIfwaOw,1061
204
204
  machineconfig/scripts/python/helpers_fire/fire_agents_load_balancer.py,sha256=mpqx3uaQdBXYieuvhdK-qsvLepf9oIMo3pwPj9mSEDI,1079
205
205
  machineconfig/scripts/python/helpers_fire/helpers4.py,sha256=iKR5vVJygaDIpFXhcdma9jOpyxKtUhmqcmalFxJmY0w,4749
206
206
  machineconfig/scripts/python/helpers_fire/prompt.txt,sha256=Ni6r-Dh0Ez2XwfOZl3MOMDhfn6BJ2z4IdK3wFvA3c_o,116
@@ -208,10 +208,10 @@ machineconfig/scripts/python/helpers_fire/template.ps1,sha256=NWkYlM4_l9eT52lS9N
208
208
  machineconfig/scripts/python/helpers_fire/template.sh,sha256=ohK-hlH4IdUl827CacLmMLB8i5OgmY6q00ETd7bN9GQ,1172
209
209
  machineconfig/scripts/python/helpers_fire/agentic_frameworks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
210
  machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_crush.json,sha256=YGuJF-qlMjhICPf0QnNfQlGNPsYrJJDlNcgmes0TFhM,252
211
- machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_crush.py,sha256=-yRdVcKX_1XTUzWKNoNW9rjmn_NsJuk1pB5EKC4TKpU,1622
212
- machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_cursor_agents.py,sha256=YYwZWa3yEbpIxUorL2Z1AOwrG9RqhtMQx5D4hsON_Vw,570
213
- machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_gemini.py,sha256=a5aCq3H_i2oqKleGdoObyusks29oy9J7BZLZH-ZGbqo,1574
214
- machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_qwen.py,sha256=73R0EPAstdw37BBOaHzzPibI4EK1euVXX-_wx9I61hc,1702
211
+ machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_crush.py,sha256=NRcnjVu4-_6UqWdeRH4A2g79QIAOwnqVtiqOwn7qzlE,1614
212
+ machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_cursor_agents.py,sha256=ujRHjh6yD6r-GrqNRQ_Yw29Lp94Dm5dIFLWxU2rFbaY,562
213
+ machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_gemini.py,sha256=KYJhClOMnuTFOp7VtDQ5ZSOhZYCciOkYyM3T53bxCag,1566
214
+ machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_qwen.py,sha256=uh0Blj_EHnUbLPqmqgc67HwaVuz5CllC3q2ILEtG7sU,1694
215
215
  machineconfig/scripts/python/helpers_fire_command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
216
  machineconfig/scripts/python/helpers_fire_command/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
217
217
  machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py,sha256=UUrGB2N_pR7PxFKtKTJxIUiS58WjQX0U50y2ft8Ul4w,4334
@@ -223,19 +223,19 @@ machineconfig/scripts/python/helpers_repos/grource.py,sha256=IywQ1NDPcLXM5Tr9xhm
223
223
  machineconfig/scripts/python/helpers_repos/secure_repo.py,sha256=G_quiKOLNkWD5UG8ekexgh9xbpW4Od-J1pLJbLLWnpg,993
224
224
  machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
225
  machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
226
- machineconfig/scripts/python/nw/mount_nfs,sha256=qZY1MPfcyeXPFmwC0nkw8ZuJuInrEKz-cZ9eek_TaUE,1852
227
- machineconfig/scripts/python/nw/mount_nfs.py,sha256=M2oILEll6l1ixgjEpqqbjCgr7yvEWYfs4n02omX3w80,3251
226
+ machineconfig/scripts/python/nw/mount_nfs,sha256=9UrqeY_qpog2mdXpw0a6qLkOwJislpqqSAMgn9u46Uk,1855
227
+ machineconfig/scripts/python/nw/mount_nfs.py,sha256=lOMDY4RS7tx8gsCazVR5tNNwFbaRyO2PJlnwBCDQgCM,3573
228
228
  machineconfig/scripts/python/nw/mount_nw_drive,sha256=BqjGBCbwe5ZAsZDO3L0zHhh_gJfZy1CYOcqXA4Y-WkQ,2262
229
229
  machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
230
230
  machineconfig/scripts/python/nw/mount_smb,sha256=7UN5EP1kuxYL_-CnyaH4f9Wuu2CgALDZpJ0mPcdvCiY,94
231
- machineconfig/scripts/python/nw/mount_ssh.py,sha256=elppj91yf-XUAh14HcFyVZpJmVJ67tN8OKTHlCF18VA,2274
231
+ machineconfig/scripts/python/nw/mount_ssh.py,sha256=qt0P4T4pheszexBxaDeLVrGdLIVRoOc-UdfYv5r0OLY,2587
232
232
  machineconfig/scripts/python/nw/onetimeshare.py,sha256=xRd8by6qUm-od2Umty2MYsXyJwzXw-CBTd7VellNaKY,2498
233
233
  machineconfig/scripts/python/nw/wifi_conn.py,sha256=4GdLhgma9GRmZ6OFg3oxOX-qY3sr45njPckozlpM_A0,15566
234
- machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=534zlYe3Xsr0mqegAnZrVru8Fif-9jZyQK38Q90AtDo,3389
234
+ machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=1ab9l-8MtAxofW5nGH9G2-BjlszaiLETu6WBECcNNhA,3546
235
235
  machineconfig/scripts/python/repos_helpers/action.py,sha256=t6x9K43Uy7r5aRpdODfsN-5UoMrYXEG2cVw-Y8l9prw,14847
236
236
  machineconfig/scripts/python/repos_helpers/clone.py,sha256=9vGb9NCXT0lkerPzOJjmFfhU8LSzE-_1LDvjkhgnal0,5461
237
237
  machineconfig/scripts/python/repos_helpers/count_lines.py,sha256=ZLEajCLmlFFY969BehabqGOB9_kkpATO3Lt09L7KULk,15968
238
- machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=v-0wPDxP8TCx31JUCM5z318_mBzMBlETkKepJe-Yv4k,566
238
+ machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=lspw1XbLHHmndrbqiTJp2n1PDDD-qGz93et_f_vZP9U,568
239
239
  machineconfig/scripts/python/repos_helpers/entrypoint.py,sha256=C-_D03abE0TkVCJ4jZoliUMAhRRkZ77mcwMoPOuieJQ,2827
240
240
  machineconfig/scripts/python/repos_helpers/record.py,sha256=3T5VmMbvywScZhTW2j4cGLK0T2LSWxKfnXkRTxkuLP4,10994
241
241
  machineconfig/scripts/python/repos_helpers/sync.py,sha256=CLLWy2n2gY9beXPF-mblOQ6R7cKoenkJjMiX7tHQsBk,3091
@@ -248,7 +248,7 @@ machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqk
248
248
  machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
249
249
  machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
250
250
  machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
251
- machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=11LWNiAKq91rIfVy2fIAPHmiWU_jreZPoLtWruarmR8,319
251
+ machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=GHhZhUhLEzjMqud4hHBnHIbIRAo3L7LFTK7DN5J_QH0,322
252
252
  machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
253
253
  machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
254
254
  machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
@@ -363,7 +363,7 @@ machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKG
363
363
  machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
364
364
  machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
365
365
  machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
366
- machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=mSUl51ubEiTTfpBZOabZJs1ePa0Ivi0Y7c2_98b0RBI,863
366
+ machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=bl-J0RkhkT_q-KkA2X9K7AYE1HM5X4ARJ-0XjTmEIDY,880
367
367
  machineconfig/setup_windows/__init__.py,sha256=NnSVZkIBoxoMgkj-_KAqGonH3YziBIWXOKDEcmNAGTY,386
368
368
  machineconfig/setup_windows/apps.ps1,sha256=G5GqZ9G0aiQr_A-HaahtRdzpaTTdW6n3DRKMZWDTSPc,11214
369
369
  machineconfig/setup_windows/uv.ps1,sha256=mzkFJUQ57dukVQtY7WqAQIVUDMcixnkir8aNM_TYrl4,350
@@ -373,7 +373,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
373
373
  machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
374
374
  machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
375
375
  machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
376
- machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=Y-5kNrmHh4POwM9p1dB1GEMqdVSqb8T_NAdGqxFzgsU,905
376
+ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=qSyMu2dx3nTHBt6N1Tt7Mscqx8fPEWlz86y99ocZcNc,919
377
377
  machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
378
378
  machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
379
379
  machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -391,7 +391,7 @@ machineconfig/utils/procs.py,sha256=w75oGKfR7FpT1pGTGd2XscnEOO0IHBWxohLbi69hLqg,
391
391
  machineconfig/utils/scheduler.py,sha256=jZ_1yghqA3-aINPRmE_76gboqJc0UElroR7urNOfXKs,14940
392
392
  machineconfig/utils/scheduling.py,sha256=RF1iXJpqf4Dg18jdZWtBixz97KAHC6VKYqTFSpdLWuc,11188
393
393
  machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
394
- machineconfig/utils/ssh.py,sha256=U-OQ06ulWDK9Cur3RrQYERfvxO3cpfSB5bSV03Ymjj0,37556
394
+ machineconfig/utils/ssh.py,sha256=2ssLAz1w_AdhqVOwa2DzH621G9fK3qHT3qyJzCuUEHc,37564
395
395
  machineconfig/utils/terminal.py,sha256=IlmOByfQG-vjhaFFxxzU5rWzP5_qUzmalRfuey3PAmc,11801
396
396
  machineconfig/utils/upgrade_packages.py,sha256=H96zVJEWXJW07nh5vhjuSCrPtXGqoUb7xeJsFYYdmCI,3330
397
397
  machineconfig/utils/ve.py,sha256=L-6PBXnQGXThiwWgheJMQoisAZOZA6SVCbGw2J-GFnI,2414
@@ -407,7 +407,7 @@ machineconfig/utils/files/ouch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
407
407
  machineconfig/utils/files/ouch/decompress.py,sha256=7qPaEkMerBBXzeZyFn8hLODHZJv1aty-yGgwBxLgVys,1413
408
408
  machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
409
  machineconfig/utils/installer_utils/github_release_bulk.py,sha256=WJf_qZlF02SmIc6C7o1h4Gy4gAaJAfeAS8O9s2Itj-k,6535
410
- machineconfig/utils/installer_utils/installer.py,sha256=A1lAZNUFS1_MyJbpFdomiPbKCLVBknmWbwojs0C7F7Y,9695
410
+ machineconfig/utils/installer_utils/installer.py,sha256=bWFSIW05hDo6p1BsNqK-yCQL5ZNU_eZxCQW1QLLc-SA,9759
411
411
  machineconfig/utils/installer_utils/installer_abc.py,sha256=ZoMtINHD9cHEu4R5SYUWgHLTAqo4F2a33pBrEOGX4zs,11693
412
412
  machineconfig/utils/installer_utils/installer_class.py,sha256=UU0ccaNWY16a-ErySkXnxzWnmhPesHNRhfPIVVPtzKA,18363
413
413
  machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=Xbi59rU35AzR7HZZ8ZQ8aUu_FjSgijNqc8Sme0rCk2Y,2050
@@ -415,8 +415,8 @@ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoS
415
415
  machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
416
416
  machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
417
417
  machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
418
- machineconfig-5.68.dist-info/METADATA,sha256=Ly45lyhhrvwFzErQp7-xh34ANGTYCY6cQ7KoB2PzyXQ,3103
419
- machineconfig-5.68.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
420
- machineconfig-5.68.dist-info/entry_points.txt,sha256=M0jwN_brZdXWhmNVeXLvdKxfkv8WhhXFZYcuKBA9qnk,418
421
- machineconfig-5.68.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
422
- machineconfig-5.68.dist-info/RECORD,,
418
+ machineconfig-5.71.dist-info/METADATA,sha256=i-BuaostGC5S8aXUGDW2ALKojtKhdnOORdqne2JiNYI,3103
419
+ machineconfig-5.71.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
420
+ machineconfig-5.71.dist-info/entry_points.txt,sha256=M0jwN_brZdXWhmNVeXLvdKxfkv8WhhXFZYcuKBA9qnk,418
421
+ machineconfig-5.71.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
422
+ machineconfig-5.71.dist-info/RECORD,,