openclaw-memvid-logger

clawhub:openclaw-memvid-logger

View source
B
85/100

First Seen

Feb 20, 2026

Last Scanned

Feb 22, 2026

Findings

4

Score

85/100

HIGH 1
LOW 3

Findings (4)

HIGH
Role switching attempt
L117

Detects attempts to make the AI assume a different role

Switch to Sharding mode
FIX

Remove directives that attempt to alter the agent's behavior or persona. Skill descriptions should describe tool functionality, not contain behavioral commands for the agent.

FP?

Likely FP if the matched text is part of the skill's legitimate system prompt configuration that defines the tool's behavior for the user, not an attack.

LOW
Global package installation
L78

Detects global installation of packages which affects the host system

npm install -g m
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
Global package installation
L103

Detects global installation of packages which affects the host system

npm install -g m
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
Global package installation
L128

Detects global installation of packages which affects the host system

npm install -g m
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.