crewai-multi-agent

skills-sh:davila7_claude-code-templates__crewai-multi-agent

View source
B
77/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

3

Score

77/100

HIGH 1
MEDIUM 1
LOW 1

Findings (3)

HIGH
Autonomous agent spawning
L210

Detects autonomous sub-agent or cron-based execution without human oversight

Autonomous worker + autonomous
FIX

Remove directives that force the agent to call specific tools or APIs not required for the skill's stated functionality. Tool calls should be determined by user intent, not embedded directives.

FP?

Likely FP if the skill legitimately needs to call other tools as part of its workflow (e.g., a deployment skill that calls git and cloud CLI tools).

MEDIUM
Dynamic code evaluation
L587

Detects eval() or exec() used for dynamic code execution

eval
(
e
FIX

Replace eval()/exec() with a safer alternative such as json.loads(), ast.literal_eval(), or a purpose-built parser.

FP?

Likely FP if the matched text contains 'exec' as part of a word (e.g., 'execute', 'execution') rather than an actual eval() or exec() call.

LOW
pip install arbitrary package
L47

Detects pip install of arbitrary packages that modify the host environment

pip
install
cr
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.