gitarsenal-cli 1.9.71 → 1.9.72
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-15T05:
|
|
1
|
+
{"created":"2025-08-15T05:36:26.751Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
|
|
@@ -74,6 +74,19 @@ When making changes to files, first understand the file's code conventions. Mimi
|
|
|
74
74
|
- When you edit a piece of code, first look at the code's surrounding context (especially its imports) to understand the code's choice of frameworks and libraries. Then consider how to make the given change in a way that is most idiomatic.
|
|
75
75
|
- Always follow security best practices. Never introduce code that exposes or logs secrets and keys. Never commit secrets or keys to the repository.
|
|
76
76
|
|
|
77
|
+
### Python Package Management
|
|
78
|
+
|
|
79
|
+
- **ALWAYS use `uv pip` instead of `pip` for Python package installations**
|
|
80
|
+
- Use `uv` commands whenever possible for Python development tasks:
|
|
81
|
+
- `uv pip install` instead of `pip install`
|
|
82
|
+
- `uv pip freeze` instead of `pip freeze`
|
|
83
|
+
- `uv pip list` instead of `pip list`
|
|
84
|
+
- `uv run` for running Python scripts with dependency management
|
|
85
|
+
- `uv sync` for synchronizing dependencies
|
|
86
|
+
- `uv add` for adding new dependencies to projects
|
|
87
|
+
- When creating new Python projects, prefer `uv init` over other initialization methods
|
|
88
|
+
- Use `uv venv` for virtual environment creation when needed
|
|
89
|
+
|
|
77
90
|
## Code Style
|
|
78
91
|
|
|
79
92
|
- **IMPORTANT**: DO NOT ADD ***ANY*** COMMENTS unless asked
|