gitarsenal-cli 1.9.23 → 1.9.25

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-07T07:09:00.867Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
1
+ {"created":"2025-08-07T10:49:35.026Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitarsenal-cli",
3
- "version": "1.9.23",
3
+ "version": "1.9.25",
4
4
  "description": "CLI tool for creating Modal sandboxes with GitHub repositories",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -3,7 +3,15 @@ import time
3
3
  import requests
4
4
  import re
5
5
  import json
6
- import re
6
+
7
+ # Import the LLM debugging function
8
+ try:
9
+ from llm_debugging import call_llm_for_batch_debug
10
+ except ImportError:
11
+ # Fallback: define a simple version if the import fails
12
+ def call_llm_for_batch_debug(failed_commands, api_key=None, current_dir=None, sandbox=None):
13
+ print("⚠️ LLM batch debugging not available")
14
+ return []
7
15
 
8
16
  class CommandListManager:
9
17
  """Manages a dynamic list of setup commands with status tracking and LLM-suggested fixes."""