gitarsenal-cli 1.9.9 → 1.9.11
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 +1 -1
- package/bin/gitarsenal.js +8 -17
- package/eval_repos.py +1 -0
- package/package.json +1 -1
- package/repos.json +80 -0
package/.venv_status.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"created":"2025-08-
|
|
1
|
+
{"created":"2025-08-04T14:50:01.089Z","packages":["modal","gitingest","requests"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
|
package/bin/gitarsenal.js
CHANGED
|
@@ -287,22 +287,7 @@ program
|
|
|
287
287
|
.version(version)
|
|
288
288
|
.description('GitArsenal CLI - Create GPU-accelerated development environments');
|
|
289
289
|
|
|
290
|
-
|
|
291
|
-
const containerCmd = program
|
|
292
|
-
.command('container')
|
|
293
|
-
.description('Create a container with a GitHub repository')
|
|
294
|
-
.option('-g, --gpu <type>', 'GPU type (A10G, A100, H100, T4, L4, L40S, V100)')
|
|
295
|
-
.option('-r, --repo-url <url>', 'GitHub repository URL')
|
|
296
|
-
.option('-v, --volume-name <n>', 'Name of persistent volume')
|
|
297
|
-
.option('-s, --setup-commands <commands...>', 'Setup commands to run in the container')
|
|
298
|
-
.option('-y, --yes', 'Skip confirmation prompts')
|
|
299
|
-
.option('-m, --manual', 'Disable automatic setup command detection')
|
|
300
|
-
.option('--show-examples', 'Show usage examples')
|
|
301
|
-
.option('--user-id <id>', 'User ID for tracking')
|
|
302
|
-
.option('--user-name <name>', 'User name for tracking')
|
|
303
|
-
.action(async (options) => {
|
|
304
|
-
await runContainerCommand(options);
|
|
305
|
-
});
|
|
290
|
+
|
|
306
291
|
|
|
307
292
|
// Keys management command
|
|
308
293
|
const keysCmd = program
|
|
@@ -434,7 +419,7 @@ async function runContainerCommand(options) {
|
|
|
434
419
|
}
|
|
435
420
|
|
|
436
421
|
// Prompt for persistent volume
|
|
437
|
-
if (!volumeName) {
|
|
422
|
+
if (!volumeName && !skipConfirmation) {
|
|
438
423
|
const volumeAnswers = await inquirer.prompt([
|
|
439
424
|
{
|
|
440
425
|
type: 'confirm',
|
|
@@ -454,6 +439,9 @@ async function runContainerCommand(options) {
|
|
|
454
439
|
if (volumeAnswers.useVolume) {
|
|
455
440
|
volumeName = volumeAnswers.volumeName;
|
|
456
441
|
}
|
|
442
|
+
} else if (!volumeName && skipConfirmation) {
|
|
443
|
+
// If --yes flag is used and no volume specified, use default
|
|
444
|
+
volumeName = 'gitarsenal-volume';
|
|
457
445
|
}
|
|
458
446
|
|
|
459
447
|
// Ask about setup command detection if not specified via CLI
|
|
@@ -468,6 +456,9 @@ async function runContainerCommand(options) {
|
|
|
468
456
|
]);
|
|
469
457
|
|
|
470
458
|
useApi = apiAnswers.useApi;
|
|
459
|
+
} else if (options.yes) {
|
|
460
|
+
// If --yes flag is used, default to using API for setup command detection
|
|
461
|
+
useApi = true;
|
|
471
462
|
}
|
|
472
463
|
|
|
473
464
|
// Only prompt for custom commands if auto-detection is disabled and no commands provided
|
package/eval_repos.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/package.json
CHANGED
package/repos.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"repositories": [
|
|
3
|
+
{
|
|
4
|
+
"name": "FlashAvatar",
|
|
5
|
+
"url": "https://github.com/FlashAvatar/FlashAvatar",
|
|
6
|
+
"gpu": "A10G",
|
|
7
|
+
"volume": "flashavatar-volume",
|
|
8
|
+
"description": "Avatar generation repository"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "DECA",
|
|
12
|
+
"url": "https://github.com/YadiraF/DECA",
|
|
13
|
+
"gpu": "A100-40",
|
|
14
|
+
"volume": "deca-volume",
|
|
15
|
+
"description": "Detailed Expression Capture and Animation"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "DisenBooth",
|
|
19
|
+
"url": "https://github.com/Fictionarry/DisenBooth",
|
|
20
|
+
"gpu": "A10G",
|
|
21
|
+
"volume": "disenbooth-volume",
|
|
22
|
+
"description": "Disentangled subject-driven generation"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "FederatedGPT-Shepherd",
|
|
26
|
+
"url": "https://github.com/FederatedGPT/FederatedGPT-Shepherd",
|
|
27
|
+
"gpu": "A100-40",
|
|
28
|
+
"volume": "federatedgpt-volume",
|
|
29
|
+
"description": "Federated GPT training framework"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "FLAME_PyTorch",
|
|
33
|
+
"url": "https://github.com/HavenFeng/FLAME_PyTorch",
|
|
34
|
+
"gpu": "A10G",
|
|
35
|
+
"volume": "flame-pytorch-volume",
|
|
36
|
+
"description": "FLAME face model in PyTorch"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "flame-head-tracker",
|
|
40
|
+
"url": "https://github.com/CMU-Perceptual-Computing-Lab/flame-head-tracker",
|
|
41
|
+
"gpu": "A10G",
|
|
42
|
+
"volume": "flame-tracker-volume",
|
|
43
|
+
"description": "Head tracking using FLAME model"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "litex",
|
|
47
|
+
"url": "https://github.com/enjoy-digital/litex",
|
|
48
|
+
"gpu": "T4",
|
|
49
|
+
"volume": "litex-volume",
|
|
50
|
+
"description": "FPGA framework and SoC builder"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "MICA",
|
|
54
|
+
"url": "https://github.com/Zielon/MICA",
|
|
55
|
+
"gpu": "A100-40",
|
|
56
|
+
"volume": "mica-volume",
|
|
57
|
+
"description": "3D face reconstruction"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "photometric_optimization",
|
|
61
|
+
"url": "https://github.com/facebookresearch/photometric_optimization",
|
|
62
|
+
"gpu": "A10G",
|
|
63
|
+
"volume": "photometric-volume",
|
|
64
|
+
"description": "Photometric optimization for 3D reconstruction"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "reflex",
|
|
68
|
+
"url": "https://github.com/reflex-dev/reflex",
|
|
69
|
+
"gpu": "A10G",
|
|
70
|
+
"volume": "reflex-volume",
|
|
71
|
+
"description": "Web framework for Python"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"metadata": {
|
|
75
|
+
"description": "Repository list for GitArsenal evaluation",
|
|
76
|
+
"created": "2025-08-04",
|
|
77
|
+
"version": "1.0",
|
|
78
|
+
"total_repos": 10
|
|
79
|
+
}
|
|
80
|
+
}
|