machineconfig 5.22__py3-none-any.whl → 5.23__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.
- machineconfig/cluster/sessions_managers/helpers/zellij_local_helper.py +298 -0
- machineconfig/cluster/sessions_managers/helpers/zellij_local_helper_restart.py +77 -0
- machineconfig/cluster/sessions_managers/helpers/zellij_local_helper_with_panes.py +228 -0
- machineconfig/cluster/sessions_managers/helpers/zellij_local_manager_helper.py +165 -0
- machineconfig/cluster/sessions_managers/wt_local.py +100 -75
- machineconfig/cluster/sessions_managers/wt_local_manager.py +17 -21
- machineconfig/cluster/sessions_managers/wt_remote.py +51 -43
- machineconfig/cluster/sessions_managers/wt_remote_manager.py +16 -8
- machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py +6 -19
- machineconfig/cluster/sessions_managers/zellij_local.py +79 -371
- machineconfig/cluster/sessions_managers/zellij_local_manager.py +20 -168
- machineconfig/cluster/sessions_managers/zellij_remote.py +38 -39
- machineconfig/cluster/sessions_managers/zellij_remote_manager.py +13 -10
- machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py +4 -1
- machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py +5 -20
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1 +17 -17
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh +17 -17
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +1 -1
- machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md +16 -0
- machineconfig/scripts/python/ai/solutions/generic.py +15 -4
- machineconfig/scripts/python/cloud_repo_sync.py +7 -5
- machineconfig/scripts/python/count_lines.py +6 -6
- machineconfig/scripts/python/fire_agents_help_launch.py +6 -1
- machineconfig/scripts/python/helpers/repo_sync_helpers.py +0 -3
- machineconfig/scripts/windows/share_smb.ps1 +0 -6
- machineconfig/utils/source_of_truth.py +1 -1
- {machineconfig-5.22.dist-info → machineconfig-5.23.dist-info}/METADATA +1 -1
- {machineconfig-5.22.dist-info → machineconfig-5.23.dist-info}/RECORD +31 -28
- machineconfig/cluster/sessions_managers/ffile.py +0 -4
- machineconfig/scripts/python/ai/solutions/copilot/prompts/allLintersAndTypeCheckers.prompt.md +0 -5
- {machineconfig-5.22.dist-info → machineconfig-5.23.dist-info}/WHEEL +0 -0
- {machineconfig-5.22.dist-info → machineconfig-5.23.dist-info}/entry_points.txt +0 -0
- {machineconfig-5.22.dist-info → machineconfig-5.23.dist-info}/top_level.txt +0 -0
|
@@ -72,7 +72,7 @@ uv run -m ruff clean
|
|
|
72
72
|
uv run -m ruff check . --fix
|
|
73
73
|
uv run --no-dev --project $HOME/code/machineconfig -m machineconfig.scripts.python.ai.generate_files
|
|
74
74
|
|
|
75
|
-
mkdir .linters
|
|
75
|
+
mkdir .ai/linters
|
|
76
76
|
|
|
77
77
|
echo -e "${GREEN}🧹 Code cleanup complete!${NC}"
|
|
78
78
|
echo
|
|
@@ -82,38 +82,38 @@ draw_box "🔍 TYPE CHECKERS & LINTERS 🔍" "${BOLD}${PURPLE}"
|
|
|
82
82
|
((CURRENT_STEP++))
|
|
83
83
|
draw_progress $CURRENT_STEP $TOTAL_STEPS "Pyright Type Checker"
|
|
84
84
|
echo -e "${BLUE}📋 Analyzing types with Pyright...${NC}"
|
|
85
|
-
rm ./.linters/
|
|
86
|
-
uv run pyright . > ./.linters/
|
|
87
|
-
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.linters/
|
|
85
|
+
rm ./.ai/linters/issues_pyright.md || true
|
|
86
|
+
uv run pyright . > ./.ai/linters/issues_pyright.md
|
|
87
|
+
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.ai/linters/issues_pyright.md${NC}"
|
|
88
88
|
|
|
89
89
|
((CURRENT_STEP++))
|
|
90
90
|
draw_progress $CURRENT_STEP $TOTAL_STEPS "MyPy Type Checker"
|
|
91
91
|
echo -e "${BLUE}📋 Analyzing types with MyPy...${NC}"
|
|
92
|
-
rm ./.linters/
|
|
93
|
-
uv run mypy . > ./.linters/
|
|
94
|
-
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.linters/
|
|
92
|
+
rm ./.ai/linters/issues_mypy.md || true
|
|
93
|
+
uv run mypy . > ./.ai/linters/issues_mypy.md
|
|
94
|
+
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.ai/linters/issues_mypy.md${NC}"
|
|
95
95
|
|
|
96
96
|
((CURRENT_STEP++))
|
|
97
97
|
draw_progress $CURRENT_STEP $TOTAL_STEPS "Pylint Code Analysis"
|
|
98
98
|
echo -e "${BLUE}📋 Analyzing code quality with Pylint...${NC}"
|
|
99
|
-
rm ./.linters/
|
|
100
|
-
uv run pylint ./src/ > ./.linters/
|
|
101
|
-
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.linters/
|
|
99
|
+
rm ./.ai/linters/issues_pylint.md || true
|
|
100
|
+
uv run pylint ./src/ > ./.ai/linters/issues_pylint.md
|
|
101
|
+
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.ai/linters/issues_pylint.md${NC}"
|
|
102
102
|
|
|
103
103
|
((CURRENT_STEP++))
|
|
104
104
|
draw_progress $CURRENT_STEP $TOTAL_STEPS "Pyrefly Type Checker"
|
|
105
105
|
echo -e "${BLUE}📋 Analyzing types with Pyrefly...${NC}"
|
|
106
|
-
rm ./.linters/
|
|
107
|
-
uv run pyrefly check . > ./.linters/
|
|
108
|
-
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.linters/
|
|
106
|
+
rm ./.ai/linters/issues_pyrefly.md || true
|
|
107
|
+
uv run pyrefly check . > ./.ai/linters/issues_pyrefly.md
|
|
108
|
+
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.ai/linters/issues_pyrefly.md${NC}"
|
|
109
109
|
|
|
110
110
|
((CURRENT_STEP++))
|
|
111
111
|
draw_progress $CURRENT_STEP $TOTAL_STEPS "Ruff Linter"
|
|
112
112
|
echo -e "${BLUE}📋 Checking code style with Ruff...${NC}"
|
|
113
|
-
rm ./.linters/
|
|
114
|
-
uv run ruff check . > ./.linters/
|
|
115
|
-
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.linters/
|
|
113
|
+
rm ./.ai/linters/issues_ruff.md || true
|
|
114
|
+
uv run ruff check . > ./.ai/linters/issues_ruff.md
|
|
115
|
+
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.ai/linters/issues_ruff.md${NC}"
|
|
116
116
|
|
|
117
117
|
echo
|
|
118
118
|
draw_box "🎉 ALL CHECKS COMPLETED! 🎉" "${BOLD}${GREEN}"
|
|
119
|
-
echo -e "${BOLD}${GREEN}📁 Check the ${UNDERLINE}.linters${NC}${BOLD}${GREEN} directory for detailed results.${NC}"
|
|
119
|
+
echo -e "${BOLD}${GREEN}📁 Check the ${UNDERLINE}.ai/linters${NC}${BOLD}${GREEN} directory for detailed results.${NC}"
|
|
@@ -34,7 +34,7 @@ applyTo: "**/*.py"
|
|
|
34
34
|
* when finished, run a linting static analysis check against files you touched, Any fix any mistakes.
|
|
35
35
|
* Please run `uv run -m pyright $file_touched` and address all issues. if `pyright is not there, first run `uv add pyright --dev`.
|
|
36
36
|
* For all type checkers and linters, like mypy, pyright, pyrefly and pylint, there are config files at different levels of the repo all the way up to home directory level. You don't need to worry about them, just be mindful that they exist. The tools themselves will respect the configs therein.
|
|
37
|
-
* If you want to run all linters and pycheckers agains the entire project to make sure everything is clean, I prepared a nice shell script, you can run it from the repo root as `./.scripts/lint_and_type_check.sh`. It will produce markdown files that are you are meant to look at @ ./.linters/*.md
|
|
37
|
+
* If you want to run all linters and pycheckers agains the entire project to make sure everything is clean, I prepared a nice shell script, you can run it from the repo root as `./.ai/scripts/lint_and_type_check.sh`. It will produce markdown files that are you are meant to look at @ ./.ai/linters/*.md
|
|
38
38
|
|
|
39
39
|
# General Programming Ethos:
|
|
40
40
|
* Make sure all the code is rigorous, no lazy stuff.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
mode: agent
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
$PYRIGHT_ISSUES_FILE = "./.ai/linters/issues_pyright.md"
|
|
7
|
+
$NUM_TASKS = 50
|
|
8
|
+
please create $NUM_TASKS todo-list tasks to go through the first $NUM_TASKS
|
|
9
|
+
from $PYRIGHT_ISSUES_FILE, and solve them independently in each task.
|
|
10
|
+
When creating the tasks, try to keep issues related to one pyfile in one task, so you don't read the same file twice in different tasks.
|
|
11
|
+
|
|
12
|
+
once you solved them, you will have 2 months break from work.
|
|
13
|
+
|
|
14
|
+
Start by runing `./.ai/scripts/lint_and_type_check.sh` to generate $PYRIGHT_ISSUES_FILE only once.
|
|
15
|
+
|
|
16
|
+
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
+
|
|
1
2
|
from pathlib import Path
|
|
3
|
+
import platform
|
|
2
4
|
|
|
3
5
|
from machineconfig.utils.source_of_truth import LIBRARY_ROOT
|
|
4
6
|
|
|
5
7
|
|
|
6
8
|
def create_dot_scripts(repo_root: Path) -> None:
|
|
7
9
|
scripts_dir = LIBRARY_ROOT.joinpath("scripts/python/ai/scripts")
|
|
8
|
-
target_dir = repo_root.joinpath(".scripts")
|
|
10
|
+
target_dir = repo_root.joinpath(".ai/scripts")
|
|
9
11
|
import shutil
|
|
10
12
|
shutil.rmtree(target_dir, ignore_errors=True)
|
|
11
13
|
target_dir.mkdir(parents=True, exist_ok=True)
|
|
12
|
-
# for script_path in scripts_dir.iterdir():
|
|
13
|
-
# target_dir.joinpath(script_path.name).write_text(data=script_path.read_text(encoding="utf-8"), encoding="utf-8")
|
|
14
14
|
import platform
|
|
15
15
|
if platform.system() == "Windows":
|
|
16
16
|
script_path = scripts_dir.joinpath("lint_and_type_check.ps1")
|
|
@@ -21,6 +21,18 @@ def create_dot_scripts(repo_root: Path) -> None:
|
|
|
21
21
|
target_dir.joinpath(script_path.name).write_text(data=script_path.read_text(encoding="utf-8"), encoding="utf-8")
|
|
22
22
|
|
|
23
23
|
|
|
24
|
+
def adjust_for_os(config_path: Path) -> str:
|
|
25
|
+
if config_path.suffix not in [".md", ".txt"]:
|
|
26
|
+
return config_path.read_text(encoding="utf-8")
|
|
27
|
+
english_text = config_path.read_text(encoding="utf-8")
|
|
28
|
+
if platform.system() == "Windows":
|
|
29
|
+
return english_text.replace("bash", "PowerShell").replace("sh ", "pwsh ").replace("./", ".\\").replace(".sh", ".ps1")
|
|
30
|
+
elif platform.system() in ["Linux", "Darwin"]:
|
|
31
|
+
return english_text.replace("PowerShell", "bash").replace("pwsh ", "sh ").replace(".\\", "./").replace(".ps1", ".sh")
|
|
32
|
+
else:
|
|
33
|
+
raise NotImplementedError(f"Platform {platform.system()} is not supported.")
|
|
34
|
+
|
|
35
|
+
|
|
24
36
|
def adjust_gitignore(repo_root: Path) -> None:
|
|
25
37
|
dot_git_ignore_path = repo_root.joinpath(".gitignore")
|
|
26
38
|
if dot_git_ignore_path.exists() is False:
|
|
@@ -32,7 +44,6 @@ def adjust_gitignore(repo_root: Path) -> None:
|
|
|
32
44
|
".links",
|
|
33
45
|
"notebooks",
|
|
34
46
|
".ai",
|
|
35
|
-
".scripts",
|
|
36
47
|
"GEMINI.md",
|
|
37
48
|
"CLAUDE.md",
|
|
38
49
|
".cursor",
|
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
import sys
|
|
2
1
|
import git
|
|
2
|
+
from rich.console import Console
|
|
3
|
+
from rich.panel import Panel
|
|
4
|
+
import typer
|
|
5
|
+
|
|
3
6
|
from machineconfig.utils.io import read_ini
|
|
4
7
|
from machineconfig.utils.path_extended import PathExtended
|
|
5
8
|
from machineconfig.utils.terminal import Response
|
|
6
|
-
|
|
7
9
|
from machineconfig.utils.source_of_truth import CONFIG_PATH, DEFAULTS_PATH
|
|
8
10
|
from machineconfig.utils.options import choose_from_options
|
|
9
11
|
from machineconfig.utils.code import get_shell_file_executing_python_script, write_shell_script_to_file
|
|
12
|
+
|
|
10
13
|
import platform
|
|
11
14
|
import subprocess
|
|
12
15
|
from typing import Optional, Literal
|
|
13
|
-
from
|
|
14
|
-
|
|
15
|
-
import typer
|
|
16
|
+
from pathlib import Path
|
|
17
|
+
import sys
|
|
16
18
|
|
|
17
19
|
console = Console()
|
|
18
20
|
|
|
@@ -18,12 +18,12 @@ app = typer.Typer()
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
def count_lines_in_commit(commit: "Any") -> int:
|
|
21
|
-
|
|
22
|
-
for
|
|
23
|
-
if str(
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
return
|
|
21
|
+
_total_lines = 0
|
|
22
|
+
for _file in commit.stats.files:
|
|
23
|
+
if str(_file).endswith(".py"):
|
|
24
|
+
_blob = commit.tree / _file
|
|
25
|
+
_total_lines += len(_blob.data_stream.read().decode("utf-8").splitlines())
|
|
26
|
+
return _total_lines
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
def count_historical_loc(repo_path: str) -> int:
|
|
@@ -42,6 +42,9 @@ def prep_agent_launch(agents_dir: Path, prompts_material: list[str], prompt_pref
|
|
|
42
42
|
cmd_prefix = f"""
|
|
43
43
|
#!/usr/bin/env bash
|
|
44
44
|
|
|
45
|
+
sleep 5
|
|
46
|
+
timeout 3 copilot --banner
|
|
47
|
+
|
|
45
48
|
# AGENT-{idx}-LAUNCH-SCRIPT
|
|
46
49
|
# Auto-generated by fire_agents.py
|
|
47
50
|
|
|
@@ -74,15 +77,17 @@ sleep 0.1
|
|
|
74
77
|
api_key = api_keys[idx % len(api_keys)] if api_keys else ""
|
|
75
78
|
# Export the environment variable so it's available to subshells
|
|
76
79
|
cmd = f"""
|
|
80
|
+
|
|
77
81
|
export GEMINI_API_KEY={shlex.quote(api_key)}
|
|
78
82
|
echo "Using Gemini API key $GEMINI_API_KEY"
|
|
83
|
+
|
|
79
84
|
gemini {model_arg} --yolo --prompt {safe_path}
|
|
80
85
|
"""
|
|
81
86
|
case "cursor-agent":
|
|
82
87
|
# As originally implemented
|
|
83
88
|
cmd = f"""
|
|
84
89
|
|
|
85
|
-
cursor-agent --print --output-format text
|
|
90
|
+
cursor-agent --print --output-format text {prompt_path}
|
|
86
91
|
|
|
87
92
|
"""
|
|
88
93
|
case "crush":
|
|
@@ -29,9 +29,6 @@ def delete_remote_repo_copy_and_push_local(remote_repo: str, local_repo: str, cl
|
|
|
29
29
|
console.print(Panel("✅ Repository successfully pushed to cloud", title="[bold green]Repo Sync[/bold green]", border_style="green"))
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
# import sys
|
|
33
|
-
# import subprocess
|
|
34
|
-
|
|
35
32
|
|
|
36
33
|
def get_wt_cmd(wd1: PathExtended, wd2: PathExtended) -> str:
|
|
37
34
|
lines = [
|
|
@@ -4,12 +4,6 @@ $Path = $HOME + '\data\share_smb'
|
|
|
4
4
|
|
|
5
5
|
Get-SmbShare
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
#. activate_ve
|
|
9
|
-
#python -m machineconfig.scripts.python.share_smb
|
|
10
|
-
#. $HOME/tmp_results/shells/python_return_command.ps1
|
|
11
|
-
|
|
12
|
-
# make $path dir if it does not exist
|
|
13
7
|
if (!(Test-Path -Path $Path)) {
|
|
14
8
|
New-Item -ItemType Directory -Path $Path
|
|
15
9
|
}
|
|
@@ -5,7 +5,7 @@ Utils
|
|
|
5
5
|
import machineconfig
|
|
6
6
|
from pathlib import Path
|
|
7
7
|
|
|
8
|
-
EXCLUDE_DIRS = [".links", ".ai", ".
|
|
8
|
+
EXCLUDE_DIRS = [".links", ".ai", ".venv", ".git", ".idea", ".vscode", "node_modules", "__pycache__", ".mypy_cache"]
|
|
9
9
|
|
|
10
10
|
LIBRARY_ROOT = Path(machineconfig.__file__).resolve().parent
|
|
11
11
|
REPO_ROOT = LIBRARY_ROOT.parent.parent
|
|
@@ -14,25 +14,28 @@ machineconfig/cluster/remote/run_remote.py,sha256=vCc56t8BUAUJp7tyb0PFfwy5hlmIdR
|
|
|
14
14
|
machineconfig/cluster/remote/script_execution.py,sha256=HHENJ4hmWmiVii394EbgIaTdJUQwxprFQh0ItaYJZ2E,9977
|
|
15
15
|
machineconfig/cluster/remote/script_notify_upon_completion.py,sha256=GRxnnbnOl1-hTovTN-zI_M9wdV7x293yA77_mou9I1o,2032
|
|
16
16
|
machineconfig/cluster/sessions_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
machineconfig/cluster/sessions_managers/
|
|
18
|
-
machineconfig/cluster/sessions_managers/
|
|
19
|
-
machineconfig/cluster/sessions_managers/
|
|
20
|
-
machineconfig/cluster/sessions_managers/
|
|
21
|
-
machineconfig/cluster/sessions_managers/
|
|
22
|
-
machineconfig/cluster/sessions_managers/
|
|
23
|
-
machineconfig/cluster/sessions_managers/
|
|
24
|
-
machineconfig/cluster/sessions_managers/
|
|
25
|
-
machineconfig/cluster/sessions_managers/
|
|
17
|
+
machineconfig/cluster/sessions_managers/wt_local.py,sha256=6XQL4J1QJlqVyvvTkPASJ4Nvlx5d1iyZAeIktffrkoE,18998
|
|
18
|
+
machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=B7qpdRakeS1XFx4_xapIekii2B_2Nm8XHMvNWlcr7uk,24370
|
|
19
|
+
machineconfig/cluster/sessions_managers/wt_remote.py,sha256=yofv3Zlj2aClDUKYhUJVyvO-Wh76Wka71n-DY1ODj0Q,9072
|
|
20
|
+
machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=wxfZPJd4_21LAEoaf1kVDIyhUOYlJfWfNfFvlCOPLqo,20303
|
|
21
|
+
machineconfig/cluster/sessions_managers/zellij_local.py,sha256=jQgaWEvPmLVHt_cPTJEM5YCI7HeM71kI0X3U7BFP_jk,10064
|
|
22
|
+
machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=Rdpl9i5mN0Ywfw5VfPr7BlBl78IaBRM7WqWM6tNJGSs,17612
|
|
23
|
+
machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=siLNW7DohSMjDGmhTeNGU8xpb1XM4NFvmkzaa3NyZbc,8533
|
|
24
|
+
machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=xzih0y8_1vMH58kMQE2oFj5sdjDM8lWhe5lbz0U9hZo,8417
|
|
25
|
+
machineconfig/cluster/sessions_managers/helpers/zellij_local_helper.py,sha256=B7RXw1j31evmdYciU3CP3Jdb8A87eUeqV-JAwVQTN5E,14822
|
|
26
|
+
machineconfig/cluster/sessions_managers/helpers/zellij_local_helper_restart.py,sha256=QWmzc3REhW41FwUyyguyfpBjCvkKyN0M-srCpMVZgbw,3259
|
|
27
|
+
machineconfig/cluster/sessions_managers/helpers/zellij_local_helper_with_panes.py,sha256=xXt1-JDYra4yPe3YsPgjUyiRq4MlaLcAfOPSHYoc0Ho,9031
|
|
28
|
+
machineconfig/cluster/sessions_managers/helpers/zellij_local_manager_helper.py,sha256=5R_89zk5TYBGtwD-aq-ZW65FRQZr4S_0VnwyQknJLwg,7558
|
|
26
29
|
machineconfig/cluster/sessions_managers/utils/enhanced_command_runner.py,sha256=3vcQVg-HHa_WTxBGPtKMAdoSqJVa2EO5KAtrY8a6I3c,5264
|
|
27
30
|
machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=q9k3ofvgcZzx_oKtaymWf75JpDAs5pagwRRYzfVgu30,3176
|
|
28
31
|
machineconfig/cluster/sessions_managers/utils/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
|
|
29
|
-
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=
|
|
32
|
+
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=OA50j16uUS9ZTjL38TLuR3jufIOln_EszMZpbWyejTo,6972
|
|
30
33
|
machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256=Mitm7mKiKl5lT0OiEUHAqVg2Q21RjsKO1-hpJTHJ5lM,15196
|
|
31
34
|
machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py,sha256=lApUy67_WhfaBXqt0meZSx_QvwiXjN0YLdyE3c7kP_s,6744
|
|
32
35
|
machineconfig/cluster/sessions_managers/wt_utils/session_manager.py,sha256=-PNcYwPqwdNRnLU9QGKxRR9i6ewY02Id-tgnODB_OzQ,12552
|
|
33
36
|
machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py,sha256=t5EWNOVS-PTc2fWE8aWNBrDyqR8akLtwtRinztxOdpY,9590
|
|
34
|
-
machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=
|
|
35
|
-
machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=
|
|
37
|
+
machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=k0vLV3ZPpQKsmflN2l16aYNdGN9UWj3zi073b_O-GH8,3302
|
|
38
|
+
machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=FMpwaSeDCc71pEiVk99s8f5NkZEQ8zKQNUuaSXojgq4,4615
|
|
36
39
|
machineconfig/cluster/sessions_managers/zellij_utils/monitoring_types.py,sha256=8l8OAfWYy5xv-EaVqtXLqvPo9YaR9i8kFqGMhPzk0nw,2616
|
|
37
40
|
machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=4SwH0i9V5Qwugzcewr3uv1Y5mjLhQAXyaGiWtOOjY7E,13696
|
|
38
41
|
machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=IMaoZ4nczs5XwPTObXno6mu0x7es4yNa9cAi4u6GkEU,2601
|
|
@@ -141,9 +144,9 @@ machineconfig/scripts/python/choose_wezterm_theme.py,sha256=Hlu_EOQhLM6wYdAdY25j
|
|
|
141
144
|
machineconfig/scripts/python/cloud_copy.py,sha256=fcWbSo2nGiubtMYjGci8s5tVjZ9D-u8mteCawZmbw3I,8379
|
|
142
145
|
machineconfig/scripts/python/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
|
|
143
146
|
machineconfig/scripts/python/cloud_mount.py,sha256=GwcXbd5ohoHGESfX5edtCEl2-umDDxH_AZapmFSzc9E,6740
|
|
144
|
-
machineconfig/scripts/python/cloud_repo_sync.py,sha256=
|
|
147
|
+
machineconfig/scripts/python/cloud_repo_sync.py,sha256=8VZa95YN8_pcY8k5KRDQAXxDTAMhOjnuXsT6NNnjUzg,9664
|
|
145
148
|
machineconfig/scripts/python/cloud_sync.py,sha256=RWGpAfJ9fnN18yNBSgN44dzA38Hmd4879JL5r2pcyrM,3514
|
|
146
|
-
machineconfig/scripts/python/count_lines.py,sha256=
|
|
149
|
+
machineconfig/scripts/python/count_lines.py,sha256=ZLEajCLmlFFY969BehabqGOB9_kkpATO3Lt09L7KULk,15968
|
|
147
150
|
machineconfig/scripts/python/count_lines_frontend.py,sha256=HlzPLU9_oJYqPNbnoQ0Hm4CuYy1UUlkZPcE5tFBSEbo,545
|
|
148
151
|
machineconfig/scripts/python/croshell.py,sha256=LgmwB17EVgNgRkXgwLOZPQWrHqSYDo7Kd-d6vkqA3PY,6459
|
|
149
152
|
machineconfig/scripts/python/devops.py,sha256=VWdoSf0MxMl1e-egKn4mAm_gQ43OFDwhS8PCXZy3l3M,7341
|
|
@@ -153,7 +156,7 @@ machineconfig/scripts/python/devops_backup_retrieve.py,sha256=JLJHmi8JmZ_qVTeMW-
|
|
|
153
156
|
machineconfig/scripts/python/devops_status.py,sha256=qSmDCNopKq8DLcx3u1sLhCIZtILP2ZzdGYZuA7fvrJ8,22487
|
|
154
157
|
machineconfig/scripts/python/devops_update_repos.py,sha256=9p21ckEfqyiCoLWgNgkE1RSswb6b9YPeCf5lmBtudsQ,9393
|
|
155
158
|
machineconfig/scripts/python/dotfile.py,sha256=9W9i8Qbs6i2NfTq0knywB3StvE_sHaZYZ0RslTyoVz8,2734
|
|
156
|
-
machineconfig/scripts/python/fire_agents_help_launch.py,sha256=
|
|
159
|
+
machineconfig/scripts/python/fire_agents_help_launch.py,sha256=Lkxpdf6oCHsfyHUVoZJ0aqOU8baD7RkcKEODgVEkcsg,5053
|
|
157
160
|
machineconfig/scripts/python/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
158
161
|
machineconfig/scripts/python/fire_agents_helper_types.py,sha256=zKu8Vr6iucaGSkCm_Tkt_WrYU7-6Nript3coYyzTXzY,295
|
|
159
162
|
machineconfig/scripts/python/fire_agents_load_balancer.py,sha256=mpqx3uaQdBXYieuvhdK-qsvLepf9oIMo3pwPj9mSEDI,1079
|
|
@@ -191,11 +194,11 @@ machineconfig/scripts/python/wsl_windows_transfer.py,sha256=534zlYe3Xsr0mqegAnZr
|
|
|
191
194
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
192
195
|
machineconfig/scripts/python/ai/generate_files.py,sha256=Vfjgd0skJu-WTgqUxmOVFzaNMfSFBaFmY5oGGVY7MZY,2860
|
|
193
196
|
machineconfig/scripts/python/ai/initai.py,sha256=FJriMm1-x44xx6yEnqgI-F5lfRw44xleOluv4TcRs0I,2237
|
|
194
|
-
machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1,sha256=
|
|
195
|
-
machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=
|
|
197
|
+
machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1,sha256=usx-yFmqJhiNPHAh0KfKSsyrjh_SlGWVCvlB1OWsHrM,5175
|
|
198
|
+
machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=xYJ2sFSXc4_QGJs3mDz7zedqerlHufQgrK9JRpct5_s,4716
|
|
196
199
|
machineconfig/scripts/python/ai/solutions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
200
|
machineconfig/scripts/python/ai/solutions/_shared.py,sha256=rBniovmKZuY48T50cCyG_oeFZgSap365EXEadv9UtM4,603
|
|
198
|
-
machineconfig/scripts/python/ai/solutions/generic.py,sha256=
|
|
201
|
+
machineconfig/scripts/python/ai/solutions/generic.py,sha256=ebTXBTcnGkTCUnvRW55yTuNGeQtAmY7Gh27fwF6Yaqk,2321
|
|
199
202
|
machineconfig/scripts/python/ai/solutions/claude/claude.py,sha256=tVMdaOL_9jC1nvfPsJs9WRkPPNa2tQVyq4vxdpOPK6k,343
|
|
200
203
|
machineconfig/scripts/python/ai/solutions/cline/cline.py,sha256=3nYdEmdk76sYerEvImEDi3Qi-n94ExFkg20HttI7iCc,446
|
|
201
204
|
machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py,sha256=spuPpENX_lZIBiANQq9eTxefoPBE2Ao_LEY16ZCaUQY,1890
|
|
@@ -203,8 +206,8 @@ machineconfig/scripts/python/ai/solutions/copilot/privacy.md,sha256=QeEU3P1tVBeG
|
|
|
203
206
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
|
|
204
207
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
|
|
205
208
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
|
|
206
|
-
machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=
|
|
207
|
-
machineconfig/scripts/python/ai/solutions/copilot/prompts/
|
|
209
|
+
machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=heoUNQ55Uwbs0rO-gAuydkdc9Fld9Ip8zxAl7d7f_jA,4488
|
|
210
|
+
machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md,sha256=a3tMb-t0jmC02OAQZSRBEuiccB-osBvgAIOSBXqC5JQ,544
|
|
208
211
|
machineconfig/scripts/python/ai/solutions/copilot/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
|
|
209
212
|
machineconfig/scripts/python/ai/solutions/crush/crush.json,sha256=2hhWLBtAroKO0dboksWIIV6s5XISDgzSMkPg8L9hSK4,5652
|
|
210
213
|
machineconfig/scripts/python/ai/solutions/crush/crush.py,sha256=-Oxny7iaAPrR_vjRSzPXf1rPfx5lmKETaLrrqFApoGE,829
|
|
@@ -220,7 +223,7 @@ machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=GA-bxXouUmknk9fyQAs
|
|
|
220
223
|
machineconfig/scripts/python/helpers/helpers2.py,sha256=2QeQ2aii6hVc4S-oi3SVTSyPxKPTDUWBD7GnkCEr7Qs,7304
|
|
221
224
|
machineconfig/scripts/python/helpers/helpers4.py,sha256=iKR5vVJygaDIpFXhcdma9jOpyxKtUhmqcmalFxJmY0w,4749
|
|
222
225
|
machineconfig/scripts/python/helpers/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
|
|
223
|
-
machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=
|
|
226
|
+
machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=im-VaWde7zdQlxUVxLE2KqBG_y8kyoDXc85kl9CvNOA,3427
|
|
224
227
|
machineconfig/scripts/windows/agents.ps1,sha256=DqdrC_Xc2rwQ6kGzT0xh5CJz4B_0p5ZwB7s8XE6rPCM,77
|
|
225
228
|
machineconfig/scripts/windows/choose_wezterm_theme.ps1,sha256=LiXJ0a4LKjb6E-oH_bAg6DjegV4SqDUdiMp_svGCFlI,95
|
|
226
229
|
machineconfig/scripts/windows/cloud_copy.ps1,sha256=llTFhN2uInZTcoZYZuuhJcf5Ifo5MF226I5MpOzvc3A,82
|
|
@@ -249,7 +252,7 @@ machineconfig/scripts/windows/scheduler.ps1,sha256=YfOlBxCkPfeQPeyCiNw0g3kIpdbjj
|
|
|
249
252
|
machineconfig/scripts/windows/sessions.ps1,sha256=cQdgSS3rVWvhthsUi5lyFI05_GKiRGI-j4FB1SZNKpM,80
|
|
250
253
|
machineconfig/scripts/windows/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
251
254
|
machineconfig/scripts/windows/share_nfs.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
|
-
machineconfig/scripts/windows/share_smb.ps1,sha256=
|
|
255
|
+
machineconfig/scripts/windows/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
253
256
|
machineconfig/scripts/windows/snapshot.ps1,sha256=dSHwz8LRTe446lU9BkjiugBMWRS384L_-_qmpPr11v4,80
|
|
254
257
|
machineconfig/scripts/windows/start_slidev.ps1,sha256=jow4mcguhuCFiUaOkHYUpq9EFKkgs5fp8G2rVMyVcR4,83
|
|
255
258
|
machineconfig/scripts/windows/start_terminals.ps1,sha256=qoQNkv8waF2ZvfIIuUt8ZXdr2v2It2MPuzQj2ZQ5ToI,87
|
|
@@ -397,7 +400,7 @@ machineconfig/utils/path_helper.py,sha256=0e3Xh3BAEv27oqcezNeVLHJllGmLEgLH4T1l90
|
|
|
397
400
|
machineconfig/utils/procs.py,sha256=w75oGKfR7FpT1pGTGd2XscnEOO0IHBWxohLbi69hLqg,11418
|
|
398
401
|
machineconfig/utils/scheduler.py,sha256=GbprwuxoJYdtkCsg7JZPXM8un9Z7v9tPjUoQjtS0oHU,14955
|
|
399
402
|
machineconfig/utils/scheduling.py,sha256=RF1iXJpqf4Dg18jdZWtBixz97KAHC6VKYqTFSpdLWuc,11188
|
|
400
|
-
machineconfig/utils/source_of_truth.py,sha256=
|
|
403
|
+
machineconfig/utils/source_of_truth.py,sha256=G3incuMzxOY1HjhNKIFnIRk-r7QGyZ6xYj0JLhCCh0A,842
|
|
401
404
|
machineconfig/utils/ssh.py,sha256=wIoIdeeTYCLvfdtFojUrKTlMRKUdf-eMqYae6g915w0,20666
|
|
402
405
|
machineconfig/utils/terminal.py,sha256=IlmOByfQG-vjhaFFxxzU5rWzP5_qUzmalRfuey3PAmc,11801
|
|
403
406
|
machineconfig/utils/upgrade_packages.py,sha256=H96zVJEWXJW07nh5vhjuSCrPtXGqoUb7xeJsFYYdmCI,3330
|
|
@@ -419,8 +422,8 @@ machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=pTxvLzIpD5RF
|
|
|
419
422
|
machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
|
|
420
423
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
421
424
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
422
|
-
machineconfig-5.
|
|
423
|
-
machineconfig-5.
|
|
424
|
-
machineconfig-5.
|
|
425
|
-
machineconfig-5.
|
|
426
|
-
machineconfig-5.
|
|
425
|
+
machineconfig-5.23.dist-info/METADATA,sha256=05e1sWze1Djv22HNMTjw8P3eWy-HdIXBBFgfp2NHM04,8030
|
|
426
|
+
machineconfig-5.23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
427
|
+
machineconfig-5.23.dist-info/entry_points.txt,sha256=2afE1mw-o4MUlfxyX73SV02XaQI4SV_LdL2r6_CzhPU,1074
|
|
428
|
+
machineconfig-5.23.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
429
|
+
machineconfig-5.23.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|