Auto Conda Env

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This skill appears to do what it advertises—set up Conda environments—but it can install project dependencies and should only be used on projects you trust.

Before installing, confirm the target project path and Conda executable, review dependency files for untrusted packages or scripts, and avoid `--break-system-packages` unless you are certain pip is running inside the intended Conda environment.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A malicious or untrusted project dependency file could cause code to run during installation, even though the commands are intended for environment setup.

Why it was flagged

These commands install the local project and its dependencies. That is central to the skill, but Python package installation can run build/install code and download packages under the user's account.

Skill content
`CONDA run -n <env> pip install .` ... `CONDA run -n <env> pip install -r requirements.txt`
Recommendation

Use this skill only with trusted projects, review requirements/environment/pyproject files first, and keep installs inside the intended Conda environment.

What this means

If used outside the Conda environment, this could alter system-managed Python packages and make the local Python installation less stable.

Why it was flagged

This flag bypasses a pip safeguard. In the documented workflow it appears intended as a retry inside the target Conda environment, but it would be risky if applied to the system Python installation.

Skill content
Try `--break-system-packages` when pip is blocked by OS package protection
Recommendation

Only use `--break-system-packages` after confirming the command is running inside the target Conda environment; avoid using it with system Python.

What this means

Using an unexpected local Conda binary could install packages into the wrong environment or use unintended package configuration.

Why it was flagged

The skill will use a locally discovered Conda executable. This is expected for the purpose, but users should verify the selected executable is their intended Conda installation.

Skill content
Try these paths if conda is not in PATH: `which conda`, `~/.local/bin/conda`, `~/miniconda3/bin/conda`, `~/anaconda3/bin/conda`
Recommendation

Confirm which Conda executable is selected before creating or updating environments.