gitarsenal-cli 1.9.100 → 1.9.102
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-09-14T10:
|
|
1
|
+
{"created":"2025-09-14T10:53:02.337Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -19,7 +19,6 @@ def install_dependencies_in_sandbox(sandbox):
|
|
|
19
19
|
"""
|
|
20
20
|
Install required packages in the sandbox
|
|
21
21
|
"""
|
|
22
|
-
print("📦 Installing required packages in sandbox...")
|
|
23
22
|
|
|
24
23
|
# Install Python packages
|
|
25
24
|
packages = [
|
|
@@ -154,7 +153,6 @@ with open('/home/user/kill_claude/requirements.txt', 'w') as f:
|
|
|
154
153
|
with open('/home/user/kill_claude/prompts/{prompt_file}', 'w') as f:
|
|
155
154
|
f.write({repr(prompt_content)})
|
|
156
155
|
""")
|
|
157
|
-
print(f"Preparing Agents...")
|
|
158
156
|
|
|
159
157
|
# Upload tools
|
|
160
158
|
tools_dir = os.path.join(kill_claude_dir, "tools")
|
|
@@ -168,7 +166,6 @@ with open('/home/user/kill_claude/prompts/{prompt_file}', 'w') as f:
|
|
|
168
166
|
with open('/home/user/kill_claude/tools/{tool_file}', 'w') as f:
|
|
169
167
|
f.write({repr(tool_content)})
|
|
170
168
|
""")
|
|
171
|
-
print(f"Preparing Tools...")
|
|
172
169
|
|
|
173
170
|
# Create __init__.py in tools directory
|
|
174
171
|
sandbox.run_code("""
|
|
@@ -484,7 +481,6 @@ def run_e2b_sandbox(repo_url, setup_commands=None, api_keys=None):
|
|
|
484
481
|
try:
|
|
485
482
|
# Fetch the E2B API key directly from the server
|
|
486
483
|
try:
|
|
487
|
-
print("🔄 Fetching E2B API key directly from server...")
|
|
488
484
|
from fetch_modal_tokens import fetch_default_tokens_from_gitarsenal
|
|
489
485
|
token_id, token_secret, e2b_api_key, openai_api_key, anthropic_api_key, openrouter_api_key, groq_api_key = fetch_default_tokens_from_gitarsenal()
|
|
490
486
|
|
|
@@ -27,12 +27,8 @@ def fetch_default_tokens_from_gitarsenal():
|
|
|
27
27
|
'Accept': 'application/json'
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
print(f"🔗 Fetching default tokens from: {endpoint}")
|
|
31
|
-
|
|
32
30
|
response = requests.get(endpoint, headers=headers, timeout=30)
|
|
33
31
|
|
|
34
|
-
print(f"📊 Status: {response.status_code}")
|
|
35
|
-
|
|
36
32
|
if response.status_code == 200:
|
|
37
33
|
try:
|
|
38
34
|
data = response.json()
|