gitarsenal-cli 1.9.20 โ†’ 1.9.21

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-06T11:31:44.083Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
1
+ {"created":"2025-08-06T11:52:55.135Z","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.20",
3
+ "version": "1.9.21",
4
4
  "description": "CLI tool for creating Modal sandboxes with GitHub repositories",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -2411,7 +2411,7 @@ def switch_to_openai_models():
2411
2411
 
2412
2412
  def get_current_debug_model():
2413
2413
  """Get the currently configured debugging model preference"""
2414
- return os.environ.get("GITARSENAL_DEBUG_MODEL", "openai")
2414
+ return os.environ.get("GITARSENAL_DEBUG_MODEL", "anthropic")
2415
2415
 
2416
2416
  def call_llm_for_debug(command, error_output, api_key=None, current_dir=None, sandbox=None):
2417
2417
  """Unified function to call LLM for debugging - routes to OpenAI or Anthropic based on configuration"""
@@ -2411,7 +2411,7 @@ def switch_to_openai_models():
2411
2411
 
2412
2412
  def get_current_debug_model():
2413
2413
  """Get the currently configured debugging model preference"""
2414
- return os.environ.get("GITARSENAL_DEBUG_MODEL", "openai")
2414
+ return os.environ.get("GITARSENAL_DEBUG_MODEL", "anthropic")
2415
2415
 
2416
2416
  def call_llm_for_debug(command, error_output, api_key=None, current_dir=None, sandbox=None):
2417
2417
  """Unified function to call LLM for debugging - routes to OpenAI or Anthropic based on configuration"""
package/test.js DELETED
@@ -1,27 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- // Simple test script to verify the package works
4
-
5
- const { checkDependencies } = require('./lib/dependencies');
6
- const chalk = require('chalk');
7
-
8
- async function test() {
9
- console.log(chalk.blue('๐Ÿงช Testing GitArsenal CLI...'));
10
-
11
- // Check dependencies
12
- console.log(chalk.yellow('Checking dependencies...'));
13
- const dependenciesOk = await checkDependencies();
14
-
15
- if (dependenciesOk) {
16
- console.log(chalk.green('โœ… All dependencies are installed!'));
17
- console.log(chalk.green('โœ… GitArsenal CLI is ready to use.'));
18
- console.log(chalk.blue('Run "gitarsenal" to start using the CLI.'));
19
- } else {
20
- console.log(chalk.red('โŒ Some dependencies are missing. Please install them before using GitArsenal CLI.'));
21
- }
22
- }
23
-
24
- test().catch(error => {
25
- console.error(chalk.red(`โŒ Test failed: ${error.message}`));
26
- process.exit(1);
27
- });