vibe

skills-sh:boshu2_agentops__vibe

View source
A
100/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

6

Score

100/100

LOW 6

Findings (6)

LOW
pip install arbitrary package
L72

Detects pip install of arbitrary packages that modify the host environment

pip install ra
FIX

Pin all pip packages to exact versions (e.g., pip install package==1.2.3). Use a requirements.txt or pyproject.toml with pinned versions and hash verification.

FP?

Likely FP if the match is in documentation showing how to install the skill's own PyPI package.

LOW
go install from remote
L87

Detects go install fetching and compiling arbitrary Go packages

go install github.com/fzipp/gocyclo/cmd/gocyclo@
FIX

Pin Go install targets to a specific version (e.g., go install example.com/tool@v1.2.3). Avoid @latest as it fetches whatever is currently published.

FP?

Likely FP if the go install target is a well-known tool (e.g., golang.org/x/ packages) pinned to a specific version in documentation.

LOW
Shell script file execution
L150

Detects execution of shell script files via bash/sh command or direct invocation

sh
skills/vibe/scripts/ol-validate.sh
FIX

Replace direct shell script execution with a language-native implementation or a sandboxed executor. If shell scripts must run, restrict them to a vetted allowlist with integrity checks.

FP?

Likely FP if the match references running a script that is part of the skill's own repository (e.g., ./setup.sh) with clear, auditable contents.

LOW
pip install arbitrary package
L507

Detects pip install of arbitrary packages that modify the host environment

pip install ra
FIX

Pin all pip packages to exact versions (e.g., pip install package==1.2.3). Use a requirements.txt or pyproject.toml with pinned versions and hash verification.

FP?

Likely FP if the match is in documentation showing how to install the skill's own PyPI package.

LOW
go install from remote
L508

Detects go install fetching and compiling arbitrary Go packages

go install github.com/fzipp/gocyclo/cmd/gocyclo@
FIX

Pin Go install targets to a specific version (e.g., go install example.com/tool@v1.2.3). Avoid @latest as it fetches whatever is currently published.

FP?

Likely FP if the go install target is a well-known tool (e.g., golang.org/x/ packages) pinned to a specific version in documentation.

LOW
System package manager install
L510

Detects system-level package installation via brew, apt, yum, or dnf

brew install c
FIX

Pin system packages to specific versions where the package manager supports it. Document the exact packages required and prefer containerized environments to avoid system-wide changes.

FP?

Likely FP if the match is standard setup documentation listing well-known system packages (e.g., apt install git curl) that are prerequisites.