python — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited python (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Python package management.
| Tool | Use |
|---|---|
| pip | Default package manager |
| uv | Fast package manager |
| poetry | Project management |
| pipenv | Pip + virtualenv |
pip install requests
pip install -r requirements.txt
pip freeze > requirements.txtuv add requests
uv venv
uv sync
uv run python main.pypoetry add requests
poetry install
poetry run python main.py
poetry build# venv
python -m venv .venv
source .venv/bin/activate
# conda
conda create -n myenv python=3.11
conda activate myenv## Python
| Package | Version | Tool |
|---------|---------|------|
| [name] | [version] | [pip/uv/poetry] |
### Environment
- [tool]Role: Python Developer Input: requirements.txt / pyproject.toml Output: Dependencies
Python packages.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.