gitarsenal-cli 1.9.91 → 1.9.92
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.
package/.venv_status.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"created":"2025-08-
|
|
1
|
+
{"created":"2025-08-21T12:39:31.880Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
|
package/bin/gitarsenal.js
CHANGED
|
@@ -1089,7 +1089,7 @@ keysCmd
|
|
|
1089
1089
|
program
|
|
1090
1090
|
.option('-r, --repo <url>', 'GitHub repository URL')
|
|
1091
1091
|
.option('-g, --gpu <type>', 'GPU type (A10G, A100, H100, T4, L4, L40S, V100)')
|
|
1092
|
-
.option('-c, --gpu-count <number>', 'Number of GPUs to use (1-8)'
|
|
1092
|
+
.option('-c, --gpu-count <number>', 'Number of GPUs to use (1-8)')
|
|
1093
1093
|
.option('-v, --volume <n>', 'Name of persistent volume')
|
|
1094
1094
|
.option('-y, --yes', 'Skip confirmation prompts')
|
|
1095
1095
|
.option('-m, --manual', 'Disable automatic setup command detection')
|
|
@@ -598,7 +598,7 @@ The following {len(TOOL_SCHEMAS)} tools are loaded and available:
|
|
|
598
598
|
tool_input.get("ignore", []))
|
|
599
599
|
elif tool_name == "Bash":
|
|
600
600
|
return self._execute_command(tool_input.get("command", ""),
|
|
601
|
-
tool_input.get("timeout",
|
|
601
|
+
tool_input.get("timeout", 60000))
|
|
602
602
|
elif tool_name == "TodoWrite":
|
|
603
603
|
return self._update_todos(tool_input.get("todos", []))
|
|
604
604
|
elif tool_name == "Write":
|
|
@@ -714,7 +714,7 @@ The following {len(TOOL_SCHEMAS)} tools are loaded and available:
|
|
|
714
714
|
except Exception as e:
|
|
715
715
|
return f"Error listing directory: {str(e)}"
|
|
716
716
|
|
|
717
|
-
def _execute_command(self, command: str, timeout_ms: int =
|
|
717
|
+
def _execute_command(self, command: str, timeout_ms: int = 60000) -> str:
|
|
718
718
|
"""Execute bash command."""
|
|
719
719
|
import subprocess
|
|
720
720
|
try:
|
|
@@ -23,6 +23,7 @@ Before executing the command, please follow these steps:
|
|
|
23
23
|
Usage notes:
|
|
24
24
|
- The command argument is required.
|
|
25
25
|
- You can specify an optional timeout in milliseconds (up to 600000ms / 10 minutes). If not specified, commands will timeout after 120000ms (2 minutes).
|
|
26
|
+
- IMPORTANT: Always use longer timeouts (600000ms/10 minutes) for package installation commands like `uv pip install`, `npm install`, `pip install`, `cargo install`, `go install`, etc. as these commands typically take longer to download and install packages.
|
|
26
27
|
- It is very helpful if you write a clear, concise description of what this command does in 5-10 words.
|
|
27
28
|
- If the output exceeds 30000 characters, output will be truncated before being returned to you.
|
|
28
29
|
- You can use the `run_in_background` parameter to run the command in the background, which allows you to continue working while the command runs. You can monitor the output using the Bash tool as it becomes available. Never use `run_in_background` to run 'sleep' as it will return immediately. You do not need to use '&' at the end of the command when using this parameter.
|