gitarsenal-cli 1.9.89 → 1.9.90
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-21T10:21:15.428Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
|
|
@@ -58,6 +58,16 @@ Usage notes:
|
|
|
58
58
|
- If you _still_ need to run `grep`, STOP. ALWAYS USE ripgrep at `rg` first, which all Claude Code users have pre-installed.
|
|
59
59
|
- IMPORTANT: Always use `uv pip` instead of just `pip` when running pip commands. For example, use `uv pip install package_name` instead of `pip install package_name`.
|
|
60
60
|
- Create and activate a virtual environment using `uv venv` before running any Python package installations or commands using uv.
|
|
61
|
+
- **Python Version Management**: When encountering Python version compatibility issues or errors, use `pixi` to install the required Python version and create a new environment:
|
|
62
|
+
- Install required Python version: `pixi init myproject && cd myproject && pixi add python=3.x`
|
|
63
|
+
- Activate the environment: `pixi shell`
|
|
64
|
+
- This resolves version conflicts and ensures clean Python environment setup
|
|
65
|
+
- **JavaScript/Node.js Package Management**: Always prefer `bun` over `npm` for all JavaScript/Node.js operations for faster performance:
|
|
66
|
+
- Use `bun install` instead of `npm install`
|
|
67
|
+
- Use `bun add <package>` instead of `npm install <package>`
|
|
68
|
+
- Use `bun run <script>` instead of `npm run <script>`
|
|
69
|
+
- Use `bun create <template>` instead of `npx create-*` commands
|
|
70
|
+
- Only fall back to npm if bun is not available or encounters compatibility issues
|
|
61
71
|
- Add "--privileged" flag to Docker run command to resolve overlayfs and iptables permission issues during container initialization.
|
|
62
72
|
- For repository setup workflows: Print all commands needed for clone/setup/run process at start, then execute them sequentially. Print completion count (e.g., "Executed 5/7 commands"). Assume Linux OS for all commands.
|
|
63
73
|
- TESTING MODE: For ML training and inference commands, always use minimal/quick parameters to enable fast testing:
|
package/package.json
CHANGED
|
@@ -672,7 +672,15 @@ def create_modal_ssh_container(gpu_type, repo_url=None, repo_name=None, setup_co
|
|
|
672
672
|
"ssh-keygen -A",
|
|
673
673
|
"sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config",
|
|
674
674
|
"sed -i 's/#PasswordAuthentication yes/PasswordAuthentication yes/' /etc/ssh/sshd_config",
|
|
675
|
-
"echo 'export PATH=/usr/local/cuda/bin:$PATH' >> /root/.bashrc"
|
|
675
|
+
"echo 'export PATH=/usr/local/cuda/bin:$PATH' >> /root/.bashrc",
|
|
676
|
+
|
|
677
|
+
# Install Bun (JavaScript runtime and package manager)
|
|
678
|
+
"curl -fsSL https://bun.com/install | bash",
|
|
679
|
+
"echo 'export PATH=/root/.bun/bin:$PATH' >> /root/.bashrc",
|
|
680
|
+
|
|
681
|
+
# Install Pixi (modern package management tool)
|
|
682
|
+
"curl -fsSL https://pixi.sh/install.sh | sh",
|
|
683
|
+
"echo 'export PATH=/root/.pixi/bin:$PATH' >> /root/.bashrc",
|
|
676
684
|
|
|
677
685
|
# Create base directories (subdirectories will be created automatically when mounting)
|
|
678
686
|
"mkdir -p /python",
|