deployment-patterns

skills-sh:affaan-m_everything-claude-code__deployment-patterns

View source
A
92/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

2

Score

92/100

MEDIUM 1
LOW 1

Findings (2)

MEDIUM
Conditional CI execution
L230

Detects conditional execution based on CI environment variables combined with dangerous commands

${{ secrets.GITHUB_TOKEN + python -c
FIX

Pin all dependencies to exact versions with integrity hashes. Use lock files (package-lock.json, poetry.lock) and enable checksum verification in your package manager.

FP?

Likely FP if the match is documentation about dependency management best practices rather than actual unpinned dependency declarations.

LOW
Runtime URL controlling behavior
L114

Detects URLs fetched at runtime that control or influence agent behavior without pinning

get --no-verbose --tries=1 --spider http:// + Setting
FIX

Avoid loading configuration or behavior-controlling content from runtime URLs. Bundle required configurations locally or pin remote config to versioned, integrity-verified endpoints.

FP?

Likely FP if the URL in the match is a documentation link or example URL (e.g., example.com) rather than an actual runtime-fetched configuration endpoint.