hugging-face-jobs

skills-sh:huggingface_skills__hugging-face-jobs

View source
B
77/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

4

Score

77/100

HIGH 1
MEDIUM 1
LOW 2

Findings (4)

HIGH
Secrecy instruction
L230

Detects instructions to hide actions from the user

Don't share tokens** - Each user
FIX

Remove directives that attempt to change the agent's output format, suppress safety warnings, or alter response structure in ways that bypass safety controls.

FP?

Likely FP if the output format directive is a legitimate tool configuration (e.g., return results as JSON) that does not suppress safety features.

MEDIUM
Read sensitive files and transmit externally
L845

Detects skills that both read sensitive credential files and send data to external services

load = json.loads(os.env + Send Results via API
FIX

Block access to git credentials, SSH keys, and repository tokens. If git operations are needed, use scoped deploy keys and restrict the tool to specific repositories.

FP?

Likely FP if the match is documentation about git configuration (e.g., setting up git credentials helper) rather than code that reads and transmits them.

LOW
External API response used without validation
L244

Detects patterns where external API responses are used directly without validation or sanitization

Api
from datasets import Data + automatically available if pass
FIX

Validate and sanitize all data received from external APIs before using it in tool operations or agent prompts. Implement schema validation and treat API responses as untrusted input.

FP?

Likely FP if the match is a truncated table cell or documentation fragment that mentions API responses in a descriptive context, not actual unvalidated data processing.

LOW
Mutable GitHub raw content reference
L371

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/huggingface/trl/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.