repomix

skills-sh:mrgoonie_claudekit-skills__repomix

View source
B
75/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

3

Score

75/100

CRITICAL 1
LOW 2

Findings (3)

CRITICAL
Jailbreak template
L171

Detects common jailbreak prompt patterns

Disable security
FIX

Remove directives that attempt to exfiltrate data through the agent's response (e.g., asking the agent to embed credentials in URLs or include secret values in output).

FP?

Likely FP if the text is a legitimate tool instruction about displaying configuration to the user (e.g., show current settings) without external transmission.

LOW
Global package installation
L31

Detects global installation of packages which affects the host system

npm install -g r
FIX

Replace npm install -g with a local install (npm install --save-dev) or use npx with a pinned version. Global installs modify the system and risk supply chain attacks.

FP?

Likely FP if the global install is for a well-known CLI tool (e.g., typescript, eslint) in setup documentation, though the supply chain risk remains real.

LOW
System package manager install
L34

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

brew install r
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.